在我的Android应用中,我定义了一个非常基本的PreferenceScreen
:
<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
<ListPreference
android:entries="@array/test_entries"
android:entryValues="@array/test_values"
android:key="key_test1"
android:title="Test title 1" />
<CheckBoxPreference
android:key="key_test2"
android:summary="Test description 1"
android:title="Test title 2" />
</PreferenceScreen>
并实现了相应的PreferenceFragmentCompat
类:
class SettingsFragment : PreferenceFragmentCompat() {
override fun onCreatePreferences(savedInstanceState: Bundle?, rootKey: String?) {
setPreferencesFromResource(R.xml.settings, rootKey)
}
}
我正在使用的依赖项:
implementation "com.android.support:preference-v7:28.0.0"
以及托管Fragment
的布局的代码:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".ui.activity.MainActivity">
<android.support.v7.widget.Toolbar
android:id="@+id/mainToolbar"
android:layout_width="match_parent"
android:layout_height="?android:attr/actionBarSize" />
<fragment
android:id="@+id/navHostFragment"
android:name="androidx.navigation.fragment.NavHostFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:defaultNavHost="true"
app:navGraph="@navigation/navigation" />
</LinearLayout>
一切正常,除了每个首选项左侧有一个巨大的空白处:
此问题的原因是什么,我该如何预防?
编辑:
问题似乎是保留了图标的空间,即使我们在首选项条目中不使用任何图标。
将首选项的icon
属性设置为@null
无效。
将iconSpaceReserved
属性设置为false
可以解决Preference
项目的问题,但是对PreferenceCategory
项目没有影响。
答案 0 :(得分:0)
如果使用 AndroidX ,则将以下属性添加到XML的“偏好设置”(如果需要,还包括“偏好类别”):
<Preference
...
app:iconSpaceReserved="false"
.../>