2017-02-14 84 views
0

創建自定義字符串資源後,使用的Unicode字符(↔)看起來與字母的字體大小不同。如何調整Unicode字符的字體大小以匹配我自定義字符串中使用的其他字符?如何調整Unicode字符大小以匹配字母字符

<TextView 
     style="@android:style/TextAppearance.Medium" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:text="@string/locationa_tofrom_locationb" 
     android:textColor="@android:color/white" /> 

enter image description here

的strings.xml

<string name="locationa_tofrom_locationb">Location A &#x2194; Location B</string> 

回答

0

您可以使用自己的字體來實現解決方案。在這裏看到:

How to use custom font in Android Studio

+0

有趣,但我不想在爲了實現這一目標從頭創建一個新的字體。 – MacaronLover

+0

你所遇到的是完全依賴於使用的字體。如果您當前所用的字體不符合您的需要,請查找另一種字體。或者,在一個字體大小中爲''Location A'''和'「Location B」'分別使用3個'TextView's - 2,另一個更大的字體大小使用''↔「'1。 –

+0

@RemyLebeau我不知道任何字體,+ Android沒有指定任何做。 – MacaronLover