我想更改时间选择器的所选文本值大小。
我们是否有相同的库?
我搜索时在android中没有任何自定义。需要开发类似于iOS时间选择器的 UI 。
答案 0 :(得分:0)
对于类似于IOS的android brucetoo/PickView,
这是一个帮助我们选择IOS系统WheelView小部件的日期或省份。
添加了使用WheelView Widget选择时间的功能
<强>依赖关系强>
compile 'com.brucetoo.pickview:library:1.2.3'
使用
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();