diff options
author | Arne Schwabe <arne@rfc2549.org> | 2021-10-03 18:26:55 +0200 |
---|---|---|
committer | Arne Schwabe <arne@rfc2549.org> | 2021-10-03 18:26:55 +0200 |
commit | cb2323d7c5e9e54d8f5eb39e6e798e5c025e0640 (patch) | |
tree | 97fd4ca161e5123e4234bbfbfc13882b5297fd1b /remoteExample/src/main/res/layout | |
parent | 164d6d6cca7f045db347b55c6412f279e060cbef (diff) |
Fix various issues in remoteExample
Diffstat (limited to 'remoteExample/src/main/res/layout')
-rw-r--r-- | remoteExample/src/main/res/layout/fragment_main.xml | 30 |
1 files changed, 20 insertions, 10 deletions
diff --git a/remoteExample/src/main/res/layout/fragment_main.xml b/remoteExample/src/main/res/layout/fragment_main.xml index eda36740..0cc953f6 100644 --- a/remoteExample/src/main/res/layout/fragment_main.xml +++ b/remoteExample/src/main/res/layout/fragment_main.xml @@ -63,23 +63,33 @@ android:layout_toRightOf="@+id/startVPN" android:text="@string/disconnect" /> - <Button + <Button android:id="@+id/startembedded" style="?android:attr/buttonStyleSmall" android:layout_width="wrap_content" android:layout_height="wrap_content" - android:layout_alignParentLeft="true" android:layout_below="@+id/getMyIP" + android:layout_alignParentLeft="true" android:text="@string/start_embedded" /> <Button - android:id="@+id/addNewProfile" - style="?android:attr/buttonStyleSmall" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:text="@string/addNew" - android:layout_alignTop="@+id/startembedded" - android:layout_toRightOf="@+id/startembedded" - android:layout_toEndOf="@+id/startembedded" /> + android:id="@+id/addNewProfile" + style="?android:attr/buttonStyleSmall" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_alignTop="@+id/startembedded" + android:layout_toEndOf="@+id/startembedded" + android:layout_toRightOf="@+id/startembedded" + android:text="@string/addNew" /> + + <Button + android:id="@+id/addNewProfileEdit" + style="?android:attr/buttonStyleSmall" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_alignTop="@+id/addNewProfile" + android:layout_toEndOf="@+id/addNewProfile" + android:layout_toRightOf="@+id/addNewProfile" + android:text="@string/addNewEdit" /> </RelativeLayout> |