Index: res/layout/proxyconfiguration.xml |
=================================================================== |
new file mode 100644 |
--- /dev/null |
+++ b/res/layout/proxyconfiguration.xml |
@@ -0,0 +1,36 @@ |
+<?xml version="1.0" encoding="utf-8"?> |
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
+ android:layout_width="wrap_content" |
+ android:layout_height="wrap_content" |
+ android:orientation="vertical" |
+ android:paddingTop="8dip" |
+ android:paddingLeft="16dip" |
+ android:paddingRight="16dip" > |
+ |
+ <TextView |
+ android:id="@+id/message_text" |
+ android:layout_width="fill_parent" |
+ android:layout_height="wrap_content" /> |
+ |
+ <LinearLayout |
+ android:layout_width="fill_parent" |
+ android:layout_height="wrap_content" |
+ android:gravity="center" |
+ android:orientation="horizontal" |
+ android:paddingBottom="16dip"> |
+ |
+ <Button |
+ android:layout_width="wrap_content" |
+ android:layout_height="wrap_content" |
+ android:onClick="onGotit" |
+ android:paddingRight="8dip" |
+ 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
|
+ |
+ <Button |
+ android:layout_width="wrap_content" |
+ android:layout_height="wrap_content" |
+ android:onClick="onSettings" |
+ android:text="@string/opensettings" /> |
+ </LinearLayout> |
+ |
+</LinearLayout> |