blob: 2cf41b321a95249407b393c7c43624f8d7a448f5 [file] [log] [blame]
<?xml version="1.0" encoding="utf-8"?>
<GridLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<!-- OK -->
<TextView android:id="@+id/my_name" />
<TextView android:background="@null" />
<TextView android:text="" />
<TextView android:padding="1dp" />
<TextView android:text="@android:string/cancel" />
<TextView android:id="?myAttr"/>
<TextView android:id="?android:absListViewStyle" />
<TextView android:text="@string/test.hello_world" />
<!-- ERRORS -->
<TextView android:id="<error descr="Invalid resource reference - ''' is not a valid resource name character">?myAttr'</error>"/>
<TextView android:id="<error descr="Invalid resource reference - '+' is not a valid resource name character">@+id/g+login</error>" />
<TextView android:id="<error descr="Invalid resource reference - resource name cannot be a Java keyword (new)">@+id/new</error>" />
<TextView android:id="<error descr="Invalid resource reference - resource name cannot be a Java keyword (null)">@string/null</error>" />
<TextView android:id="<error descr="Invalid resource reference - unknown resource type strings">@strings/name</error>" />
<TextView android:id="<error descr="Invalid resource reference - missing resource name">@string/</error>" />
<TextView android:id="<error descr="Invalid resource reference - missing resource type">@</error>" />
<TextView android:id="<error descr="Invalid resource reference - missing resource type">@android:</error>" />
<TextView android:id="<error descr="Invalid resource reference - missing resource name">@android:string/</error>" />
<TextView android:text="<error descr="Invalid resource reference - ';' is not a valid resource name character">@string/test.;hello_world</error>" />
</GridLayout>