summaryrefslogtreecommitdiffstats
path: root/res/layout/about_layout.xml
blob: 98cf2c12c2923b0d446304b1d34b7ac8b19ce22a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?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/aboutMore"
      android:layout_width="fill_parent"
      android:layout_height="wrap_content"
      android:text="@string/more_button" />
  <Button android:id="@+id/aboutOk"
      android:layout_width="fill_parent"
      android:layout_height="wrap_content"
      android:text="@string/dismiss_button" />
</LinearLayout>