gpt4 book ai didi

android - 如何更改 PreferenceScreen 中 PreferenceCategory 分隔符的颜色

转载 作者:太空宇宙 更新时间:2023-11-03 11:39:26 25 4
gpt4 key购买 nike

我有一个 android.support.v4.preference.PreferenceFragment它使用以下 PreferenceScreen:

<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
<PreferenceCategory
android:title="Cat1"
android:key="pref_cat1">
<ListPreference
android:key="pref_list1"
android:title="@string/pref_list1"
android:dialogTitle="@string/pref_list1"
android:entries="@array/pref_list1_entries"
android:entryValues="@array/pref_list1_entries"
android:defaultValue="@string/pref_list1_default"/>
<EditTextPreference
android:key="pref_text2"
android:title="@string/pref_text2"
/>
</PreferenceCategory>
<PreferenceCategory
android:title="Cat2"
android:key="pref_cat2">
<EditTextPreference
android:key="pref_text3"
android:title="@string/pref_text3"
/>
</PreferenceCategory>

显示 PreferenceFragment 时,一些分隔符会显示在首选项之间,但也会显示在每个 PreferenceCategory 的名称下方。虽然我可以通过访问 PreferenceFragment 的 ListView 轻松修改首选项之间分隔线的颜色,但这对 PreferenceCategory 分隔线没有影响。

如何改变这种分隔线的颜色?

最佳答案

我在 Prefernces 文件中遇到了同样的问题。我通过以下步骤解决了它:

1:定义文件名preferences_category.xml:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">

<TextView
android:id="@+android:id/title"
style="?android:attr/listSeparatorTextViewStyle"

android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center_vertical" />

<View style="@style/Divider" />

</LinearLayout>

2:在样式xml文件中定义style:

<style name="Divider">
<item name="android:layout_width">match_parent</item>
<item name="android:layout_height">1dp</item>
<item name="android:background">@android:color/white</item>
</style>

3:preferences xml 文件中添加 preferences_category.xml 文件作为 android:layout 属性: :

 <PreferenceCategory 
android:title="My title"
android:layout="@layout/preferences_category">

关于android - 如何更改 PreferenceScreen 中 PreferenceCategory 分隔符的颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31418770/

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