我有一个包含这样内容的属性文件 -
<declare-styleable name="MessagingFragment">
<attr name="favouritePageTitle" format="string" />
<attr name="chatPageTitle" format="string" />
</declare-styleable>
我想从活动xml中读取并在MyActivity中使用它。我该怎么做
答案 0 :(得分:0)
this您要找的是什么?
TypedArray a = context.obtainStyledAttributes(attrs,
R.styleable.MyCustomWidget);
String myText = a.getString(R.styleable.MyCustomWidget_myText);