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>
だから私はここで何を間違っているのですか?