gpt4 book ai didi

android - 如何包装到内容 Android 首选项摘要值?

转载 作者:太空狗 更新时间:2023-10-29 15:21:45 25 4
gpt4 key购买 nike

如何增加(包装到内容)偏好摘要值的大小?

目前最多显示 105 个字符。

最佳答案

通过添加到我的 EditTextPreferences 解决了这个问题:

android:layout="@layout/edit_text_preference_layout"

并将标准 Android 布局 XML 复制到我自己的布局文件 (edit_text_preference_layout.xml) 并进行一些更改(即删除 maxlines 属性并更改字体大小和边距以完全匹配其他首选项(出于某种原因,preferences.xml在 sdk 中(7 和 19)的值使受影响的首选项看起来与我在屏幕上显示的标准首选项有点不同:

<?xml version="1.0" encoding="utf-8"?>

<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="8dip"
android:layout_marginRight="6dip"
android:layout_marginTop="6dip"
android:layout_marginBottom="6dip"
android:layout_weight="1">

<TextView android:id="@+android:id/title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:singleLine="true"
android:textAppearance="?android:attr/textAppearanceMedium"
android:ellipsize="marquee"
android:fadingEdge="horizontal" />

<TextView android:id="@+android:id/summary"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@android:id/title"
android:layout_alignLeft="@android:id/title"
android:textAppearance="?android:attr/textAppearanceSmall"/>

</RelativeLayout>

<!-- Preference should place its actual preference widget here. -->
<LinearLayout android:id="@+android:id/widget_frame"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:gravity="center_vertical"
android:orientation="vertical" />

因此,如果您有其他首选项 - 它们的布局也应该更改,因此首选项屏幕上的所有内容看起来都是一致的。

关于android - 如何包装到内容 Android 首选项摘要值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7094317/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com