在我要求删除PreferenceActivity / PreferenceFragment的填充之前:
Android: How to maximize PreferenceFragment width (or get rid of margin)?
这次我无法在标题文本之前调整边距/填充。 (见下图)。
有人有任何想法吗?
答案 0 :(得分:10)
您可以自定义您的复选框,如下所示: MyPreference.xml
<CheckBoxPreference android:key="testcheckbox"
android:title="Checkbox Title"
android:summary="Checkbox Summary..."
android:layout="@layout/custom_checkbox_preference_layout">
</CheckBoxPreference>
和custom_checkbox_preference_layout.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:minHeight="?android:attr/listPreferredItemHeight"
android:gravity="center_vertical"
android:paddingLeft="16dip"
android:paddingRight="?android:attr/scrollbarSize">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:minWidth="0dp"
android:gravity="center"
android:orientation="horizontal">
<ImageView
android:id="@+android:id/icon"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
/>
</LinearLayout>
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginRight="6dip"
android:layout_marginTop="6dip"
android:layout_marginBottom="6dip"
android:layout_weight="1">
<TextView android:id="@+android:id/title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:singleLine="true"
android:textAppearance="?android:attr/textAppearanceMedium"
android:ellipsize="marquee"
android:fadingEdge="horizontal" />
<TextView android:id="@+android:id/summary"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@android:id/title"
android:layout_alignLeft="@android:id/title"
android:textAppearance="?android:attr/textAppearanceSmall"
android:textColor="?android:attr/textColorSecondary"
android:maxLines="4" />
</RelativeLayout>
<!-- Preference should place its actual preference widget here. -->
<LinearLayout android:id="@+android:id/widget_frame"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:gravity="center"
android:orientation="vertical" />
</LinearLayout>
重点是android:minWidth =“0dp”。
答案 1 :(得分:10)
对于遇到此问题并且不想通过自定义布局的任何人。我要注意添加:
android:icon="@null"
解决了左侧空白区域的问题。
<PreferenceScreen android:icon="@null" android:title="Your title" android:summary="Your summary" />
答案 2 :(得分:3)
截至2020年2月16日, 此空间用于图标。要摆脱此空间,请使用:
JAVA
preference.setIconSpaceReserved(false);
XML
<androidx.preference.PreferenceScreen
xmlns:app="http://schemas.android.com/apk/res-auto">
<Preference
...
app:iconSpaceReserved="true/false"
.../>
</androidx.preference.PreferenceScreen>
True添加填充。 False将其删除。
PS:使用了依赖性
implementation 'androidx.preference:preference:1.1.0'
答案 3 :(得分:0)
user1482130描述的custom_checkbox_preference_layout.xml也可以不对其他类型的首选项进行修改,例如listpreferences!非常有用
android:layout="@layout/custom_checkbox_preference_layout">
答案 4 :(得分:0)
如果要创建首选项,请将ContextThemeWrapper作为参数传递给新的首选项
TypedValue themeTypedValue = new TypedValue();
getActivity().getTheme().resolveAttribute(R.attr.preferenceTheme, themeTypedValue, true);
ContextThemeWrapper contextThemeWrapper = new ContextThemeWrapper(getActivity(), themeTypedValue.resourceId);
Preference preference = new Preference(contextThemeWrapper);
我在本文中找到了它:Dynamically creating Preference Screens on Android