按照this tutorial创建首选项屏幕之后,膨胀类'androidx.preference.PreferenceScreen'似乎存在问题。在res/xml
文件夹中声明了我的偏好设置并将必需的依赖项添加到此项目后,为什么找不到它?
我的应用程序的minSdkVersion是24。
错误膨胀类(未找到)androidx.preference.PreferenceScreen
依赖项
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support:cardview-v7:28.0.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
implementation 'com.android.support:preference-v7:28.0.0'
implementation 'com.android.support:recyclerview-v7:28.0.0'
implementation 'com.android.support:support-v4:28.0.0'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
}
res / xml / preferences.xml
<?xml version="1.0" encoding="utf-8"?>
<androidx.preference.PreferenceScreen
xmlns:android="http://schemas.android.com/apk/res/android">
<CheckBoxPreference
android:key="preference_a"
android:defaultValue="false"
android:title="Preference A" />
</androidx.preference.PreferenceScreen>
活动布局
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/settings_container"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".MySettingsActivity" />
活动课
class MySettingsActivity : AppCompatActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
supportFragmentManager
.beginTransaction()
.replace(R.id.settings_container, MySettingsFragment())
.commit()
}
}
片段类
class MySettingsFragment : PreferenceFragmentCompat() {
override fun onCreatePreferences(savedInstanceState: Bundle?, rootKey: String?) {
addPreferencesFromResource(R.xml.app_preferences)
}
}
答案 0 :(得分:3)
如果您使用的是AndroidX,则应更新依赖项:
implementation "androidx.legacy:legacy-preference-v14:1.0.0"
implementation "androidx.preference:preference:1.0.0"
遗产用于旧的com.android.support:preference-v14
,而其他遗产则用于com.android.support:preference-v7
。
如果您不使用AndroidX,而是使用Android支持库,请不要将AndroidX小部件导入XML。
答案 1 :(得分:0)
使用支持库28.0.0
,您应该具有以下XML代码:
(在这种情况下,注意删除androidx
)
<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen xmlns:app="http://schemas.android.com/apk/res-auto">
<CheckBoxPreference
android:key="preference_a"
android:defaultValue="false"
android:title="Preference A" />
</PreferenceScreen>
和gradle
配置文件:
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support:preference-v7:28.0.0'
以及类似的实现:
(注意:set
,而不是add
和rootKey
):
public class SettingsFragment extends PreferenceFragmentCompat {
public static final String TAG = SettingsFragment.class.getSimpleName();
@Override
public void onCreatePreferences(Bundle savedInstanceState, String rootKey) {
setPreferencesFromResource(R.xml.preferences, rootKey);
}
}
在oficial documentation中,示例代码中有 androidx ,也许就是问题所在,您不需要支持库就可以了
答案 2 :(得分:0)
如果您想使用PreferenceFragmentCompat
,则应实施以下依赖项。
implementation 'androidx.preference:preference:1.0.0
答案 3 :(得分:0)
自2019年4月10日起,设置tutorial中存在一个明显的错误。他们忘记在活动中调用setContentView。