147
|
1 |
<?xml version="1.0" encoding="utf-8"?>
|
|
2 |
|
|
3 |
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
4 |
android:orientation="vertical"
|
|
5 |
android:layout_width="fill_parent"
|
|
6 |
android:layout_height="fill_parent">
|
|
7 |
<LinearLayout
|
|
8 |
android:orientation="horizontal"
|
|
9 |
android:layout_width="fill_parent"
|
|
10 |
android:layout_height="wrap_content">
|
|
11 |
|
|
12 |
<Button android:id="@+id/SubscriptionAccept"
|
|
13 |
android:layout_width="fill_parent"
|
|
14 |
android:layout_height="fill_parent"
|
|
15 |
android:layout_weight="1"
|
|
16 |
android:text="@string/AcceptButton"/>
|
|
17 |
|
|
18 |
<Button android:id="@+id/SubscriptionRefuse"
|
|
19 |
android:layout_width="fill_parent"
|
|
20 |
android:layout_height="fill_parent"
|
|
21 |
android:layout_weight="1"
|
|
22 |
android:text="@string/RefuseButton"/>
|
|
23 |
</LinearLayout>
|
|
24 |
</LinearLayout> |