在这张图片中,我的偏好标题并没有包裹其父母.
如何将标题换行到新行?
谢谢.
XML:
<CheckBoxPreference android:key="keypref" android:summary="Summary text does wrap around the borders" android:title="The title of this preference is" > </CheckBoxPreference>
解决方法
您需要进行类似默认(android内部)CheckBoxPreference的自定义布局.在标题的xml文本视图中,ellipsize设置为Marque,重复限制无限期,可滚动设置为水平.您可以使用以下命令设置CheckBoxPreference的布局:
<CheckBoxPreference android:key="key_checkBox_pref" android:summary="Summary text does wrap around the borders" android:title="The title of this preference." android:layout="@layout/custom_checkBox_preferences_layout">
希望这会奏效;)