android从Activity中读取attrtibutes文件

时间:2016-08-17 13:14:39

标签: android

我有一个包含这样内容的属性文件 -

<declare-styleable name="MessagingFragment">
        <attr name="favouritePageTitle" format="string" />
        <attr name="chatPageTitle" format="string" />
    </declare-styleable>

我想从活动xml中读取并在MyActivity中使用它。我该怎么做

1 个答案:

答案 0 :(得分:0)

this您要找的是什么?

TypedArray a = context.obtainStyledAttributes(attrs,
R.styleable.MyCustomWidget);

String myText = a.getString(R.styleable.MyCustomWidget_myText);