通过以下文档,我成功地实现了对首选项片段的搜索栏首选项。但我坚持处理搜索栏偏好更改。
当跟踪触摸释放时,搜索栏会更改其值。在跟踪触摸保持和滑动时,它不会连续更改其值。
即使文档说有一个“setUpdatesContinuously(boolean)”方法,Android Studio 也无法解决它。( https://developer.android.com/reference/androidx/preference/SeekBarPreference.html#setUpdatesContinuously(boolean) )
迈格勒
implementation 'androidx.preference:preference:1.0.0'
我的进口
import androidx.preference.Preference;
import androidx.preference.SeekBarPreference;
我的偏好.xml
<androidx.preference.SeekBarPreference
app:key="change_fact_counts"
app:icon="@drawable/ic_lockscreen"
android:layout="@layout/seekbar_preference_layout"
android:title = "Facts"
app:showSeekBarValue="true"
/>
我的 Seekbar 首选项布局
<SeekBar
android:id="@+id/seekbar"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:max="50"
android:min="1"
android:textSize="@dimen/preference_text_size"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@android:id/title"
app:layout_constraintWidth_percent=".8"
android:paddingStart="8dp" />
我的偏好片段
public class SettingsFragment extends PreferenceFragmentCompat implements Preference.OnPreferenceClickListener, Preference.OnPreferenceChangeListener {
SeekBarPreference factCounts;
@Override
public void onCreatePreferences(Bundle savedInstanceState, String rootKey) {
factCounts =(SeekBarPreference) findPreference("change_fact_counts");
}}
谢谢您阅读此篇。任何帮助表示赞赏