我正在尝试从布局中检索应用程序设置(preferences.xml)的SeekBarPreference。但是,当我尝试将findPreference(“font_size”)转换为SeekBarPreference时,出现以下错误:



以下是与我的设置页面(MyPreferencesAcitivty.java)相对应的代码-此行发生错误:final SeekBarPreference fontSizeSeekBar = (SeekBarPreference) findPreference("font_size");:

package com.example.myapplication;

import android.app.AlertDialog;
import android.content.DialogInterface;
import android.graphics.Color;
import android.os.Bundle;
import android.preference.EditTextPreference;
import android.preference.PreferenceActivity;
import android.preference.PreferenceFragment;
import android.preference.Preference;
import android.widget.EditText;

import androidx.preference.SeekBarPreference;

public class MyPreferencesActivity extends PreferenceActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        getFragmentManager().beginTransaction().replace(android.R.id.content, new MyPreferenceFragment()).commit();
    }

    public static class MyPreferenceFragment extends PreferenceFragment
    {
        @Override
        public void onCreate(final Bundle savedInstanceState)
        {
            super.onCreate(savedInstanceState);
            addPreferencesFromResource(R.xml.preferences);

            // Retrieve the EditTextPreference demonstrating the font size
            final EditTextPreference fontSizeEditPreference = (EditTextPreference) findPreference("font_size_edittext");
            // Retrive the EditText component of the EditTextPreference
            final EditText fontSizeEditText = fontSizeEditPreference.getEditText();

            // Attach a listener to the font size seekbar (changes the size of the EditText)
            final SeekBarPreference fontSizeSeekBar = (SeekBarPreference) findPreference("font_size");

        }
    }

}

以下是我的设置页面布局的XML代码(preferences.xml):
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto">
    <com.kizitonwose.colorpreference.ColorPreference
        android:defaultValue="#FF8983"
        android:title="Addition Highlight Color"
        app:colorChoices="@array/highlight_colors"
        android:key="addition_highlight_color"/>

    <com.kizitonwose.colorpreference.ColorPreference
        android:defaultValue="#99ffcc"
        android:title="Removal Highlight Color"
        app:colorChoices="@array/highlight_colors"
        android:key="removal_highlight_color"/>

    <SeekBarPreference
        android:key="font_size"
        android:title="Font Size"
        android:min="12"
        android:max="32"
        android:defaultValue="14" />

    <EditTextPreference
        android:defaultValue="Default Value"
        android:key="font_size_edittext"
        android:selectAllOnFocus="true"
        android:singleLine="true"
        android:title="A" />
</PreferenceScreen>

我在gradle(应用程序级别)中包含以下实现:
implementation 'androidx.preference:preference:1.0.0'

最佳答案

您正在混合使用不同的首选项系统。当您使用SeekBarPreference时,androidx.preference.Preferenceandroid.preference.Preference扩展而来。
您必须对所有首选项使用androidx.preference

import androidx.preference.EditTextPreference;
import androidx.preference.PreferenceFragmentCompat;
import androidx.preference.Preference;
还将PreferenceActivity替换为AppCompatActivity,并将getFragmentManager()替换为getSupportFragmentManager()

关于java - Android:难以识别的类型;无法将android.preference.Preference转换为androidx.preference.SeekBarPreference,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/60513220/

10-09 06:51