我想在我的一種佈局中使用roboto-thin字體,但是當我將字體系列設置爲「sans-serif-thin」時,字體默認爲斜體,我無法強制它是正常的。sans-serif-thin默認爲斜體?
<TextView
android:id="@+id/textLabel"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/firstLabel"
android:fontFamily="sans-serif-thin"
android:text="for this week"
android:textSize="30sp"
android:textStyle="normal"
android:layout_marginTop="-15dp" />
任何人都可以告訴我在佈局中使用roboto-thin正常樣式字體的正確方法嗎?
那麼,你是對的。事情是,在圖形佈局設計器(或預覽器,如果你願意的話),它確實顯示斜體樣式。 謝謝! :) – fobia
我不認爲任何人都可以保證預覽器的正確性。最安全的方法是在模擬器上進行測試,或者更好的是儘可能使用真實的設備。 – Neoh