我一直在使用4.1 .......
TimePicker tpClock = (TimePicker) findViewById(R.id.tpClock);
View view = tpClock.getChildAt(0);
EditText etHours = (EditText) ((ViewGroup)((ViewGroup) view).getChildAt(0)).getChildAt(1);
这会获得Hour edittext,因此我可以隐藏它。
这一直很好用
然而,它不适用于4.2。我怎样才能找到他们改变了什么?
由于
答案 0 :(得分:1)
答案 1 :(得分:1)
试试这个:
TimePicker view = new TimePicker(this);
View hour = view.findViewById(Resources.getSystem().getIdentifier("hour", "id", "android"));
View input = hour.findViewById(Resources.getSystem().getIdentifier("numberpicker_input", "id", "android"));
// then you can do this
input.setClickable(false);
input.setFocusable(false);
// or this
input.setVisibility(View.GONE);