| 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" | 
|  |