diff options
author | Zeapo <mohamed@zenadi.com> | 2014-07-26 20:44:25 +0100 |
---|---|---|
committer | Zeapo <mohamed@zenadi.com> | 2014-07-26 20:44:25 +0100 |
commit | 6532252f31d032b461d229ba3cf49245b2c5fe85 (patch) | |
tree | 68a6e605c6569194c25dc5f5530d34750730402d /app/src/main/res/layout | |
parent | bbf0175d69dbfd3d4ac04fb13d8ca322f6c4f2fb (diff) |
Authentication works correctly for clone, some cleaning is still required
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> |