Is it possible to find a view by id if it's an ?:
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<include
android:id="@+id/foo"
layout="@layout/test" />
...
View view = findViewById(R.id.foo);
What is "view" in this case? Is it a view? Does it resolve to whatever the top-level element of "layout/test" is?
Thanks