テキストビューと日付ピッカーを使用して、次のようなフォームを作成しようとしています: |Date: | |datePickerHere| 問題は、開発者ガイドと「同じ」コードを持っていると思いますが、機能していないことです。|Date: datePickerHere| のようになります。
コードは次のとおりです。
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/scrollView1"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<LinearLayout android:layout_width="fill_parent"
android:layout_height="wrap_content">
<TextView android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="15sp"
android:text="@string/data_label"/>
<DatePicker
android:id="@+id/data"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
</LinearLayout>
</ScrollView>