a first draft, not complete yet
This commit is contained in:
parent
499480f80b
commit
cc2883fe1b
3 changed files with 183 additions and 29 deletions
14
app/src/main/res/drawable/bottom_line.xml
Normal file
14
app/src/main/res/drawable/bottom_line.xml
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
|
<item>
|
||||||
|
<shape android:shape="rectangle">
|
||||||
|
<solid android:color="@android:color/holo_orange_dark"/>
|
||||||
|
</shape>
|
||||||
|
</item>
|
||||||
|
|
||||||
|
<item android:bottom="2dp">
|
||||||
|
<shape android:shape="rectangle">
|
||||||
|
<solid android:color="#FFFFFF" />
|
||||||
|
</shape>
|
||||||
|
</item>
|
||||||
|
</layer-list>
|
|
@ -1,46 +1,175 @@
|
||||||
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
xmlns:tools="http://schemas.android.com/tools"
|
xmlns:tools="http://schemas.android.com/tools"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="match_parent"
|
||||||
android:paddingLeft="@dimen/activity_horizontal_margin"
|
android:paddingLeft="@dimen/activity_horizontal_margin"
|
||||||
android:paddingRight="@dimen/activity_horizontal_margin"
|
android:paddingRight="@dimen/activity_horizontal_margin"
|
||||||
android:paddingTop="@dimen/activity_vertical_margin"
|
android:paddingTop="@dimen/activity_vertical_margin"
|
||||||
android:paddingBottom="@dimen/activity_vertical_margin"
|
android:paddingBottom="@dimen/activity_vertical_margin"
|
||||||
tools:context="com.zeapo.pwdstore.GitHandler">
|
tools:context="com.zeapo.pwdstore.GitHandler"
|
||||||
|
android:orientation="vertical">
|
||||||
|
|
||||||
<LinearLayout
|
<TextView
|
||||||
android:orientation="vertical"
|
|
||||||
android:layoutDirection="ltr"
|
|
||||||
android:layout_width="fill_parent"
|
android:layout_width="fill_parent"
|
||||||
android:layout_height="match_parent">
|
android:layout_height="wrap_content"
|
||||||
<LinearLayout
|
android:text="@string/server_name"
|
||||||
|
android:textStyle="bold"
|
||||||
|
style="@android:style/TextAppearance.Large"
|
||||||
|
android:gravity="left"
|
||||||
|
android:paddingBottom="6dp"
|
||||||
|
android:textColor="@android:color/holo_orange_dark"
|
||||||
|
android:background="@drawable/bottom_line"/>
|
||||||
|
|
||||||
|
<RelativeLayout
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:orientation="horizontal">
|
android:orientation="horizontal"
|
||||||
|
android:layout_gravity="center_vertical">
|
||||||
|
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:text="@string/server_protocol"
|
||||||
|
android:id="@+id/label_server_protocol"
|
||||||
|
android:layout_centerVertical="true"
|
||||||
|
android:layout_alignParentLeft="true"
|
||||||
|
android:layout_alignParentStart="true" />
|
||||||
|
|
||||||
<Spinner
|
<Spinner
|
||||||
android:id="@+id/clone_protocol"
|
android:id="@+id/clone_protocol"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_toEndOf="@+id/label_server_protocol"
|
||||||
|
android:layout_toRightOf="@+id/label_server_protocol" />
|
||||||
|
</RelativeLayout>
|
||||||
|
|
||||||
|
<RelativeLayout
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:orientation="horizontal"
|
||||||
|
android:layout_gravity="center_vertical">
|
||||||
|
|
||||||
|
<TextView
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"></Spinner>
|
android:layout_height="wrap_content"
|
||||||
|
android:text="@string/server_url"
|
||||||
|
android:id="@+id/label_server_url"
|
||||||
|
android:layout_centerVertical="true"
|
||||||
|
android:layout_alignParentLeft="true"
|
||||||
|
android:layout_alignParentStart="true" />
|
||||||
|
|
||||||
|
<EditText
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:hint="@string/server_url_hint"
|
||||||
|
android:id="@+id/server_url"
|
||||||
|
android:layout_toEndOf="@+id/label_server_url"
|
||||||
|
android:layout_toRightOf="@+id/label_server_url"
|
||||||
|
android:layout_toLeftOf="@+id/label_server_port"
|
||||||
|
android:layout_toStartOf="@+id/label_server_port" />
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:text=":"
|
||||||
|
android:id="@+id/label_server_port"
|
||||||
|
android:layout_centerVertical="true"
|
||||||
|
android:layout_toLeftOf="@+id/server_port"
|
||||||
|
android:layout_toStartOf="@+id/server_port" />
|
||||||
|
<EditText
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:hint="@string/server_port_hint"
|
||||||
|
android:id="@+id/server_port"
|
||||||
|
android:layout_alignParentRight="true"/>
|
||||||
|
|
||||||
|
</RelativeLayout>
|
||||||
|
|
||||||
|
<RelativeLayout
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:orientation="horizontal"
|
||||||
|
android:layout_gravity="center_vertical">
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:text="@string/server_path"
|
||||||
|
android:id="@+id/label_server_path"
|
||||||
|
android:layout_centerVertical="true"
|
||||||
|
android:layout_alignParentLeft="true"
|
||||||
|
android:layout_alignParentStart="true" />
|
||||||
|
|
||||||
|
<EditText
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:hint="@string/server_path_hint"
|
||||||
|
android:layout_toEndOf="@+id/label_server_path"
|
||||||
|
android:layout_toRightOf="@+id/label_server_path"
|
||||||
|
android:layout_alignParentRight="true"
|
||||||
|
android:layout_alignParentEnd="true"/>
|
||||||
|
</RelativeLayout>
|
||||||
|
<RelativeLayout
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:orientation="horizontal"
|
||||||
|
android:layout_gravity="center_vertical">
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:text="@string/server_user"
|
||||||
|
android:id="@+id/label_server_user"
|
||||||
|
android:layout_centerVertical="true"
|
||||||
|
android:layout_alignParentLeft="true"
|
||||||
|
android:layout_alignParentStart="true" />
|
||||||
|
|
||||||
|
<EditText
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:hint="@string/server_user_hint"
|
||||||
|
android:id="@+id/editText"
|
||||||
|
android:layout_toEndOf="@+id/label_server_user"
|
||||||
|
android:layout_toRightOf="@+id/label_server_user"
|
||||||
|
android:layout_alignParentRight="true"
|
||||||
|
android:layout_alignParentEnd="true"/>
|
||||||
|
</RelativeLayout>
|
||||||
|
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:layout_width="fill_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:text="@string/server_resulting_url"
|
||||||
|
android:textStyle="bold"
|
||||||
|
style="@android:style/TextAppearance.Large"
|
||||||
|
android:gravity="left"
|
||||||
|
android:paddingBottom="6dp"
|
||||||
|
android:textColor="@android:color/holo_orange_dark"
|
||||||
|
android:background="@drawable/bottom_line"/>
|
||||||
|
|
||||||
<EditText
|
<EditText
|
||||||
android:hint="Repository URI"
|
android:hint="Repository URI"
|
||||||
android:id="@+id/clone_uri"
|
android:id="@+id/clone_uri"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:inputType="textWebEmailAddress"/>
|
android:inputType="textWebEmailAddress"/>
|
||||||
</LinearLayout>
|
|
||||||
|
|
||||||
<Spinner
|
<Spinner
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:id="@+id/connection_mode"></Spinner>
|
android:id="@+id/connection_mode"
|
||||||
|
android:layout_column="1"
|
||||||
|
android:layout_row="2"/>
|
||||||
|
|
||||||
<Button
|
<Button
|
||||||
android:id="@+id/clone_button"
|
android:id="@+id/clone_button"
|
||||||
android:text="Clone!"
|
android:text="Clone!"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:onClick="cloneRepository"/>
|
android:onClick="cloneRepository"
|
||||||
|
android:layout_column="1"
|
||||||
|
android:layout_row="4"/>
|
||||||
|
|
||||||
|
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
|
||||||
|
|
||||||
</RelativeLayout>
|
|
||||||
|
|
|
@ -18,7 +18,18 @@
|
||||||
<string name="clone_fragment_text">Welcome to Password Store\n\n In this screen you can either create a new repository or clone your git repository onto your device.</string>
|
<string name="clone_fragment_text">Welcome to Password Store\n\n In this screen you can either create a new repository or clone your git repository onto your device.</string>
|
||||||
<string name="clone">Clone existing</string>
|
<string name="clone">Clone existing</string>
|
||||||
<string name="initialize">Create new</string>
|
<string name="initialize">Create new</string>
|
||||||
<string name="hello_blank_fragment">Hello blank fragment</string>
|
|
||||||
|
<string name="server_name">Server</string>
|
||||||
|
<string name="server_protocol">Protocol</string>
|
||||||
|
<string name="server_url">Server URL</string>
|
||||||
|
<string name="server_url_hint">server.com</string>
|
||||||
|
<string name="server_port_hint">22</string>
|
||||||
|
<string name="server_path">Repo path</string>
|
||||||
|
<string name="server_path_hint">/path/to/pass</string>
|
||||||
|
<string name="server_user">Username</string>
|
||||||
|
<string name="server_user_hint">git_username</string>
|
||||||
|
|
||||||
|
<string name="server_resulting_url">Resulting URL</string>
|
||||||
|
|
||||||
<!-- PGP Handler -->
|
<!-- PGP Handler -->
|
||||||
<string name="title_activity_pgp_handler">PgpHandler</string>
|
<string name="title_activity_pgp_handler">PgpHandler</string>
|
||||||
|
|
Loading…
Reference in a new issue