我有一個包含默認標題的對話框。更改對話框標題的字體大小android
並且對話框的消息是自定義的。
我想更改對話框標題的字體大小(默認值)。
這是可能的對話框?
Dialog dialog = new Dialog(activity);
dialog.requestWindowFeature(Window.FEATURE_LEFT_ICON);
dialog.setContentView(R.layout.listview);
dialog.setFeatureDrawableResource(Window.FEATURE_LEFT_ICON,R.drawable.app_icon);
dialog.setTitle(R.string.add);
dialog.setCancelable(false);
ListView listView = (ListView) dialog.findViewById(R.id.list);
String[] values = new String[3];
values[0] = getResources().getString(R.string.food1);
values[1] = getResources().getString(R.string.food2);
values[2] = getResources().getString(R.string.cancel);
dialog.show();
創建最好的溶膠自定義對話框。 –
使用'dialog.setCustomTitle' –