0
我已經寫了SmartWatch 2控件擴展,它運行良好,但是當應用程序安裝在不同的手機上時,我看到不同的字體大小。大多數時候字體顯示正確,但在某些手機上,SmartWatch上的字體非常大。SmartWatch 2控件擴展的字體大小問題
這裏是文本組件的XML:
<TextView
android:id="@+id/watch_main_text"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_below="@+id/watch_title_bar"
android:gravity="center"
android:padding="5dp"
android:text="@string/watch_choose_workout_string"
android:textColor="@color/white"
android:textSize="10sp" />
是否有某種全局字體大小設置的,它覆蓋在XML資源中指定的字體大小?
謝謝!
完善。謝謝馬林! –