Android:如何在偏好中调整边距/填充?
Posted
技术标签:
【中文标题】Android:如何在偏好中调整边距/填充?【英文标题】:Android: How to adjust Margin/Padding in Preference? 【发布时间】:2012-03-21 08:08:36 【问题描述】:在我要求移除 PreferenceActivity/PreferenceFragment 的填充之前:
android: How to maximize PreferenceFragment width (or get rid of margin)?
这一次我无法在标题文本之前调整边距/填充。 (见下图)。
有人知道吗?
【问题讨论】:
嗨@jclova,我面临同样的问题,我不想通过复选框的自定义布局。你是怎么解决这个问题的。 我怀疑,您看到的左侧填充是“空”android:icon
。您可能应该提供自己的可绘制对象,其尺寸尽可能小,看看是否有帮助。
在这里回答了类似的问题:***.com/questions/18509369/…
【参考方案1】:
截至 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 添加填充。假删除它。
PS:使用依赖
implementation 'androidx.preference:preference:1.1.0'
【讨论】:
也使用了这个依赖:com.android.support:preference-v7:28.0.0
支持库中的首选项现已弃用。使用 androidx
@VictorOkech ;)【参考方案2】:
如果您要动态创建首选项,则将 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
【讨论】:
【参考方案3】:user1482130 描述的 custom_checkbox_preference_layout.xml 也可以在不修改其他类型的首选项(例如 listpreferences)的情况下工作!很实用
android:layout="@layout/custom_checkbox_preference_layout">
【讨论】:
【参考方案4】:对于遇到此问题并且不想通过自定义布局的任何人。我想指出,添加:
android:icon="@null"
解决了我的左侧空白问题。
<PreferenceScreen android:icon="@null" android:title="Your title" android:summary="Your summary" />
【讨论】:
完美解决方案!应该是#1。 如果使用androidx.preference:preference:1.0.0
或更高版本,则不起作用。
针对每个偏好使用app:iconSpaceReserved="false"
【参考方案5】:
您可以像这样自定义您的复选框: 我的偏好.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_
android:layout_
android:minHeight="?android:attr/listPreferredItemHeight"
android:gravity="center_vertical"
android:paddingLeft="16dip"
android:paddingRight="?android:attr/scrollbarSize">
<LinearLayout
android:layout_
android:layout_
android:minWidth="0dp"
android:gravity="center"
android:orientation="horizontal">
<ImageView
android:id="@+android:id/icon"
android:layout_
android:layout_
android:layout_gravity="center"
/>
</LinearLayout>
<RelativeLayout
android:layout_
android:layout_
android:layout_marginRight="6dip"
android:layout_marginTop="6dip"
android:layout_marginBottom="6dip"
android:layout_weight="1">
<TextView android:id="@+android:id/title"
android:layout_
android:layout_
android:singleLine="true"
android:textAppearance="?android:attr/textAppearanceMedium"
android:ellipsize="marquee"
android:fadingEdge="horizontal" />
<TextView android:id="@+android:id/summary"
android:layout_
android:layout_
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_
android:layout_
android:gravity="center"
android:orientation="vertical" />
</LinearLayout>
重点是 android:minWidth="0dp"。
【讨论】:
您好先生,我正在为 CheckBoxPreference 使用自定义布局。但我的问题是 id 为“@+android:id/widget_frame”的线性布局在其左右两侧有一些填充。如何删除它。在此先感谢。以上是关于Android:如何在偏好中调整边距/填充?的主要内容,如果未能解决你的问题,请参考以下文章