2020-03-15 16:09:26 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2019-06-03 23:25:05 +02:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:orientation="vertical"
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2020-03-04 20:37:28 +01:00
|
|
|
android:background="?attr/primaryBackgroundColor">
|
2019-06-03 23:25:05 +02:00
|
|
|
|
|
|
|
<com.google.android.material.appbar.AppBarLayout
|
2020-03-28 13:44:45 +01:00
|
|
|
android:id="@+id/appbar"
|
2019-06-03 23:25:05 +02:00
|
|
|
android:layout_width="match_parent"
|
2020-03-28 13:44:45 +01:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:theme="@style/Widget.AppCompat.SearchView">
|
2019-06-03 23:25:05 +02:00
|
|
|
|
2020-08-08 17:43:14 +02:00
|
|
|
<com.google.android.material.appbar.MaterialToolbar
|
2019-06-03 23:25:05 +02:00
|
|
|
android:id="@+id/toolbar"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2020-08-08 17:43:14 +02:00
|
|
|
android:background="?attr/primaryBackgroundColor">
|
2019-06-03 23:25:05 +02:00
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/close"
|
2020-04-28 14:39:41 +02:00
|
|
|
android:layout_width="@dimen/close_button_size"
|
|
|
|
android:layout_height="@dimen/close_button_size"
|
2019-06-03 23:25:05 +02:00
|
|
|
android:layout_marginRight="15dp"
|
|
|
|
android:layout_marginLeft="15dp"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:contentDescription="@string/close"
|
|
|
|
android:src="@drawable/ic_close" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/toolbar_title"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:text="@string/createRelease"
|
2020-03-04 20:37:28 +01:00
|
|
|
android:textColor="?attr/primaryTextColor"
|
2019-06-03 23:25:05 +02:00
|
|
|
android:maxLines="1"
|
|
|
|
android:textSize="20sp" />
|
|
|
|
|
2020-08-08 17:43:14 +02:00
|
|
|
</com.google.android.material.appbar.MaterialToolbar>
|
2019-06-03 23:25:05 +02:00
|
|
|
|
|
|
|
</com.google.android.material.appbar.AppBarLayout>
|
|
|
|
|
|
|
|
<ScrollView
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2020-03-05 16:23:15 +01:00
|
|
|
android:background="?attr/primaryBackgroundColor">
|
2019-06-03 23:25:05 +02:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2020-08-08 17:43:14 +02:00
|
|
|
android:padding="16dp"
|
2019-06-03 23:25:05 +02:00
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/releaseTagNameText"
|
2020-03-04 20:37:28 +01:00
|
|
|
android:textColor="?attr/primaryTextColor"
|
2020-03-15 16:09:26 +01:00
|
|
|
android:textSize="16sp" />
|
2019-06-03 23:25:05 +02:00
|
|
|
|
|
|
|
<EditText
|
|
|
|
android:id="@+id/releaseTagName"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="10dp"
|
|
|
|
android:padding="10dp"
|
|
|
|
android:textSize="14sp"
|
|
|
|
tools:ignore="Autofill"
|
|
|
|
android:inputType="text"
|
|
|
|
android:labelFor="@+id/releaseTagName"
|
|
|
|
android:background="@drawable/shape_inputs"
|
2020-03-04 20:37:28 +01:00
|
|
|
android:textColor="?attr/inputTextColor"
|
2020-03-15 16:09:26 +01:00
|
|
|
android:textColorHint="?attr/hintColor"
|
2020-08-08 17:43:14 +02:00
|
|
|
android:textColorHighlight="?attr/primaryTextColor" />
|
2019-06-03 23:25:05 +02:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/releaseBranchText"
|
2020-03-05 16:23:15 +01:00
|
|
|
android:textColor="?attr/primaryTextColor"
|
2019-06-03 23:25:05 +02:00
|
|
|
android:layout_marginTop="10dp"
|
|
|
|
android:textSize="16sp" />
|
|
|
|
|
2020-03-05 16:23:15 +01:00
|
|
|
<RelativeLayout
|
2019-06-03 23:25:05 +02:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2020-03-05 16:23:15 +01:00
|
|
|
android:background="@drawable/shape_dropdown"
|
2019-06-03 23:25:05 +02:00
|
|
|
android:layout_marginTop="10dp"
|
2020-08-08 17:43:14 +02:00
|
|
|
android:layout_marginBottom="10dp">
|
2020-03-05 16:23:15 +01:00
|
|
|
|
|
|
|
<Spinner
|
|
|
|
android:id="@+id/releaseBranch"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:spinnerMode="dropdown"
|
|
|
|
android:layout_marginTop="5dp"
|
|
|
|
android:layout_marginBottom="5dp"
|
|
|
|
android:paddingLeft="5dp"
|
|
|
|
android:paddingRight="5dp"
|
|
|
|
android:paddingStart="5dp" />
|
|
|
|
|
|
|
|
</RelativeLayout>
|
2019-06-03 23:25:05 +02:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/releaseTitleText"
|
2020-03-04 20:37:28 +01:00
|
|
|
android:textColor="?attr/primaryTextColor"
|
2019-06-03 23:25:05 +02:00
|
|
|
android:textSize="16sp"
|
2020-03-15 16:09:26 +01:00
|
|
|
android:layout_marginTop="10dp" />
|
2019-06-03 23:25:05 +02:00
|
|
|
|
|
|
|
<EditText
|
|
|
|
android:id="@+id/releaseTitle"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="10dp"
|
|
|
|
android:padding="10dp"
|
|
|
|
android:textSize="14sp"
|
|
|
|
tools:ignore="Autofill"
|
|
|
|
android:inputType="text"
|
|
|
|
android:labelFor="@+id/releaseTitle"
|
|
|
|
android:background="@drawable/shape_inputs"
|
2020-03-04 20:37:28 +01:00
|
|
|
android:textColor="?attr/inputTextColor"
|
2020-03-15 16:09:26 +01:00
|
|
|
android:textColorHint="?attr/hintColor"
|
2020-08-08 17:43:14 +02:00
|
|
|
android:textColorHighlight="?attr/primaryTextColor" />
|
2019-06-03 23:25:05 +02:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/releaseContentText"
|
2020-03-04 20:37:28 +01:00
|
|
|
android:textColor="?attr/primaryTextColor"
|
2019-06-03 23:25:05 +02:00
|
|
|
android:textSize="16sp"
|
2020-03-15 16:09:26 +01:00
|
|
|
android:layout_marginTop="10dp" />
|
2019-06-03 23:25:05 +02:00
|
|
|
|
|
|
|
<EditText
|
|
|
|
android:id="@+id/releaseContent"
|
|
|
|
android:layout_width="match_parent"
|
2020-07-19 15:44:08 +02:00
|
|
|
android:layout_height="240dp"
|
2019-06-03 23:25:05 +02:00
|
|
|
android:layout_marginTop="10dp"
|
|
|
|
android:padding="10dp"
|
|
|
|
android:maxLines="8"
|
|
|
|
android:minLines="6"
|
|
|
|
tools:ignore="Autofill"
|
|
|
|
android:labelFor="@+id/releaseContent"
|
|
|
|
android:scrollbars="vertical"
|
|
|
|
android:gravity="top|start"
|
|
|
|
android:textSize="14sp"
|
2020-03-04 20:37:28 +01:00
|
|
|
android:background="@drawable/shape_inputs"
|
|
|
|
android:textColor="?attr/inputTextColor"
|
2020-03-15 16:09:26 +01:00
|
|
|
android:textColorHint="?attr/hintColor"
|
2020-03-04 20:37:28 +01:00
|
|
|
android:textColorHighlight="?attr/primaryTextColor"
|
|
|
|
android:inputType="textCapSentences|textMultiLine" />
|
2019-06-03 23:25:05 +02:00
|
|
|
|
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/releaseType"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/releaseTypeText"
|
2020-06-01 17:53:56 +02:00
|
|
|
android:checked="false"
|
2019-06-03 23:25:05 +02:00
|
|
|
android:textSize="16sp"
|
|
|
|
android:layout_marginTop="10dp"
|
2020-03-04 20:37:28 +01:00
|
|
|
android:textColor="?attr/primaryTextColor"/>
|
2019-06-03 23:25:05 +02:00
|
|
|
|
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/releaseDraft"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/releaseDraftText"
|
2020-06-01 17:53:56 +02:00
|
|
|
android:checked="false"
|
2019-06-03 23:25:05 +02:00
|
|
|
android:textSize="16sp"
|
|
|
|
android:layout_marginTop="10dp"
|
2020-03-04 20:37:28 +01:00
|
|
|
android:textColor="?attr/primaryTextColor"/>
|
2019-06-03 23:25:05 +02:00
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/createNewRelease"
|
|
|
|
android:gravity="center"
|
|
|
|
android:layout_gravity="end"
|
|
|
|
android:layout_marginTop="20dp"
|
|
|
|
android:layout_width="wrap_content"
|
2020-08-06 17:16:51 +02:00
|
|
|
android:layout_height="60dp"
|
2019-06-03 23:25:05 +02:00
|
|
|
android:text="@string/newCreateButtonCopy"
|
|
|
|
android:textColor="@color/btnTextColor" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</ScrollView>
|
|
|
|
|
2020-06-01 17:53:56 +02:00
|
|
|
</LinearLayout>
|