blob: ce14af0ebe83c82971c6a668878c00091bbb1a85 [file] [log] [blame]
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<TextView android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="?myAttr"/>
<TextView android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="?otherAttr"/>
<TextView android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="<error>?unknown</error>"/>
<TextView android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="?attr/myAttr"/>
<TextView android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="<error>?attr/unknown</error>"/>
<TextView android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="<error>@attr/myAttr</error>"/>
<TextView android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="<error>@myAttr</error>"/>
<TextView android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/myDrawable"/>
<TextView android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="<error>?drawable/myDrawable</error>"/>
<TextView android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="?android:text"/>
<TextView android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="<error>?android:unknown</error>"/>
<TextView android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="?android:attr/text"/>
<TextView android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="</error>?android:attr/unknown</error>"/>
</LinearLayout>