摘要:在這個類中第一行就定義了如下變量的功能的具體實現(xiàn)都在這個內(nèi)部封裝修改按鈕顏色這里的參數(shù)有三種類型傳入對應(yīng)的參數(shù)即可得到對應(yīng)的這種方式只能設(shè)置按鈕的顏色而無法設(shè)置標題顏色需要注意的是這個方法必須在或者方法之后調(diào)用查看官方注釋的構(gòu)造函數(shù)如下這里
android.support.v7.app.AlertDialog
在這個類中第一行就定義了如下變量:
final AlertController mAlert;
AlertDialog的功能的具體實現(xiàn)都在這個AlertController內(nèi)部封裝.
修改按鈕顏色 1. AlertDialog.getButtonpublic Button getButton(int whichButton) { return mAlert.getButton(whichButton); }
這里的參數(shù)whichButton有三種類型:
DialogInterface.BUTTON_POSITIVE
DialogInterface.BUTTON_NEGATIVE
DialogInterface.BUTTON_NEUTRAL
傳入對應(yīng)的參數(shù)即可得到對應(yīng)的Button
Button btnPositive = (Button)AlertDialog.getButton(DialogInterface.BUTTON_POSITIVE); btnPositive.setTextColor(color);
這種方式只能設(shè)置按鈕的顏色,而無法設(shè)置標題顏色
需要注意的是這個方法必須在AlertDialog.show()或者AlertDialog.create()方法之后調(diào)用
查看官方注釋
/** * Gets one of the buttons used in the dialog. Returns null if the specified * button does not exist or the dialog has not yet been fully created (for * example, via {@link #show()} or {@link #create()}). * * @param whichButton The identifier of the button that should be returned. * For example, this can be * {@link DialogInterface#BUTTON_POSITIVE}. * @return The button from the dialog, or null if a button does not exist. */ public Button getButton(int whichButton) { return mAlert.getButton(whichButton); }2 AlertDialog.getWindow
AlertDialog的構(gòu)造函數(shù)如下:
protected AlertDialog(@NonNull Context context, @StyleRes int themeResId) { super(context, resolveDialogTheme(context, themeResId)); mAlert = new AlertController(getContext(), this, getWindow()); }
這里初始化了AlertController,并傳入了getWindow(),這個getWindow()是AlertDialog繼承自Dialog的方法.方法如下:
#Dialog.getWindow() public @Nullable Window getWindow() { return mWindow; }
將這個window對象傳入AlertController后,在AlertController源碼中可以看到對話框標題和按鈕的id,并通過Window.findViewById(id)獲取對應(yīng)的View.
所以這里可以這樣得到對話框的標題和按鈕:
//標題 TextView tvTitle = (TextView)AlertDialog.getWindow().findViewById(R.id.alertTitle); //按鈕 Button btnPositive = (Button)AlertDialog.getWindow().findViewById(R.id.button1);
然后設(shè)置所需要的顏色就可以了.這種方法可以修改Dialog的所有設(shè)置了id的控件的字體顏色.
3 反射3.1 首先拿到AlertController對象
Field mAlert = AlertDialog.class.getDeclaredField("mAlert"); mAlert.setAccessible(true); Object controller = mAlert.get(dialog);
在AlertController內(nèi)部查找到需要更改字體顏色的標題和按鈕
Button mButtonPositive;
Button mButtonNegative;
Button mButtonNeutral;
private TextView mTitleView;
private TextView mMessageView;
然后通過反射獲取對應(yīng)控件,修改控件顏色即可
Field mTitleView = controller.getClass().getDeclaredField("mTitleView"); mTitleView.setAccessible(true); TextView tvTitle = (TextView) mTitleView.get(controller); tvTitle.setTextColor(Color.GREEN);//更改標題的顏色三種方式比較起來,第二種是最簡單,效率也是最高的 更改Dialog顯示的位置
Window window = dialog.getWindow(); WindowManager.LayoutParams lp = window.getAttributes(); lp.gravity = Gravity.BOTTOM; lp.x = 100; lp.y = 100; window.setAttributes(lp);
這里要注意的是,WindowManager.LayoutParams的x和y坐標,看源碼注釋如下:
/** * X position for this window. With the default gravity it is ignored. * When using {@link Gravity#LEFT} or {@link Gravity#START} or {@link Gravity#RIGHT} or * {@link Gravity#END} it provides an offset from the given edge. */ @ViewDebug.ExportedProperty public int x; /** * Y position for this window. With the default gravity it is ignored. * When using {@link Gravity#TOP} or {@link Gravity#BOTTOM} it provides * an offset from the given edge. */ @ViewDebug.ExportedProperty public int y;
如果lp.gravity是默認的,那么x和y即使設(shè)置了也是無效的.因此x和y需要和lp.gravity搭配使用才有效果.當然lp.gravity也可以多帶帶使用.
文章版權(quán)歸作者所有,未經(jīng)允許請勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。
轉(zhuǎn)載請注明本文地址:http://specialneedsforspecialkids.com/yun/70241.html
摘要:這個示例有一個按鈕和一個輸入框,點擊按鈕顯示對話框,輸入的文本會顯示在輸入框里。把得到的字符串放到輸入框里。我們創(chuàng)建了一個有一個按鈕和一個標簽的的對話框,我們可以使用這個功能修改字體樣式。 對話框 對話框是一個現(xiàn)代GUI應(yīng)用不可或缺的一部分。對話是兩個人之間的交流,對話框就是人與電腦之間的對話。對話框用來輸入數(shù)據(jù),修改數(shù)據(jù),修改應(yīng)用設(shè)置等等。 輸入文字 QInputDialog提供了一...
摘要:構(gòu)造函數(shù)的原型方法合并自定義參數(shù)移除已存在的彈窗原型中提供了和方法。方法可以接受參數(shù),也是一個參數(shù)對象,與在構(gòu)造函數(shù)中的方法一樣,主要是為了方便更改彈窗功能。 簡易彈窗 開發(fā)說明 項目使用原型對象的方式實現(xiàn)彈窗的基本功能 項目依賴jquery,如果使用zepto,可能需要改動代碼,未測試,有問題請反饋,及時解決 項目提供了可定制彈窗,可以自定義按鈕,標題,以及對應(yīng)按鈕的回調(diào)函數(shù) 樣式...
摘要:構(gòu)造函數(shù)的原型方法合并自定義參數(shù)移除已存在的彈窗原型中提供了和方法。方法可以接受參數(shù),也是一個參數(shù)對象,與在構(gòu)造函數(shù)中的方法一樣,主要是為了方便更改彈窗功能。 簡易彈窗 開發(fā)說明 項目使用原型對象的方式實現(xiàn)彈窗的基本功能 項目依賴jquery,如果使用zepto,可能需要改動代碼,未測試,有問題請反饋,及時解決 項目提供了可定制彈窗,可以自定義按鈕,標題,以及對應(yīng)按鈕的回調(diào)函數(shù) 樣式...
閱讀 796·2021-11-24 09:38
閱讀 998·2021-11-11 11:01
閱讀 3236·2021-10-19 13:22
閱讀 1524·2021-09-22 15:23
閱讀 2828·2021-09-08 09:35
閱讀 2766·2019-08-29 11:31
閱讀 2119·2019-08-26 11:47
閱讀 1563·2019-08-26 11:44