安卓自定義的AlertDialog的一些使用
我們先看下面的彈出框如何實現:
xml檔案:
<RelativeLayout xmlns:android="" xmlns:tools="" android:id="@+id/title" android:layout_width="match_parent" android:layout_height="60dp" > <TextView android:id="@+id/content" android:layout_width="match_parent" android:layout_marginTop="20dp" android:layout_height="60dp" android:layout_marginLeft="25dp" android:text="@string/upgrade_content" android:textColor="#000000" android:textSize="22sp" /> <LinearLayout android:layout_width="match_parent" android:layout_height="40dp" android:layout_below="@id/content" android:orientation="horizontal" > <CheckBox android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="center_vertical" android:layout_marginLeft="15dp" /> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="center_vertical" android:layout_marginLeft="15dp" android:text="@string/remind_me" android:textColor="#000000" android:textSize="14sp" /> </LinearLayout> </RelativeLayout>
程式碼實現:
public AlertDialog getEditCustomDialog(String leftText,android.content.DialogInterface.OnClickListener leftlistener, String rightText, android.content.DialogInterface.OnClickListener rightlistener) { LayoutInflater inflater = getLayoutInflater(); View view = inflater.inflate(R.layout.test_dialog1, null); AlertDialog.Builder builder = new AlertDialog.Builder(DialogTest.this); if (!TextUtils.isEmpty(leftText)) { builder.setNegativeButton(leftText, leftlistener); } if (!TextUtils.isEmpty(rightText)) { builder.setPositiveButton(rightText, rightlistener); } builder.setView(view); builder.setTitle("A New Version is Available"); return builder.create(); }
Dialog dialog = getEditCustomDialog("Cancel", new DialogInterface.OnClickListener() { @Override public void onClick(DialogInterface dialog, int which) { Log.d("TAG","<<<<left "); } }, "Upgrade Now", new DialogInterface.OnClickListener() { @Override public void onClick(DialogInterface dialog, int which) { Log.d("TAG","<<<<right "); } }); //是否可以點選硬體的back讓彈出框消失 dialog.setCancelable(true); //是否點選彈出框的空白部分可以讓彈出框消失 dialog.setCanceledOnTouchOutside(true);
我們可以在dialog.show以後透過WindowManager來改變框的大小
WindowManager.LayoutParams lp = dialog.getWindow().getAttributes(); lp.width = DialogTest.this.getResources().getDimensionPixelSize(R.dimen.dialog_width); lp.height = DialogTest.this.getResources().getDimensionPixelSize(R.dimen.dialog_height); dialog.getWindow().setAttributes(lp);
程式碼在
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/2001/viewspace-2818541/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Android 自定義 AlertDialog 提示框Android
- AlertDialog 自定義對話方塊檢視
- 直播系統原始碼,簡易的自定義確認彈框AlertDialog原始碼
- 短視訊程式開發,簡易的自定義確認彈框AlertDialog
- 安卓自定義優惠券View安卓View
- 安卓開發之ViewDragHelper的使用及自定義可下拉展示內容的ViewGroup安卓View
- jquery自定義事件的使用jQuery事件
- 線上直播原始碼,自定義AlertDialog設定寬高並去掉預設的邊框原始碼
- 安卓自定義二維碼掃描安卓
- 安卓自定義View基礎:角度弧度安卓View
- Angular 自定義管道 pipes 的使用Angular
- 安卓自定義View進階: 圖片文字安卓View
- 安卓自定義View基礎:座標系安卓View
- H5自定義屬性的一些方式H5
- 使用C++Builder建立自定義VCL元件時的一些問題 (轉)C++UI元件
- Oracle自定義異常的使用薦Oracle
- Avalonia的自定義使用者元件元件
- 安卓自定義註解支援和示例實現安卓
- 安卓自定義 View 進階:貝塞爾曲線安卓View
- PhpCms自定義欄位的使用說明PHP
- Android自定義View之Canvas的使用AndroidViewCanvas
- springBoot自定義註解的使用Spring Boot
- Angular rxjs裡自定義operator的使用AngularJS
- PHP中的自定義路由使用小結PHP路由
- keycloak~使用自定義的註冊頁
- 安卓Property Animator動畫詳解(二)-自定義屬性安卓動畫
- 安卓自定義 View 進階:Path 完結篇(偽)安卓View
- 安卓自定義View進階:繪製基本形狀安卓View
- 自定義的PopupWindow
- 使用Guava的ComparisonChain實現自定義的排序GuavaAI排序
- 使用Photos自定義相簿
- 使用ImpromptuInterface反射庫方便的建立自定義DfaGraphWriterUI反射
- SingleR如何使用自定義的參考集
- Apache Maven Assembly自定義打包外掛的使用ApacheMaven
- 在vue中,使用echarts的自定義主題VueEcharts
- AlertDialog的初階操作
- 高度自定義的STDPickerViewView
- iOS自定義的PickViewiOSView