Perference详解

(1)Preference是什么?

Represents the basic Preference UI building block displayed by a PreferenceActivity in the form of a ListView.

(2)它能干什么?

This class provides the View to be displayed in the activity and associates with a SharedPreferences to store/retrieve the preference data.

(3)怎么做的?

When specifying a preference hierarchy in XML, each element can point to a subclass of Preference, similar to the view hierarchy and layouts.

This class contains a key that will be used as the key into the SharedPreferences. It is up to the subclass to decide how to store the value.

 

下面我们对它进行分析:

 

 

 /**

     * Gets the View that will be shown in the {@link PreferenceActivity}.

     * 

     * @param convertView The old View to reuse, if possible. Note: You should

     *            check that this View is non-null and of an appropriate type

     *            before using. If it is not possible to convert this View to

     *            display the correct data, this method can create a new View.

     * @param parent The parent that this View will eventually be attached to.

     * @return Returns the same Preference object, for chaining multiple calls

     *         into a single statement.

     * @see #onCreateView(ViewGroup)

     * @see #onBindView(View)

     */

    public View getView(View convertView, ViewGroup parent) {

        if (convertView == null) {

            convertView = onCreateView(parent);

        }

        onBindView(convertView);

        return convertView;

    }

 

 

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值