如何更改首选项的字体大小?

时间:2019-03-17 08:51:42

标签: android xml android-preferences

我不知道如何更改一些首选项的字体大小。我已经尝试过this post,但没有成功。完成后,我的图标没有出现。 这是现在的样子,但我认为首选项的标题太大。 这是我的屏幕当前外观:

Image of the screen

这是我的 pref_headers.xml xml文件的代码:

<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
    <Preference
        android:key="@string/key_pref_general"
        android:title="@string/label_pref_general"
        android:icon="@drawable/ic_person"/>

        <Preference
            android:key="@string/key_pref_categories"
            android:title="@string/label_pref_categories"
            android:icon="@drawable/ic_list"/>

        <Preference
            android:key="@string/key_pref_productivity"
            android:title="@string/label_pref_productivity"
            android:icon="@drawable/ic_chart"/>

        <Preference
            android:key="@string/key_pref_delete"
            android:title="@string/label_pref_delete"/>


</PreferenceScreen>

3 个答案:

答案 0 :(得分:1)

我为您提供一种解决方案。您可以通过管理布局文件来更改字体大小以实现特定的首选项。

这是您编辑的 pref_headers.xml

<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
<Preference
    android:key="general"
    android:title="General"
    android:icon="@drawable/ic_person_black_24dp"
    android:layout="@layout/font_layout"/>

<Preference
    android:key="categories"
    android:title="Categories"
    android:icon="@drawable/ic_list_black_24dp"
    android:layout="@layout/font_layout"/>

<Preference
    android:key="productivity"
    android:title="Productivity"
    android:icon="@drawable/ic_timeline_black_24dp"
    android:layout="@layout/font_layout"/>

<Preference
    android:key="delete_this_accnt"
    android:title="Delete this Account"
    android:layout="@layout/font_layout"/>
</PreferenceScreen>

这里是layout( font_layout.xml )文件,您可以从中更改字体大小或要更改的任何属性(例如颜色等):

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="8dp"
android:gravity="center"
android:orientation="horizontal">
<ImageView
    android:id="@android:id/icon"
    android:layout_width="40dp"
    android:paddingStart="4dp"
    android:paddingEnd="4dp"
    android:layout_height="40dp" />

<TextView
    android:id="@android:id/title"
    android:layout_weight="1"
    android:layout_width="0dp"
    android:textColor="#201f1f"
    android:layout_height="wrap_content"
    android:textSize="18sp" />
</LinearLayout>

希望这会有所帮助!

答案 1 :(得分:0)

尝试这个

    <PreferenceCategory
    android:title="Category"
    android:textSize="20px">

    <Preference
    android:key="@string/key_pref_general"
    android:title="@string/label_pref_general"
    android:icon="@drawable/ic_person"/>

    <Preference
        android:key="@string/key_pref_categories"
        android:title="@string/label_pref_categories"
        android:icon="@drawable/ic_list"/>

    <Preference
        android:key="@string/key_pref_productivity"
        android:title="@string/label_pref_productivity"
        android:icon="@drawable/ic_chart"/>

    <Preference
        android:key="@string/key_pref_delete"
        android:title="@string/label_pref_delete"/>

</PreferenceCategory>

答案 2 :(得分:0)

您也可以按照自己的风格进行更改

SELECT [...]
INNER JOIN user_likes 
ON user_likes.age_from <= DATEDIFF(year, user.date_of_birth, GETDATE())
   AND user_likes.age_to >= DATEDIFF(year, user.date_of_birth, GETDATE())