findViewById()在布局XML中为自定义组件返回null,而不是其他组件

前端之家收集整理的这篇文章主要介绍了findViewById()在布局XML中为自定义组件返回null,而不是其他组件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个res / layout / main.xml包括这些元素和其他: @H_403_1@<some.package.MyCustomView android:id="@+id/foo" (some other params) /> <TextView android:id="@+id/boring" (some other params) />

在我的Activity的onCreate,我这样做:

@H_403_1@setContentView(R.layout.main); TextView boring = (TextView) findViewById(R.id.boring); // ...find other elements... MyCustomView foo = (MyCustomView) findViewById(R.id.foo); if (foo == null) { Log.d(TAG,"epic fail"); }

其他元素成功找到,但foo回到null。 MyCustomView有一个构造函数MyCustomView(Context c,AttributeSet a)和一个Log.d(…)在构造函数的末尾成功地出现在logcat就在“史诗失败”之前。

为什么是foo null?

因为在构造函数中,我有super(context)而不是super(context,attrs)。

有意义的,如果你不传入的属性,如id,那么视图将没有id,因此不能找到使用该id。 原文链接:https://www.f2er.com/xml/294093.html

猜你在找的XML相关文章