我正在尝试在对象之间设置关系层次结构。每个对象都有一个与其本身相同类型的父对象,或null
。
我有一个main.xml
,其中包含以下内容:
<com.morsetable.MorseKey
android:id="@+id/bi"
android:layout_weight="1"
custom:code=".."
custom:parentKey="@id/be"
android:text="@string/i" />
包含以下内容之一的res/values/attrs.xml
:
<declare-styleable name="MorseKey">
<attr name="code" format="string"/>
<attr name="parentKey" format="reference"/>
</declare-styleable>
和包含此内容的类(不是我的活动):
public class MorseKey extends Button {
public MorseKey(Context context, AttributeSet attrs) {
super(context, attrs);
initMorseKey(attrs);
}
private void initMorseKey(AttributeSet attrs) {
TypedArray a = getContext().obtainStyledAttributes(attrs,
R.styleable.MorseKey);
final int N = a.getIndexCount();
for (int i = 0; i < N; i++) {
int attr = a.getIndex(i);
switch (attr)
{
case R.styleable.MorseKey_code:
code = a.getString(attr);
break;
case R.styleable.MorseKey_parentKey:
parent = (MorseKey)findViewById(a.getResourceId(attr, -1));
//parent = (MorseKey)findViewById(R.id.be);
Log.d("parent, N:", ""+parent+","+N);
break;
}
}
a.recycle();
}
private MorseKey parent;
private String code;
}
这不起作用。每个MorseKey
实例都会报告N == 2
(好)和parent == null
(坏)。更多,parent == null
即使我明确尝试将其设置为某个任意值(请参阅注释)。我也试过custom:parentKey="@+id/be"
(加号),但也没用。我做错了什么?
答案 0 :(得分:1)
如果你的MorseKey类在一个单独的java文件中,我假设你的语句是“一个类(这不是我的活动)”。然后我相信问题在于你使用findViewById()。 findViewById()将在MorseKey视图本身而不是main.xml文件中查找资源。
也许尝试获取MorseKey实例的父级并调用parent.findViewById()。
case R.styleable.MorseKey_parentKey:
parent = this.getParent().findViewById(a.getResourceId(attr, -1));
虽然只有当您的MorseKey父母和孩子处于相同的布局时才会有效。
<LinearLayout ...>
<MorseKey ..../><!-- parent -->
<MorseKey ..../><!-- child -->
</LinearLayout>
但如果你的布局是这样的,并且父和子在不同的布局中,那么很难找到视图。
<LinearLayout ...>
<MorseKey ..../><!-- parent -->
</LinearLayout>
<LinearLayout ...>
<MorseKey ..../><!-- child -->
</LinearLayout>