vote up 1 vote down star

I have a res/layout/main.xml including these elements and others:

<some.package.MyCustomView android:id="@+id/foo" (some other params) />
<TextView android:id="@+id/boring" (some other params) />

In my Activity's onCreate, I do this:

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

The other elements are found successfully, but foo comes back null. MyCustomView has a constructor MyCustomView(Context c, AttributeSet a) and a Log.d(...) at the end of that constructor appears successfully in logcat just before the "epic fail".

Why is foo null?

flag

1 Answer

vote up 2 vote down check

Because in the constructor, I had super(context) instead of super(context, attrs).

Makes sense, if you don't pass in the attributes, such as the id, then the view will have no id and therefore not be findable using that id. :-)

link|flag
Always nice to be able to answer your own questions :) Make sure to mark yours as the accepted answer too. – MattC Nov 7 at 5:47
Indeed. Will do so when SO lets me ("You can accept your own answer in 2 days.") – cmb Nov 7 at 10:17
2  
Also, shouldn't you lines like (MyCustomView) foo = findViewById(R.id.foo); be MyCustomView foo = (MyCustomView) findViewById(R.id.foo);? – fiXedd Nov 7 at 12:23
Yes, thanks. Edited. – cmb Nov 8 at 1:21

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.