Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
931 views
in Technique[技术] by (71.8m points)

android - Magic with obtainStyledAttributes method

Code:

public class CustomLayoutWithText extends LinearLayout {

    private Context context;
    private AttributeSet attrs;

    public CustomLayoutWithText(Context context, AttributeSet attrs) {
        super(context, attrs);
        this.context = context;
        this.attrs = attrs;
        fooAttrs();
    }

    @Override
    protected void onFinishInflate() {
        super.onFinishInflate();
        fooAttrs();
    }

    private void fooAttrs() {
        int[] set = {
            android.R.attr.text        // idx 0
        };
        TypedArray a = context.obtainStyledAttributes(attrs, set);
        Log.d(null, a.getString(0));
    }
}

and XML:

<com.korovyansk.android.views.CustomLayoutWithText
     xmlns:android="http://schemas.android.com/apk/res/android"
     android:layout_width="match_parent"
     android:layout_height="wrap_content"
     android:text="Some text"/>

Reasonable to expect that output will be:
Some text
Some text

But it's:
Some text
null

Why second time it appears null? And how to avoid it?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

I think all data in attrs gets recycled. In fact in the examples everywhere they recommend to explicitly recycle all obtained typed arrays from the AttributeSet in constructor of the View. I think you should follow the best practice too.

    TypedArray a = context.obtainStyledAttributes(attrs, set);
    try {
        // read attributes from a
        // ...
    } finally {
        attributes.recycle();
    }

My guess is that when onFinishInflate() is called, attrs is already empty or unavailable.

In fact, according to the code of LayoutInflater, the AttributeSet that is passed into View constructor during layout inflation is actually based on XmlPullParser. The onFinishInflate() is called on the parent view after inflating all of its children.

It looks like at this point in 'onFinishInflate()' you cannot obtain the values of your attribute from the attrs. Especially if you have children inside your layout - the attrs will reference to the same parser, but the parser's position will point to the attributes of the last parsed child.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...