xref: /aosp_15_r20/external/bazelbuild-rules_android/src/java/com/example/sampleapp/res/layout/basic_activity.xml (revision 9e965d6fece27a77de5377433c2f7e6999b8cc0b)
1<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
2              android:layout_width="match_parent"
3              android:layout_height="match_parent"
4              android:orientation="vertical" >
5
6    <TextView
7        android:id="@+id/text_hello"
8        android:text="@string/hello_world"
9        android:layout_width="wrap_content"
10        android:layout_height="wrap_content" />
11
12</LinearLayout>
13