0

私はここ数時間夢中になっています。これを機能させることができません:私は好み、レイアウト、アクティビティを持っています。しかし、レイアウト内で設定を取得できません...設定:

<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" >
    <CheckBoxPreference 
       android:key="show_numbers"
       android:title="show tile numbers"
       android:summary="display the correct location of the tiles"
       android:defaultValue="false"   />
   <ListPreference
       android:key="grid_size"
       android:title="Grid Size"
       android:summary="puzzle size" 
       android:entries="@array/gridSizeTitles"
       android:entryValues="@array/gridSizeValues"
       android:defaultValue="3"  />
 </PreferenceScreen>

レイアウト:

        <RelativeLayout xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="@drawable/mainbgcolor" xmlns:android="http://schemas.android.com/apk/res/android">

    <RelativeLayout
        android:id="@+id/relativeLayoutHeader"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content" >

        <TextView
            android:id="@+id/txtvHeader"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerHorizontal="true"
            android:padding="20dip"
            android:text="Sliding Puzzle"
            android:textColor="#242FF0"
            android:textSize="20dip"
            android:textStyle="bold|normal" />

        <ImageView
            android:id="@+id/ivHeader"
            android:layout_width="50dip"
            android:layout_height="50dip"
            android:layout_centerVertical="true"
            android:layout_toLeftOf="@+id/txtvHeader"
            android:contentDescription="Sliding Puzzle Icon"
            android:scaleType="fitCenter"
            android:src="@drawable/slidingpuzzleicon" />
    </RelativeLayout>


 <LinearLayout
        android:id="@+id/LinearLayoutContent"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_below="@+id/relativeLayoutHeader"
        android:orientation="vertical" >

<!-- THIS IS THE PLACE I WANT TO GET THE PREFERENCE.
     I ALSO WANT BE ABLE TO POSITION THE PREFERENCE VIEWS. -->

   </LinearLayout>

</RelativeLayout>

どんな助けでも大歓迎です。

よろしくお願いします、olijf

4

1 に答える 1

2
<!-- THIS IS THE PLACE I WANT TO GET THE PREFERENCE.
     I ALSO WANT BE ABLE TO POSITION THE PREFERENCE VIEWS. -->

次に、を使用するのではなく、そのために独自のUIを描画する必要がありますPreferenceScreen

システムの背後にあるポイントPreferenceScreenは、ユーザーが何を期待し、UIがどのように機能するかを理解できるように、設定を収集する標準化された方法を提供することです。必要なのは、設定を収集するための標準化されていない方法を実装することです。そうすることは大歓迎ですが、そのために独自のUIをロールする必要があります。

于 2012-11-05T17:24:10.820 に答える