Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: res/layout/proxyconfiguration.xml

Issue 9643003: Improve manual proxy configuration (Closed)
Patch Set: Created March 6, 2013, 2:13 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: res/layout/proxyconfiguration.xml
===================================================================
--- a/res/layout/proxyconfiguration.xml
+++ b/res/layout/proxyconfiguration.xml
@@ -1,36 +1,23 @@
<?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:layout_width="fill_parent"
+ android:layout_height="fill_parent"
android:orientation="vertical"
android:paddingTop="8dip"
android:paddingLeft="16dip"
- android:paddingRight="16dip" >
+ android:paddingRight="16dip"
+ android:paddingBottom="16dip" >
<TextView
android:id="@+id/message_text"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
- <LinearLayout
- android:layout_width="fill_parent"
+ <Button
+ android:layout_width="wrap_content"
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" />
-
- <Button
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:onClick="onSettings"
- android:text="@string/opensettings" />
- </LinearLayout>
+ android:layout_gravity="center_horizontal"
+ android:onClick="onSettings"
+ android:text="@string/opensettings" />
</LinearLayout>
« no previous file with comments | « res/layout/preferences.xml ('k') | res/raw/proxysettings.txt » ('j') | res/values/strings.xml » ('J')

Powered by Google App Engine
This is Rietveld