您好,登錄后才能下訂單哦!
小編給大家分享一下Android如何實現自定義Dialog的大小,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
具體如下:
Android應用開發中,無論是出于功能還是增加用戶體驗,彈出對話框(Dialog)進行一些操作提示是非常必要的。Android系統有自帶的各種樣式的對話框,但是根據項目需要可能從效果上滿足不了需求,只時我們就要自定義對話框。
我們可以自定義Dialog的樣式及展示布局,做出我們想要的對話框,但有的時候,我們做出的對話框要么顯示太大,要么顯得太小,或者是在不同的頁面大小不一樣,需要做個統一!此時我們就需要對Dialog大小進行控制,今天就簡單地講下這個。貼出代碼,注釋中有詳細說明。
先是我們自定義Dialog的布局:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="141dp" android:orientation="vertical" > <LinearLayout android:layout_width="match_parent" android:layout_height="92dp" android:background="@drawable/dialogbackground" android:gravity="center" android:orientation="vertical" > <TextView android:id="@+id/dialog_tips_tv" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="center" android:layout_marginTop="10dp" android:lineSpacingExtra="3dp" android:lineSpacingMultiplier="1.2" android:textColor="#333333" android:textSize="15sp" android:visibility="gone" /> <TextView android:id="@+id/dialog_content_tv" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="center" android:lineSpacingExtra="3dp" android:lineSpacingMultiplier="1.2" android:layout_marginLeft="15dp" android:layout_marginRight="15dp" android:text="@string/my_bank_delete_dialog"<!--這里是提示文字,可以在代碼中更改--> android:layout_marginTop="3dp" android:textColor="#333333" android:textSize="15sp" /> </LinearLayout> <LinearLayout android:layout_width="match_parent" android:layout_height="40dp" android:gravity="center" android:orientation="horizontal" > <Button android:id="@+id/fail" android:layout_width="wrap_content" android:layout_height="match_parent" android:layout_weight="1" android:background="@drawable/dialogsuccess_bg" android:gravity="center" android:text="取消" android:textColor="#007aff" android:textSize="17sp" /> <Button android:id="@+id/success" android:layout_width="wrap_content" android:layout_height="match_parent" android:layout_weight="1" android:background="@drawable/dialogerror" android:gravity="center" android:text="確定" android:textColor="#007aff" android:textSize="17sp" /> </LinearLayout> </LinearLayout>
下面就是對話框的實現代碼:
首先在所在的類中定義
private Dialog mDialog; //下面是彈出對話框的方法,在需要彈出對話框的地方調用就可以了,當然可以去掉方法,直接寫對話框代碼也行。 protected void showIsDeleteDialog() { View view = LayoutInflater.from(getActivity()).inflate(R.layout.common_no_title_dialog, null); TextView tv = (TextView) view.findViewById(R.id.dialog_content_tv); tv.setText("您要進行如下操作嗎?");//這就是上面說到的提示文字,可以在這里做修改 Button mCancel = (Button) view.findViewById(R.id.success); Button mSure= (Button) view.findViewById(R.id.fail); // 取消操作 mCancel.setOnClickListener(new OnClickListener() { @Override public void onClick(View v) { mDialog.dismiss(); } }); //確定操作 mSure.setOnClickListener(new OnClickListener() { @Override public void onClick(View v) { clearRecordRequest(); mDialog.dismiss(); } }); mDialog = new Dialog(getActivity(), R.style.IsDelDialog);//自定義的樣式,沒有貼出代碼來 mDialog.setContentView(view); mDialog.show(); Window dialogWindow = mDialog.getWindow(); WindowManager m = getActivity().getWindowManager(); Display d = m.getDefaultDisplay(); // 獲取屏幕寬、高度 WindowManager.LayoutParams p = dialogWindow.getAttributes(); // 獲取對話框當前的參數值 p.height = (int) (d.getHeight() * 0.8); // 高度設置為屏幕的0.6,根據實際情況調整 p.width = (int) (d.getWidth() * 0.8); // 寬度設置為屏幕的0.65,根據實際情況調整 dialogWindow.setAttributes(p); }
以上是“Android如何實現自定義Dialog的大小”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。