blob: c26db52d8b75b1c78a8b871852ae298b1441a8c4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<Button
android:id="@+id/search"
android:layout_width="match_parent"
android:layout_height="100dip"
android:textSize="30sp"
android:text="@string/test_search"
/>
<Button
android:id="@+id/success"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:textSize="30sp"
android:text="@string/test_success" />
<Button
android:id="@+id/fail"
android:layout_width="match_parent"
android:layout_height="100dip"
android:textSize="30sp"
android:text="@string/test_fail" />
</LinearLayout>
|