android – 如何包装首选项标题?

前端之家收集整理的这篇文章主要介绍了android – 如何包装首选项标题?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在这张图片中,我的偏好标题并没有包裹其父母.

如何将标题换行到新行?

谢谢.

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">

希望这会奏效;)

原文链接:https://www.f2er.com/android/317602.html

猜你在找的Android相关文章