|
@@ -0,0 +1,141 @@
|
|
|
+<?xml version="1.0" encoding="utf-8"?>
|
|
|
+<merge xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
+ xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
+ xmlns:tools="http://schemas.android.com/tools"
|
|
|
+ tools:parentTag="android.support.constraint.ConstraintLayout"
|
|
|
+ android:layout_width="800dp"
|
|
|
+ android:layout_height="480dp">
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:id="@+id/iv_frontCoverEditor_cover"
|
|
|
+ android:layout_width="360dp"
|
|
|
+ android:layout_height="360dp"
|
|
|
+ android:layout_marginLeft="40dp"
|
|
|
+ android:layout_marginTop="24dp"
|
|
|
+ android:layout_marginBottom="96dp"
|
|
|
+ app:layout_constraintBottom_toBottomOf="parent"
|
|
|
+ app:layout_constraintLeft_toLeftOf="parent"
|
|
|
+ app:layout_constraintTop_toTopOf="parent"
|
|
|
+ tools:src="#faa600" />
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:id="@+id/iv_frontCoverEditor_coverMask"
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="112dp"
|
|
|
+ android:layout_marginBottom="16dp"
|
|
|
+ android:src="#66ffffff"
|
|
|
+ app:layout_constraintBottom_toBottomOf="@id/iv_frontCoverEditor_cover"
|
|
|
+ app:layout_constraintLeft_toLeftOf="@id/iv_frontCoverEditor_cover"
|
|
|
+ app:layout_constraintRight_toRightOf="@id/iv_frontCoverEditor_cover" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/tv_frontCoverEditor_coverTitle"
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="16dp"
|
|
|
+ android:ellipsize="middle"
|
|
|
+ android:fontFamily="sans-serif-medium"
|
|
|
+ android:gravity="center"
|
|
|
+ android:singleLine="true"
|
|
|
+ android:textColor="#ffffff"
|
|
|
+ android:textSize="40sp"
|
|
|
+ app:layout_constraintLeft_toLeftOf="@id/iv_frontCoverEditor_coverMask"
|
|
|
+ app:layout_constraintRight_toRightOf="@id/iv_frontCoverEditor_coverMask"
|
|
|
+ app:layout_constraintTop_toTopOf="@id/iv_frontCoverEditor_coverMask"
|
|
|
+ tools:text="Story Name" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/tv_frontCoverEditor_coverAuthor"
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="9dp"
|
|
|
+ android:ellipsize="middle"
|
|
|
+ android:fontFamily="sans-serif-medium"
|
|
|
+ android:gravity="center"
|
|
|
+ android:singleLine="true"
|
|
|
+ android:textColor="#ffffff"
|
|
|
+ android:textSize="20sp"
|
|
|
+ app:layout_constraintLeft_toLeftOf="@id/iv_frontCoverEditor_coverMask"
|
|
|
+ app:layout_constraintRight_toRightOf="@id/iv_frontCoverEditor_coverMask"
|
|
|
+ app:layout_constraintTop_toBottomOf="@id/tv_frontCoverEditor_coverTitle"
|
|
|
+ tools:text="Author" />
|
|
|
+
|
|
|
+ <EditText
|
|
|
+ android:id="@+id/et_frontCoverEditor_projectName"
|
|
|
+ style="@style/BomoEditText"
|
|
|
+ android:layout_width="320dp"
|
|
|
+ android:layout_height="56dp"
|
|
|
+ android:layout_marginLeft="40dp"
|
|
|
+ android:layout_marginTop="32dp"
|
|
|
+ android:layout_marginRight="40dp"
|
|
|
+ android:hint="@string/front_cover_editor_dialog_project_name_hint"
|
|
|
+ app:layout_constraintLeft_toRightOf="@id/iv_frontCoverEditor_cover"
|
|
|
+ app:layout_constraintRight_toRightOf="parent"
|
|
|
+ app:layout_constraintTop_toTopOf="parent" />
|
|
|
+
|
|
|
+ <EditText
|
|
|
+ android:id="@+id/et_frontCoverEditor_author"
|
|
|
+ style="@style/BomoEditText"
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="56dp"
|
|
|
+ android:layout_marginTop="24dp"
|
|
|
+ android:hint="@string/front_cover_editor_dialog_author_hint"
|
|
|
+ app:layout_constraintLeft_toLeftOf="@id/et_frontCoverEditor_projectName"
|
|
|
+ app:layout_constraintRight_toRightOf="@id/et_frontCoverEditor_projectName"
|
|
|
+ app:layout_constraintTop_toBottomOf="@id/et_frontCoverEditor_projectName" />
|
|
|
+
|
|
|
+ <Spinner
|
|
|
+ android:id="@+id/spinner_frontCoverEditor_category"
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="56dp"
|
|
|
+ android:layout_marginTop="24dp"
|
|
|
+ android:foreground="@drawable/bg_bomo_spinner"
|
|
|
+ app:layout_constraintLeft_toLeftOf="@id/et_frontCoverEditor_projectName"
|
|
|
+ app:layout_constraintRight_toRightOf="@id/et_frontCoverEditor_projectName"
|
|
|
+ app:layout_constraintTop_toBottomOf="@id/et_frontCoverEditor_author" />
|
|
|
+
|
|
|
+ <com.bomostory.sceneeditmodule.cover.CoverColorSelectorView
|
|
|
+ android:id="@+id/coverColorSelectorView_frontCoverEditor"
|
|
|
+ app:layout_constraintLeft_toLeftOf="@id/et_frontCoverEditor_projectName"
|
|
|
+ app:layout_constraintRight_toRightOf="@id/et_frontCoverEditor_projectName"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_marginTop="16dp"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ app:layout_constraintTop_toBottomOf="@id/spinner_frontCoverEditor_category" />
|
|
|
+
|
|
|
+ <Button
|
|
|
+ android:id="@+id/btn_frontCoverEditor_save"
|
|
|
+ style="@style/Widget.AppCompat.Button.Borderless.Colored"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="28dp"
|
|
|
+ android:layout_marginBottom="24dp"
|
|
|
+ android:text="@string/front_cover_editor_dialog_save_btn"
|
|
|
+ android:textColor="@color/cocoa"
|
|
|
+ app:layout_constraintBottom_toBottomOf="parent"
|
|
|
+ app:layout_constraintRight_toRightOf="parent"
|
|
|
+ app:layout_constraintTop_toBottomOf="@id/coverColorSelectorView_frontCoverEditor" />
|
|
|
+
|
|
|
+ <Button
|
|
|
+ android:id="@+id/btn_frontCoverEditor_chooseScene"
|
|
|
+ style="@style/Widget.AppCompat.Button.Borderless.Colored"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text="@string/front_cover_editor_dialog_choose_a_scene_btn"
|
|
|
+ android:textColor="@color/cocoa"
|
|
|
+ app:layout_constraintBottom_toBottomOf="@id/btn_frontCoverEditor_save"
|
|
|
+ app:layout_constraintRight_toLeftOf="@id/btn_frontCoverEditor_save"
|
|
|
+ app:layout_constraintTop_toTopOf="@id/btn_frontCoverEditor_save" />
|
|
|
+
|
|
|
+ <Button
|
|
|
+ android:id="@+id/btn_frontCoverEditor_cancel"
|
|
|
+ style="@style/Widget.AppCompat.Button.Borderless.Colored"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text="@string/front_cover_editor_dialog_cancel_btn"
|
|
|
+ android:textColor="@color/cocoa"
|
|
|
+ app:layout_constraintBottom_toBottomOf="@id/btn_frontCoverEditor_chooseScene"
|
|
|
+ app:layout_constraintRight_toLeftOf="@id/btn_frontCoverEditor_chooseScene"
|
|
|
+ app:layout_constraintTop_toTopOf="@id/btn_frontCoverEditor_chooseScene" />
|
|
|
+
|
|
|
+</merge>
|