我创建了 NumberPicker,但它是空的,除了文本字段之外,我无法单击其他任何内容,“0”在哪里,当我这样做时,键盘会弹出。这是图片以澄清我的意思。
图片:
这是我用来创建对话框的代码:
Dialog dialog = new Dialog(SettingsActivity.this);
dialog.setContentView(R.layout.draws_dialog);
dialog.show();
SettingsActivity
是我创建并显示此对话框的活动。
这是我的对话框的 xml:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<NumberPicker
android:id="@+id/numberPicker1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true" />
</RelativeLayout>
所以任何想法我在这里做错了什么?