2013-02-17 52 views
2

我有一個用戶界面,我添加了一個Switch小部件(在API 14中介紹)。 的XML看起來是這樣的:Android開關部件textOn和textOff不按預期方式工作

<Switch 
    android:id="@+id/togglebutton" 
    android:layout_margin="10dp" 
    android:layout_gravity="center" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:textOff="No" 
    android:textOn="Yes" /> 

你可以看到,我已指定紋元和textOff。所以我期望這個文本在開關小部件上。

不過,我得到的是: enter image description here enter image description here

已檢查調試一切......還是不明白,爲什麼我的自定義文本不顯示!

此外,自定義文本出現在銀河S2(安卓4.0.4),但不也出現在10" 的Galaxy Tab在Android 4.0.4!

請幫助。

回答

5

我解決它...

的問題是,對於Galaxy Tab的默認主題是別的東西......它不是例如Holo.Light!

一旦我強迫主題(在我的應用程序),以繼承Holo.Light我得到了預期的結果...