0

テキストビューと日付ピッカーを使用して、次のようなフォームを作成しようとしています: |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>
4

1 に答える 1

1

変化する

 <LinearLayout android:layout_width="fill_parent"
        android:layout_height="wrap_content">

 <LinearLayout android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical">

「android:orientation」タグを指定しない場合、線形レイアウトはデフォルトで水平方向になります。目的を達成するには、垂直として指定する必要があります

于 2012-04-25T14:02:49.303 に答える