2012-06-20 73 views
3

我正在編寫啓動首選項屏幕的應用程序。 第一項只是一個偏好。 第二項是右側帶有圖標的首選項。 爲了做第二個項目,我所做的是調用一個具有textview和圖像視圖的佈局。首選項屏幕中的文字大小問題

 <Preference 
    android:key="advanced_settings" 
    android:persistent="false" 
    android:layout="@layout/main" 

和主要佈局是:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" 
    android:orientation="vertical" > 


<TextView 
android:id="@+id/textView1" 
android:layout_width="wrap_content" 
android:layout_height="wrap_content" 
android:layout_centerVertical="true" 
android:text="Advanced settings" 
/> 

<ImageView android:id="@+id/imageview1" 
android:layout_width="wrap_content" 
android:layout_height="wrap_content" 
android:layout_alignParentRight="true" 
android:layout_centerVertical="true" 
android:src="@drawable/ic_bt_config" 
/> 

</RelativeLayout> 

但是推出的應用可以看出,文本顯示的是後文尺寸小,空間是不與其他空間兼容。 我不想硬編碼任何東西。

請幫助我如何使首選項屏幕的第二項與第一項的格式相同。

回答

0

您可以使用

android:textAppearance="?android:attr/textAppearanceLarge" 

,讓我看起來像偏好的文本