2019-11-27 16:09:26 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-10-20 20:09:07 +02:00
|
|
|
<LinearLayout android:layout_width="match_parent"
|
2019-11-27 16:09:26 +01:00
|
|
|
android:layout_height="match_parent"
|
2020-10-20 20:09:07 +02:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2019-11-27 16:09:26 +01:00
|
|
|
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-11-27 16:09:26 +01:00
|
|
|
|
|
|
|
<com.google.android.material.appbar.AppBarLayout
|
2020-03-28 13:44:45 +01:00
|
|
|
android:id="@+id/appbar"
|
2019-11-27 16:09:26 +01: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-11-27 16:09:26 +01:00
|
|
|
|
2020-08-08 17:43:14 +02:00
|
|
|
<com.google.android.material.appbar.MaterialToolbar
|
2019-11-27 16:09:26 +01: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-11-27 16:09:26 +01: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-11-27 16:09:26 +01:00
|
|
|
android:layout_marginRight="15dp"
|
|
|
|
android:layout_marginLeft="15dp"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:contentDescription="@string/close"
|
|
|
|
android:src="@drawable/ic_close" />
|
|
|
|
|
|
|
|
<HorizontalScrollView
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:id="@+id/replyToPRNavHeader"
|
|
|
|
android:foregroundGravity="right"
|
|
|
|
android:layout_marginEnd="25dp"
|
|
|
|
android:layout_marginStart="0dp"
|
|
|
|
android:scrollbarThumbHorizontal="@android:color/transparent"
|
|
|
|
android:fillViewport="true">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/toolbar_title"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
2020-03-04 20:37:28 +01:00
|
|
|
android:textColor="?attr/primaryTextColor"
|
2019-11-27 16:09:26 +01:00
|
|
|
android:maxLines="1"
|
|
|
|
android:textSize="20sp" />
|
|
|
|
|
|
|
|
</HorizontalScrollView>
|
|
|
|
|
2020-08-08 17:43:14 +02:00
|
|
|
</com.google.android.material.appbar.MaterialToolbar>
|
2019-11-27 16:09:26 +01:00
|
|
|
|
|
|
|
</com.google.android.material.appbar.AppBarLayout>
|
|
|
|
|
|
|
|
<ScrollView
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2020-03-14 15:22:50 +01:00
|
|
|
android:background="?attr/primaryBackgroundColor">
|
2019-11-27 16:09:26 +01:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2020-08-08 17:43:14 +02:00
|
|
|
android:padding="16dp"
|
2019-11-27 16:09:26 +01:00
|
|
|
android:orientation="vertical">
|
|
|
|
|
2020-10-20 20:09:07 +02:00
|
|
|
<com.google.android.material.textfield.TextInputLayout
|
|
|
|
android:id="@+id/mergeTitleLayout"
|
2020-04-11 22:20:26 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2020-10-20 20:09:07 +02:00
|
|
|
app:boxBackgroundColor="?attr/inputBackgroundColor"
|
2020-04-11 22:20:26 +02:00
|
|
|
android:textColorHint="?attr/hintColor"
|
2020-10-20 20:09:07 +02:00
|
|
|
app:hintTextColor="?attr/hintColor"
|
|
|
|
app:boxStrokeErrorColor="@color/darkRed"
|
|
|
|
android:layout_marginTop="8dp"
|
|
|
|
android:layout_marginBottom="8dp"
|
|
|
|
app:endIconMode="clear_text"
|
|
|
|
app:endIconTint="?attr/iconsColor"
|
|
|
|
app:counterEnabled="true"
|
|
|
|
app:counterMaxLength="255"
|
|
|
|
app:counterTextColor="?attr/inputTextColor"
|
|
|
|
android:hint="@string/mergePullRequestButtonText">
|
|
|
|
|
|
|
|
<com.google.android.material.textfield.TextInputEditText
|
|
|
|
android:id="@+id/mergeTitle"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:textColor="?attr/inputTextColor"
|
|
|
|
android:textColorHighlight="?attr/hintColor"
|
|
|
|
android:textColorHint="?attr/hintColor"
|
|
|
|
android:textSize="16sp" />
|
|
|
|
|
|
|
|
</com.google.android.material.textfield.TextInputLayout>
|
2020-04-11 22:20:26 +02:00
|
|
|
|
2020-10-20 20:09:07 +02:00
|
|
|
<com.google.android.material.textfield.TextInputLayout
|
|
|
|
android:id="@+id/mergeDescriptionLayout"
|
2019-11-27 16:09:26 +01:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2020-10-20 20:09:07 +02:00
|
|
|
app:boxBackgroundColor="?attr/inputBackgroundColor"
|
2020-04-11 22:20:26 +02:00
|
|
|
android:textColorHint="?attr/hintColor"
|
2020-10-20 20:09:07 +02:00
|
|
|
app:hintTextColor="?attr/hintColor"
|
|
|
|
app:boxStrokeErrorColor="@color/darkRed"
|
|
|
|
android:layout_marginTop="8dp"
|
|
|
|
android:layout_marginBottom="8dp"
|
|
|
|
app:endIconMode="clear_text"
|
|
|
|
app:endIconTint="?attr/iconsColor"
|
|
|
|
android:hint="@string/mergeCommentText">
|
|
|
|
|
|
|
|
<com.google.android.material.textfield.TextInputEditText
|
|
|
|
android:id="@+id/mergeDescription"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="140dp"
|
|
|
|
android:textColor="?attr/inputTextColor"
|
|
|
|
android:textColorHighlight="?attr/hintColor"
|
|
|
|
android:textColorHint="?attr/hintColor"
|
|
|
|
android:gravity="top|start"
|
|
|
|
android:textSize="16sp" />
|
|
|
|
|
|
|
|
</com.google.android.material.textfield.TextInputLayout>
|
|
|
|
|
|
|
|
<com.google.android.material.textfield.TextInputLayout
|
|
|
|
android:id="@+id/mergeSpinnerLayout"
|
|
|
|
android:layout_width="match_parent"
|
2020-04-11 22:20:26 +02:00
|
|
|
android:layout_height="wrap_content"
|
2020-10-20 20:09:07 +02:00
|
|
|
app:boxBackgroundColor="?attr/inputBackgroundColor"
|
|
|
|
android:textColorHint="?attr/hintColor"
|
|
|
|
app:hintTextColor="?attr/hintColor"
|
|
|
|
android:layout_marginTop="8dp"
|
|
|
|
android:layout_marginBottom="8dp"
|
|
|
|
android:hint="@string/mergeStrategy"
|
|
|
|
app:endIconTint="?attr/iconsColor"
|
|
|
|
style="@style/Widget.MaterialComponents.TextInputLayout.FilledBox.ExposedDropdownMenu">
|
|
|
|
|
|
|
|
<AutoCompleteTextView
|
2020-04-11 22:20:26 +02:00
|
|
|
android:id="@+id/mergeSpinner"
|
2020-10-20 20:09:07 +02:00
|
|
|
android:layout_width="match_parent"
|
2020-04-11 22:20:26 +02:00
|
|
|
android:layout_height="wrap_content"
|
2020-10-20 20:09:07 +02:00
|
|
|
android:inputType="none"
|
|
|
|
android:textColor="?attr/inputTextColor"
|
|
|
|
android:labelFor="@+id/mergeSpinner"
|
|
|
|
android:textSize="16sp" />
|
2020-04-11 22:20:26 +02:00
|
|
|
|
2020-10-20 20:09:07 +02:00
|
|
|
</com.google.android.material.textfield.TextInputLayout>
|
2019-11-27 16:09:26 +01:00
|
|
|
|
2020-05-22 00:49:09 +02:00
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/deleteBranch"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/deleteBranchAfterMerge"
|
|
|
|
android:checked="false"
|
|
|
|
android:textSize="16sp"
|
|
|
|
android:layout_marginTop="10dp"
|
|
|
|
android:visibility="gone"
|
|
|
|
android:textColor="?attr/primaryTextColor"/>
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/deleteBranchForkInfo"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/deleteBranchForkInfo"
|
|
|
|
android:textColor="?attr/hintColor"
|
|
|
|
android:textSize="12sp"
|
|
|
|
android:gravity="start"
|
|
|
|
android:layout_marginTop="0dp" />
|
|
|
|
|
2019-11-27 16:09:26 +01:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/mergeInfo"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/mergeNoteText"
|
2020-04-11 22:20:26 +02:00
|
|
|
android:textColor="?attr/hintColor"
|
2019-11-27 16:09:26 +01:00
|
|
|
android:textSize="12sp"
|
|
|
|
android:gravity="start"
|
2020-05-22 00:49:09 +02:00
|
|
|
android:layout_marginTop="15dp" />
|
2019-11-27 16:09:26 +01:00
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/mergeButton"
|
2020-10-20 20:09:07 +02:00
|
|
|
android:layout_width="match_parent"
|
2020-08-06 17:16:51 +02:00
|
|
|
android:layout_height="60dp"
|
2020-10-20 20:09:07 +02:00
|
|
|
android:layout_marginTop="8dp"
|
2019-11-27 16:09:26 +01:00
|
|
|
android:text="@string/mergePullRequestButtonText"
|
|
|
|
android:textColor="@color/btnTextColor" />
|
|
|
|
|
2020-05-22 00:49:09 +02:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/mergeInfoDisabledMessage"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/mergeInfoDisabledMessage"
|
|
|
|
android:textColor="?attr/hintColor"
|
|
|
|
android:textSize="12sp"
|
|
|
|
android:gravity="start"
|
|
|
|
android:visibility="gone"
|
|
|
|
android:layout_marginTop="10dp" />
|
|
|
|
|
2019-11-27 16:09:26 +01:00
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</ScrollView>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|