在這個圖片中,標題the title of my Preference
不能折行。
如何讓這個標題折行呢?
xml:
<CheckBoxPreference
android:key="keypref"
android:summary="Summary text does wrap around the borders"
android:title="The title of this preference is" >
</CheckBoxPreference>
你可以使用\n
來創建一個新行。
<CheckBoxPreference
android:key="keypref"
android:summary="Summary text does wrap around the borders"
android:title="The title of this preference\nis this." >
</CheckBoxPreference>