你好我已經創建使用ActionBar Sherlock
和android support Library v4
舊版本compatbility(我的應用程序的的minSdkVersion =「8」)中,我已經使用了TextView的某些屬性在ListView控件與ListView的導航抽屜式導航:抽屜式導航欄的Android API的具體佈局屬性
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceListItemSmall"
android:gravity="center_vertical"
android:paddingLeft="16dp"
android:paddingRight="5dp"
android:textColor="#fff"
android:background="?android:attr/activatedBackgroundIndicator"
android:minHeight="?android:attr/listPreferredItemHeightSmall"/>
這被示出誤差作爲?android:attr/activatedBackgroundIndicator
是從API 11和?android:attr/textAppearanceListItemSmall
& ?android:attr/listPreferredItemHeightSmall
從API 14
我管理通過與動作條替換它來支持?android:attr/activatedBackgroundIndicator
Sherlock的?attr/activatedBackgroundIndicator
。但是我沒有發現其他兩個屬性的任何等價。在行動吧Sherlock中有?attr/textAppearanceListItemSmall
,但它沒有正常工作。
那麼這些屬性的等價性是如何提供支持2.1以上的所有API?
你好,我已經通過設置 '<捫名= 「textview_height」> 50dp <捫名= 「FONT_SIZE」> 18SP' 非常感謝解決它! :) –
也是一個問題。這個自定義維度看起來很完美。但是這些尺寸是否因android標準尺寸而異?我的意思是,這個尺寸的android API的值是什麼? –
你可以在android sdk中找到這些尺寸。如果尺寸不同,如果您的佈局看起來像您想要的並且您遵循android設計模式,則無關緊要。 – koso