diff options
Diffstat (limited to 'app/src/main/res/layout')
-rw-r--r-- | app/src/main/res/layout/activity_git_clone.xml | 22 | ||||
-rw-r--r-- | app/src/main/res/layout/activity_pwdstore.xml | 6 |
2 files changed, 13 insertions, 15 deletions
diff --git a/app/src/main/res/layout/activity_git_clone.xml b/app/src/main/res/layout/activity_git_clone.xml index 01b18d26..6587524b 100644 --- a/app/src/main/res/layout/activity_git_clone.xml +++ b/app/src/main/res/layout/activity_git_clone.xml @@ -13,21 +13,25 @@ android:layoutDirection="ltr" android:layout_width="fill_parent" android:layout_height="match_parent"> - <EditText - android:hint="Repository" - android:id="@+id/clone_uri" + <LinearLayout android:layout_width="match_parent" - android:layout_height="wrap_content" /> + android:layout_height="wrap_content"> + <Spinner + android:id="@+id/clone_protocol" + android:layout_width="wrap_content" + android:layout_height="wrap_content"></Spinner> + <EditText + android:hint="Repository URI" + android:id="@+id/clone_uri" + android:layout_width="match_parent" + android:layout_height="wrap_content" /> + </LinearLayout> + <Spinner android:layout_width="match_parent" android:layout_height="wrap_content" android:id="@+id/connection_mode"></Spinner> - <LinearLayout - android:id="@+id/config_layout" - android:layout_width="match_parent" - android:layout_height="wrap_content"></LinearLayout> - <Button android:id="@+id/clone_button" android:text="Clone!" diff --git a/app/src/main/res/layout/activity_pwdstore.xml b/app/src/main/res/layout/activity_pwdstore.xml index 1420c906..a59ed394 100644 --- a/app/src/main/res/layout/activity_pwdstore.xml +++ b/app/src/main/res/layout/activity_pwdstore.xml @@ -8,10 +8,4 @@ android:paddingBottom="@dimen/activity_vertical_margin" tools:context=".pwdstore"> - <Button - android:text="@string/clone" - android:layout_width="match_parent" - android:layout_height="wrap_content" - android:onClick="getClone"/> - </RelativeLayout> |