当前位置: 首页>>代码示例>>Java>>正文


Java AlertDialog.THEME_DEVICE_DEFAULT_DARK属性代码示例

本文整理汇总了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;
}
 
开发者ID:sanjaysingh1990,项目名称:Exoplayer2Radio,代码行数:40,代码来源:TimePickerFragment.java


注:本文中的android.app.AlertDialog.THEME_DEVICE_DEFAULT_DARK属性示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。