我在Kotlin中使用首选项来为我的应用程序创建设置,并且能够完美地设计所有内容,但是当我打算将其移至其他屏幕应用程序时,它一次又一次接近。 如果有人知道我在做什么错误,这就是我的代码,这将非常有帮助。
在此处输入代码
<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:android="http://schemas.android.com/apk/res/android">
<Preference
app:defaultValue="true"
app:icon="@drawable/blore_image"
app:key="profile_image"
app:summary="@string/profile_summary"
app:title="@string/profile">
<intent
android:targetPackage="com.ebookfrenzy.reminder.setting"
android:targetClass="com.ebookfrenzy.reminder.setting.ProfileImage"/>
</Preference>
</PreferenceScreen>