时间选择器选择的值文本大小 [英] timepicker selected value text size

查看:136
本文介绍了时间选择器选择的值文本大小的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想更改时间选择器的选定文本值大小。



我们有相同的库吗?



在我搜索时,我们在android中没有任何自定义设置。需要开发类似于iOS时间选择器的 UI

解决方案

对于Android


I want to change the selected text value size of a time picker.

Do we have any libraries for the same?

As I searched we do not have any customization in android. Need to develop a UI similar to iOS time picker.

解决方案

For android brucetoo/PickView similar to IOS,

This is a helper lib for us to pick date or province like IOS system WheelView widget.

Added feature to pick time with WheelView Widget

Dependencies

   compile 'com.brucetoo.pickview:library:1.2.3'


to use

 DatePickerPopWin pickerPopWin = new DatePickerPopWin.Builder(MainActivity.this, new DatePickerPopWin.OnDatePickedListener() {
                       @Override
                       public void onDatePickCompleted(int year, int month, int day, String dateDesc) {
                           Toast.makeText(MainActivity.this, dateDesc, Toast.LENGTH_SHORT).show();
                       }
                    }).textConfirm("CONFIRM") //text of confirm button
                           .textCancel("CANCEL") //text of cancel button
                           .btnTextSize(16) // button text size
                           .viewTextSize(25) // pick view text size
                           .colorCancel(Color.parseColor("#999999")) //color of cancel button
                           .colorConfirm(Color.parseColor("#009900"))//color of confirm button
                           .minYear(1990) //min year in loop
                           .maxYear(2550) // max year in loop
                           .showDayMonthYear(true) // shows like dd mm yyyy (default is false) 
                           .dateChose("2013-11-11") // date chose when init popwindow
                           .build();

这篇关于时间选择器选择的值文本大小的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆