自定义偏好布局和主题是否与默认一致?
custom preference layout and theme consistent with the default one?
我是 android 开发新手。我正在处理设置首选项(具体是 seekbar 首选项),我知道如何自定义首选项的布局,但是主题、布局或样式与默认的不一致,所以我的问题是,我该如何制作它(文本大小、填充、边距等)是否与默认值相同?例如,系统设置中的声音设置 the sound setting seekbar preference
how can I make it (text size, padding, margin etc.) the same as the default one?
将您的布局基于用于现有首选项类型的布局之一。这些布局可以在 $ANDROID_SDK/platforms/.../data/res/layout/, where
$ANDROID_SDKis wherever you have installed the Android SDK and
...is some platform version (e.g.,
android-26for Android 8.0). The layout resources prefixed with
preference_pertain to preferences, and
preference_widget_seekbar_material.xml` 是 Material 设计。
如果您使用的是 appcompat-v7
,您将执行类似的操作,浏览该库的代码,它是 this AOSP repo.
的一部分
我是 android 开发新手。我正在处理设置首选项(具体是 seekbar 首选项),我知道如何自定义首选项的布局,但是主题、布局或样式与默认的不一致,所以我的问题是,我该如何制作它(文本大小、填充、边距等)是否与默认值相同?例如,系统设置中的声音设置 the sound setting seekbar preference
how can I make it (text size, padding, margin etc.) the same as the default one?
将您的布局基于用于现有首选项类型的布局之一。这些布局可以在 $ANDROID_SDK/platforms/.../data/res/layout/, where
$ANDROID_SDKis wherever you have installed the Android SDK and
...is some platform version (e.g.,
android-26for Android 8.0). The layout resources prefixed with
preference_pertain to preferences, and
preference_widget_seekbar_material.xml` 是 Material 设计。
如果您使用的是 appcompat-v7
,您将执行类似的操作,浏览该库的代码,它是 this AOSP repo.