blob: f1ab2c78df1c6f309cd224ff847ba6ff6ef3ba76 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="10dp"
android:orientation="vertical">
<TextView android:id="@+id/aboutText"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/about_text" />
<Button android:id="@+id/aboutOk"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/ok_button" />
</LinearLayout>
|