2020-09-13 06:54:05 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-11-29 23:41:44 +01:00
|
|
|
<LinearLayout xmlns:app="http://schemas.android.com/apk/res-auto"
|
2021-04-13 20:56:50 +02:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2020-09-13 06:54:05 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical"
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:background="?attr/primaryBackgroundColor">
|
|
|
|
|
|
|
|
<com.google.android.material.appbar.AppBarLayout
|
|
|
|
android:id="@+id/appbar"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2022-08-07 21:34:02 +02:00
|
|
|
android:layout_marginBottom="@dimen/dimen10dp"
|
|
|
|
app:elevation="@dimen/dimen0dp"
|
2020-09-13 06:54:05 +02:00
|
|
|
android:theme="@style/Widget.AppCompat.SearchView">
|
|
|
|
|
|
|
|
<com.google.android.material.appbar.MaterialToolbar
|
|
|
|
android:id="@+id/toolbar"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="?attr/primaryBackgroundColor">
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/close"
|
2022-08-07 21:34:02 +02:00
|
|
|
android:layout_width="@dimen/dimen26dp"
|
|
|
|
android:layout_height="@dimen/dimen26dp"
|
|
|
|
android:layout_marginEnd="@dimen/dimen16dp"
|
|
|
|
android:layout_marginStart="@dimen/dimen16dp"
|
2020-09-13 06:54:05 +02:00
|
|
|
android:contentDescription="@string/close"
|
2021-04-13 20:56:50 +02:00
|
|
|
android:background="?android:attr/selectableItemBackgroundBorderless"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:focusable="true"
|
|
|
|
android:clickable="true"
|
2021-05-25 22:39:06 +02:00
|
|
|
android:src="@drawable/ic_close" />
|
2020-09-13 06:54:05 +02:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/toolbarTitle"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
2021-04-13 20:56:50 +02:00
|
|
|
android:maxLines="1"
|
2020-09-13 06:54:05 +02:00
|
|
|
android:text="@string/repoSettingsTitle"
|
|
|
|
android:textColor="?attr/primaryTextColor"
|
2022-08-07 21:34:02 +02:00
|
|
|
android:textSize="@dimen/dimen20sp" />
|
2020-09-13 06:54:05 +02:00
|
|
|
|
|
|
|
</com.google.android.material.appbar.MaterialToolbar>
|
|
|
|
|
|
|
|
</com.google.android.material.appbar.AppBarLayout>
|
|
|
|
|
|
|
|
<ScrollView android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:background="?attr/primaryBackgroundColor">
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/editProperties"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
2021-04-13 20:56:50 +02:00
|
|
|
android:background="?android:attr/selectableItemBackground"
|
2022-08-07 21:34:02 +02:00
|
|
|
android:drawablePadding="@dimen/dimen32dp"
|
|
|
|
android:padding="@dimen/dimen16dp"
|
2021-04-13 20:56:50 +02:00
|
|
|
android:focusable="true"
|
|
|
|
android:clickable="true"
|
|
|
|
android:text="@string/repoSettingsEditProperties"
|
2020-09-13 06:54:05 +02:00
|
|
|
android:textColor="?attr/primaryTextColor"
|
2022-08-07 21:34:02 +02:00
|
|
|
android:textSize="@dimen/dimen16sp"
|
2020-11-29 23:41:44 +01:00
|
|
|
app:drawableStartCompat="@drawable/ic_edit" />
|
2020-09-13 06:54:05 +02:00
|
|
|
|
|
|
|
<View
|
|
|
|
android:layout_width="match_parent"
|
2022-08-07 21:34:02 +02:00
|
|
|
android:layout_height="@dimen/dimen1dp"
|
2020-09-13 06:54:05 +02:00
|
|
|
android:background="?attr/dividerColor" />
|
|
|
|
|
2020-09-16 08:53:13 +02:00
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/transferOwnerFrame"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2021-04-13 20:56:50 +02:00
|
|
|
android:background="?android:attr/selectableItemBackground"
|
2020-09-16 08:53:13 +02:00
|
|
|
android:orientation="vertical"
|
2021-04-13 20:56:50 +02:00
|
|
|
android:focusable="true"
|
|
|
|
android:clickable="true"
|
|
|
|
tools:visibility="visible">
|
2020-09-16 08:53:13 +02:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/transferRepositoryOwnership"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
2022-08-07 21:34:02 +02:00
|
|
|
android:drawablePadding="@dimen/dimen32dp"
|
|
|
|
android:paddingStart="@dimen/dimen16dp"
|
|
|
|
android:paddingTop="@dimen/dimen16dp"
|
|
|
|
android:paddingEnd="@dimen/dimen16dp"
|
2021-04-13 20:56:50 +02:00
|
|
|
android:text="@string/repoSettingsTransferOwnership"
|
|
|
|
android:textColor="?attr/primaryTextColor"
|
2022-08-07 21:34:02 +02:00
|
|
|
android:textSize="@dimen/dimen16sp"
|
2020-11-29 23:41:44 +01:00
|
|
|
app:drawableStartCompat="@drawable/ic_arrow_up" />
|
2020-09-16 08:53:13 +02:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/transferRepositoryOwnershipHint"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
2022-08-07 21:34:02 +02:00
|
|
|
android:paddingStart="@dimen/dimen72dp"
|
|
|
|
android:paddingEnd="@dimen/dimen16dp"
|
|
|
|
android:paddingBottom="@dimen/dimen16dp"
|
2020-09-16 08:53:13 +02:00
|
|
|
android:text="@string/repoSettingsTransferOwnershipHint"
|
|
|
|
android:textColor="?attr/hintColor"
|
2022-08-07 21:34:02 +02:00
|
|
|
android:textSize="@dimen/dimen12sp" />
|
2020-09-16 08:53:13 +02:00
|
|
|
|
|
|
|
<View
|
|
|
|
android:layout_width="match_parent"
|
2022-08-07 21:34:02 +02:00
|
|
|
android:layout_height="@dimen/dimen1dp"
|
2020-09-16 08:53:13 +02:00
|
|
|
android:background="?attr/dividerColor" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
2020-09-13 06:54:05 +02:00
|
|
|
<LinearLayout
|
2022-05-01 12:00:02 +02:00
|
|
|
android:id="@+id/deleteRepositoryFrame"
|
2020-09-13 06:54:05 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2021-04-13 20:56:50 +02:00
|
|
|
android:background="?android:attr/selectableItemBackground"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:focusable="true"
|
|
|
|
android:clickable="true"
|
2022-08-07 21:34:02 +02:00
|
|
|
android:paddingBottom="@dimen/dimen16dp">
|
2020-09-13 06:54:05 +02:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/deleteRepository"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
2022-08-07 21:34:02 +02:00
|
|
|
android:drawablePadding="@dimen/dimen32dp"
|
|
|
|
android:paddingStart="@dimen/dimen16dp"
|
|
|
|
android:paddingTop="@dimen/dimen16dp"
|
|
|
|
android:paddingEnd="@dimen/dimen16dp"
|
2021-04-13 20:56:50 +02:00
|
|
|
android:text="@string/repoSettingsDelete"
|
|
|
|
android:textColor="?attr/primaryTextColor"
|
2022-08-07 21:34:02 +02:00
|
|
|
android:textSize="@dimen/dimen16sp"
|
2020-11-29 23:41:44 +01:00
|
|
|
app:drawableStartCompat="@drawable/ic_delete" />
|
2020-09-13 06:54:05 +02:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/deleteRepositoryHint"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
2022-08-07 21:34:02 +02:00
|
|
|
android:paddingStart="@dimen/dimen72dp"
|
|
|
|
android:paddingEnd="@dimen/dimen16dp"
|
2020-09-13 06:54:05 +02:00
|
|
|
android:text="@string/repoSettingsDeleteHint"
|
|
|
|
android:textColor="?attr/hintColor"
|
2022-08-07 21:34:02 +02:00
|
|
|
android:textSize="@dimen/dimen12sp" />
|
2020-09-13 06:54:05 +02:00
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</ScrollView>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|