在PreferenceScreen加入自定义布局

想在PreferenceScreen页面加入一个自定义的布局,这里以加入一个button为例,记录一下

加入一个自定义布局有两种方式:

  1. 使用Preference的android:layout属性
 <Preference
        android:key="preference_key_you_want"
        android:title="preference_title_you_want"
        android:summary="preference_summary_you_want"
        android:layout="@layout/your_custom_layout"/>

然后在your_custom_layou.xml文件中定一个button,你懂的!

在android:layout属性指定你自定义的layout,注意preference的布局是定义在xml目录下的

2. 定义一个layout布局文件且布局要包含ListView android:id="@android:id/list"

1)在layout目录下单独写一个布局layout文件,定义你想要的布局,注意一定要包含ListView且id为@android:id/list,为要展示的perference占位

<?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="match_parent"
              android:orientation="vertical">
    <Button android:text="This is a button on top of all preferences."
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" />
    <ListView android:id="@android:id/list"
              android:layout_width="match_parent"
              android:layout_height="wrap_content" />
</LinearLayout>

2)然后在xml目录下定义preference文件,preference文件不需要考虑自定义的布局

<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
    <Preference
        android:key="preference_key_you_want"
        android:title="preference_title_you_want"
        android:summary="preference_summary_you_want"
        android:layout="@layout/your_custom_layout"/>
</PreferenceScreen>

3)在PreferenceActivity中加入两行代码:

addPreferencesFromResource(R.xml.preferences);
setContentView(R.layout.main);

两种方式在使用上的区别之一:
第二种方式可以不受perference的style影响

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值