影片直播原始碼,標題居中,底部按鈕為三個時居中佈局
影片直播原始碼,標題居中,底部按鈕為三個時居中佈局
更改底部按鈕預設大寫的設定
<style name="CustomAlertDialog" parent="@style/Theme.AppCompat.Light.Dialog.Alert"> <item name="buttonBarButtonStyle">@style/CustomAlertDialogButton</item> </style> <style name="CustomAlertDialogButton" parent="Widget.AppCompat.Button.ButtonBar.AlertDialog"> <item name="textAllCaps">false</item> <!--關閉預設大寫的設定 --> </style> //最後透過建構函式將樣式傳進去 AlertDialog.Builder builder = new AlertDialog.Builder(getActivity(), R.style.CustomAlertDialog);
底部按鈕為三個時,三個按鈕居中
//預設情況下: AlertDialog.Builder builder = new AlertDialog.Builder(this, R.style.CustomAlertDialog); AlertDialog dialog = builder.setTitle("My Title") .setMessage("My Message") .setPositiveButton("Positive", new DialogInterface.OnClickListener() { @Override public void onClick(DialogInterface dialog, int which) { showToast("Positive"); } }).setNeutralButton("Neutral", new DialogInterface.OnClickListener() { @Override public void onClick(DialogInterface dialog, int which) { showToast("Neutral"); } }).setNegativeButton("Negative", new DialogInterface.OnClickListener() { @Override public void onClick(DialogInterface dialog, int which) { showToast("Negative"); } }).create(); dialog.show();
以上就是 影片直播原始碼,標題居中,底部按鈕為三個時居中佈局,更多內容歡迎關注之後的文章
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69978258/viewspace-2987360/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 居中佈局、三欄佈局
- 成品直播原始碼推薦,常用的css居中佈局原始碼CSS
- 影片直播app原始碼,CSS div水平垂直居中和div置於底部APP原始碼CSS
- CSS佈局 --- 居中佈局CSS
- L – 居中佈局
- CSS按鈕垂直水平居中CSS
- CSS佈局之水平居中和垂直居中CSS
- CSS 佈局之水平居中佈局CSS
- css居中與佈局CSS
- CSS之居中佈局CSS
- android 相對佈局,程式碼建立imageview,佈局居中問題AndroidView
- flex居中佈局程式碼例項Flex
- flutter demo (一):居中的按鈕Flutter
- 直播平臺原始碼,TabLayout標籤較少時,如何居中顯示原始碼TabLayout
- 點選按鈕彈出一個居中div
- bootstrap 響應式佈局 居中問題boot
- CSS如何佈局與居中CSS
- CSS佈局-各種居中CSS
- flex彈性佈局 垂直居中Flex
- 前端面試之居中佈局前端面試
- CSS常見佈局與居中CSS
- CSS佈局——div居中方法CSS
- css佈局和居中簡析CSS
- css經典佈局系列一——垂直居中佈局CSS
- 佈局總結-水平居中佈局的實現
- 【佈局技巧】Flex 佈局下居中溢位滾動截斷問題Flex
- 兩列居中寬度固定佈局
- 直播系統app原始碼,元素水平垂直居中APP原始碼
- css上面縮圖底部標題佈局程式碼例項CSS
- 手機直播原始碼,突出底部導航欄中間按鈕的樣式原始碼
- app直播原始碼,css寬度不固定,水平居中APP原始碼CSS
- 一列固定寬度居中佈局
- 元素水平垂直居中【彈性佈局 || Translate】
- 淺談居中問題(水平居中、垂直居中、水平垂直居中)
- 兩列居中寬度自適應佈局
- 網頁佈局實現之div垂直居中網頁
- 關於css佈局、居中的問題以及一些小技巧CSS
- SwiftUI 佈局之元件對齊實現上下對齊和水平居中 (教程含原始碼)SwiftUI元件原始碼