我有一个从TableLayout派生的cusom视图,我需要声明String属性Title,如下所示:
<com.mycompany.controls.NavigationControllerView
xmlns:app="http://schemas.usetech.com/apk/res/onroad"
title="@string/nav_title"
...
/>
(可以通过资源引用指定值)。 我在values / attrs.xml中指定了这个属性:
<declare-styleable name="NavigationControllerView">
<attr name="title" format="string"/>
...
</declare-styleable>
在我的代码中我正在尝试:
public class NavigationControllerView extends TableLayout {
public NavigationControllerView(Context context, AttributeSet attrs) {
super(context, attrs);
View.inflate(getContext(), R.layout.inc_header, this);
TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.NavigationControllerView);
CharSequence title = a.getString(R.styleable.NavigationControllerView_title);
if (title != null)
setTitle(title.toString());
}
...
但没有运气,标题总是空的。你看到我错了吗?
答案 0 :(得分:2)
你应该使用
<com.mycompany.controls.NavigationControllerView
xmlns:app="http://schemas.android.com/apk/res/onroad"
app:title="@string/nav_title"
... />
不要错过app:前缀。 也应该使用正确的命名空间uri。