GitNex/app/src/main/res/layout/activity_new_file.xml

242 lines
9.8 KiB
XML
Raw Normal View History

2019-09-17 08:17:05 +02:00
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
xmlns:android="http://schemas.android.com/apk/res/android"
2020-03-05 16:23:15 +01:00
android:background="?attr/primaryBackgroundColor">
2019-09-17 08:17:05 +02:00
<com.google.android.material.appbar.AppBarLayout
android:id="@+id/appbar"
2019-09-17 08:17:05 +02:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/Widget.AppCompat.SearchView">
2019-09-17 08:17:05 +02:00
<androidx.appcompat.widget.Toolbar
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
2020-03-05 16:23:15 +01:00
android:background="?attr/primaryBackgroundColor"
2019-09-17 08:17:05 +02:00
tools:ignore="UnusedAttribute">
<ImageView
android:id="@+id/close"
android:layout_width="30dp"
android:layout_height="30dp"
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/pageTitleNewFile"
2020-03-04 20:37:28 +01:00
android:textColor="?attr/primaryTextColor"
2019-09-17 08:17:05 +02:00
android:maxLines="1"
android:textSize="20sp" />
</androidx.appcompat.widget.Toolbar>
</com.google.android.material.appbar.AppBarLayout>
<ScrollView
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
2020-03-05 16:23:15 +01:00
android:background="?attr/primaryBackgroundColor">
2019-09-17 08:17:05 +02:00
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="20dp"
android:paddingBottom="30dp"
android:orientation="vertical">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/newFileNameTintCopy"
2020-03-04 20:37:28 +01:00
android:textColor="?attr/primaryTextColor"
2019-09-17 08:17:05 +02:00
android:textSize="16sp" />
<EditText
android:id="@+id/newFileName"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:padding="10dp"
android:textSize="14sp"
tools:ignore="Autofill"
android:labelFor="@+id/newFileName"
android:background="@drawable/shape_inputs"
2020-03-04 20:37:28 +01:00
android:textColor="?attr/inputTextColor"
android:textColorHint="?attr/hintColor"
2020-03-04 20:37:28 +01:00
android:textColorHighlight="?attr/primaryTextColor"
android:inputType="textCapSentences|text" />
2019-09-17 08:17:05 +02:00
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/newFileNameHintMessage"
android:textColor="@color/hintColor"
android:textSize="12sp"
android:paddingStart="10dp"
android:paddingEnd="5dp"
android:gravity="end" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/newFileContentTintCopy"
2020-03-04 20:37:28 +01:00
android:textColor="?attr/primaryTextColor"
2019-09-17 08:17:05 +02:00
android:textSize="16sp"
android:layout_marginTop="10dp" />
<EditText
android:id="@+id/newFileContent"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:padding="10dp"
android:maxLines="16"
android:minLines="14"
tools:ignore="Autofill"
android:labelFor="@+id/newFileContent"
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"
android:textColorHint="?attr/hintColor"
2020-03-04 20:37:28 +01:00
android:textColorHighlight="?attr/primaryTextColor"
android:inputType="textCapSentences|textMultiLine" />
2019-09-17 08:17:05 +02:00
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/newFileOldBranches"
2020-03-04 20:37:28 +01:00
android:textColor="?attr/primaryTextColor"
android:textSize="16sp"
android:layout_marginTop="10dp"/>
2020-03-05 16:23:15 +01:00
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
2020-03-05 16:23:15 +01:00
android:background="@drawable/shape_dropdown"
android:layout_marginTop="10dp"
2020-03-05 16:23:15 +01:00
android:layout_marginBottom="10dp" >
<Spinner
android:id="@+id/newFileBranchesSpinner"
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-09-18 11:49:29 +02:00
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/newFileCurrentBranchMessage"
android:textColor="@color/hintColor"
android:textSize="12sp"
android:paddingStart="10dp"
android:paddingEnd="5dp"
android:gravity="end" />
2019-09-17 08:17:05 +02:00
<TextView
android:id="@+id/branchNameId"
2019-09-17 08:17:05 +02:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/newFileBranchTintCopy"
2020-03-04 20:37:28 +01:00
android:textColor="?attr/primaryTextColor"
2019-09-17 08:17:05 +02:00
android:textSize="16sp"
android:layout_marginTop="10dp" />
<EditText
android:id="@+id/newFileBranchName"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:padding="10dp"
android:textSize="14sp"
tools:ignore="Autofill"
android:labelFor="@+id/newFileBranchName"
android:background="@drawable/shape_inputs"
2020-03-04 20:37:28 +01:00
android:textColor="?attr/inputTextColor"
android:textColorHint="?attr/hintColor"
2020-03-04 20:37:28 +01:00
android:textColorHighlight="?attr/primaryTextColor"
android:inputType="textCapSentences|text" />
2019-09-17 08:17:05 +02:00
2019-09-18 11:49:29 +02:00
<TextView
android:id="@+id/branchNameHintText"
2019-09-18 11:49:29 +02:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/newFileNewBranchMessage"
android:textColor="@color/hintColor"
android:textSize="12sp"
android:paddingStart="10dp"
android:paddingEnd="5dp"
android:gravity="end" />
2019-09-17 08:17:05 +02:00
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/newFileMessageTintCopy"
2020-03-04 20:37:28 +01:00
android:textColor="?attr/primaryTextColor"
2019-09-17 08:17:05 +02:00
android:textSize="16sp"
android:layout_marginTop="10dp" />
<EditText
android:id="@+id/newFileCommitMessage"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:padding="10dp"
android:textSize="14sp"
tools:ignore="Autofill"
android:labelFor="@+id/newFileCommitMessage"
android:background="@drawable/shape_inputs"
2020-03-04 20:37:28 +01:00
android:textColor="?attr/inputTextColor"
android:textColorHint="?attr/hintColor"
2020-03-04 20:37:28 +01:00
android:textColorHighlight="?attr/primaryTextColor"
android:inputType="textCapSentences|text" />
2019-09-17 08:17:05 +02:00
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/characters255Limit"
2020-03-04 20:37:28 +01:00
android:textColor="?attr/primaryTextColor"
2019-09-17 08:17:05 +02:00
android:textSize="12sp"
android:paddingStart="10dp"
android:paddingEnd="5dp"
android:gravity="end" />
<Button
android:id="@+id/newFileCreate"
android:gravity="center"
android:layout_gravity="end"
android:layout_marginTop="20dp"
android:layout_width="wrap_content"
android:layout_height="40dp"
android:width="140dp"
2019-09-17 08:17:05 +02:00
android:text="@string/newFileButtonCopy"
android:background="@drawable/shape_buttons"
android:textColor="@color/btnTextColor" />
</LinearLayout>
</ScrollView>
</LinearLayout>