gpt4 book ai didi

android - 在首选项中添加搜索栏

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

我已经制作了一个偏好列表。我从代码中得到它

 addPreferencesFromResource(R.xml.preferencelayout);

这让我进入包含以下内容的 preferencelayout.xml 文件:

<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen
xmlns:android="http://schemas.android.com/apk/res/android">

<PreferenceCategory android:title="Settings">
<ListPreference
android:key="listPref"
android:title="Shake sensitivity"
android:summary=""
android:entries="@array/listArray"
android:entryValues="@array/listValues"
android:defaultValue="165" />


<SeekBarPreference
android:defaultValue="22"
android:title="Set the default time"
android:key="seekBar">
</SeekBarPreference>

<CheckBoxPreference
android:key="checkboxPref"
android:title="Autodecrease music"
android:summary=""
android:defaultValue="true"/>
</PreferenceCategory>
</PreferenceScreen>

当我按下 SeekBarPreference 按钮时,出现一个带有 Seekbar 和 2 个按钮的对话框,保存和取消!

我的问题来了:

我可以在搜索栏旁边添加一个 TextView 或其他内容来查看搜索栏当前指向的值吗?

如何获取用户输入的值?

谢谢!

最佳答案

现在,Android 开箱即用地支持这种行为,只需将以下行添加到您的SeekBarPreference:

   app:showSeekBarValue="true"

关于android - 在首选项中添加搜索栏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6740256/

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