本文整理汇总了Java中android.app.AlertDialog.THEME_DEVICE_DEFAULT_DARK属性的典型用法代码示例。如果您正苦于以下问题:Java AlertDialog.THEME_DEVICE_DEFAULT_DARK属性的具体用法?Java AlertDialog.THEME_DEVICE_DEFAULT_DARK怎么用?Java AlertDialog.THEME_DEVICE_DEFAULT_DARK使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在类android.app.AlertDialog
的用法示例。
在下文中一共展示了AlertDialog.THEME_DEVICE_DEFAULT_DARK属性的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: onCreateDialog
@Override
public Dialog onCreateDialog(Bundle savedInstanceState){
//Use the current time as the default values for the time picker
final Calendar c = Calendar.getInstance();
int hour = c.get(Calendar.HOUR_OF_DAY);
int minute = c.get(Calendar.MINUTE);
//Create and return a new instance of TimePickerDialog
/*
public constructor.....
TimePickerDialog(Context context, int theme,
TimePickerDialog.OnTimeSetListener callBack, int hourOfDay, int minute, boolean is24HourView)
The 'theme' parameter allow us to specify the theme of TimePickerDialog
.......List of Themes.......
THEME_DEVICE_DEFAULT_DARK
THEME_DEVICE_DEFAULT_LIGHT
THEME_HOLO_DARK
THEME_HOLO_LIGHT
THEME_TRADITIONAL
*/
TimePickerDialog tpd = new TimePickerDialog(getActivity(), AlertDialog.THEME_DEVICE_DEFAULT_DARK
,this, hour, minute, DateFormat.is24HourFormat(getActivity()));
//You can set a simple text title for TimePickerDialog
//tpd.setTitle("Title Of Time Picker Dialog");
/*.........Set a custom title for picker........*/
TextView tvTitle = new TextView(getActivity());
tvTitle.setText("TimePickerDialog Title");
tvTitle.setBackgroundColor(Color.parseColor("#EEE8AA"));
tvTitle.setPadding(5, 3, 5, 3);
tvTitle.setGravity(Gravity.CENTER_HORIZONTAL);
tpd.setCustomTitle(tvTitle);
/*.........End custom title section........*/
return tpd;
}