| Left: | ||
| Right: |
| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <?xml version="1.0" encoding="utf-8"?> | |
| 2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | |
| 3 android:layout_width="wrap_content" | |
| 4 android:layout_height="wrap_content" | |
| 5 android:orientation="vertical" | |
| 6 android:paddingTop="8dip" | |
| 7 android:paddingLeft="16dip" | |
| 8 android:paddingRight="16dip" > | |
| 9 | |
| 10 <TextView | |
| 11 android:id="@+id/message_text" | |
| 12 android:layout_width="fill_parent" | |
| 13 android:layout_height="wrap_content" /> | |
| 14 | |
| 15 <LinearLayout | |
| 16 android:layout_width="fill_parent" | |
| 17 android:layout_height="wrap_content" | |
| 18 android:gravity="center" | |
| 19 android:orientation="horizontal" | |
| 20 android:paddingBottom="16dip"> | |
| 21 | |
| 22 <Button | |
| 23 android:layout_width="wrap_content" | |
| 24 android:layout_height="wrap_content" | |
| 25 android:onClick="onGotit" | |
| 26 android:paddingRight="8dip" | |
| 27 android:text="@string/gotit" /> | |
|
Felix Dahlke
2013/02/22 11:01:54
That button is a bit confusing in fact. Shouldn't
Andrey Novikov
2013/02/22 11:32:57
No. It does not cancel anything, it just confirms
Felix Dahlke
2013/02/22 11:39:35
I think it does. You either go forward with the pr
| |
| 28 | |
| 29 <Button | |
| 30 android:layout_width="wrap_content" | |
| 31 android:layout_height="wrap_content" | |
| 32 android:onClick="onSettings" | |
| 33 android:text="@string/opensettings" /> | |
| 34 </LinearLayout> | |
| 35 | |
| 36 </LinearLayout> | |
| OLD | NEW |