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

Unified Diff: res/layout/preferences.xml

Issue 9433002: ABP/Android Proxy settings user helper (Closed)
Patch Set: Created Feb. 20, 2013, 8:49 a.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/preferences.xml
===================================================================
--- a/res/layout/preferences.xml
+++ b/res/layout/preferences.xml
@@ -4,12 +4,29 @@
android:layout_height="fill_parent"
android:orientation="vertical" >
- <TextView
- android:id="@+id/txt_configuration"
+ <LinearLayout
+ android:id="@+id/grp_configuration"
style="@style/MessageText"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
- android:visibility="gone" />
+ android:orientation="horizontal"
+ android:visibility="gone" >
+
+ <TextView
+ android:id="@+id/txt_configuration"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:layout_weight="1" />
+
+ <Button
+ android:id="@+id/btn_configuration"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_gravity="center_vertical|right"
+ android:layout_weight="0"
+ android:onClick="showProxySettings"
+ android:text="@string/showme" />
+ </LinearLayout>
<ListView
android:id="@android:id/list"

Powered by Google App Engine
This is Rietveld