diff options
Diffstat (limited to 'android/src/main')
| -rw-r--r-- | android/src/main/res/layout/connect.xml | 25 |
1 files changed, 21 insertions, 4 deletions
diff --git a/android/src/main/res/layout/connect.xml b/android/src/main/res/layout/connect.xml index 133a945259..44a73b01f6 100644 --- a/android/src/main/res/layout/connect.xml +++ b/android/src/main/res/layout/connect.xml @@ -237,9 +237,26 @@ android:paddingRight="8dp" style="@style/White20Button" /> - <Button android:id="@+id/action_button" - android:text="@string/connect" - style="@style/GreenButton" - /> + <LinearLayout + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:orientation="horizontal" + > + <Button android:id="@+id/action_button" + android:layout_weight="1" + android:text="@string/connect" + style="@style/GreenButton" + /> + <ImageButton android:id="@+id/reconnect_button" + android:layout_width="wrap_content" + android:layout_height="match_parent" + android:layout_weight="0" + android:layout_marginLeft="1dp" + android:paddingHorizontal="10dp" + android:background="@drawable/transparent_red_right_half_button_background" + android:visibility="gone" + android:src="@drawable/icon_reload" + /> + </LinearLayout> </LinearLayout> </LinearLayout> |
