|
@@ -16,147 +16,169 @@
|
|
|
android:layout_height="match_parent" />
|
|
|
</RelativeLayout>
|
|
|
|
|
|
- <Button
|
|
|
- android:id="@+id/pencil"
|
|
|
+ <com.bomostory.sceneeditmodule.navigationbar.brush.BrushView
|
|
|
+ android:id="@+id/brush_view"
|
|
|
android:layout_width="wrap_content"
|
|
|
android:layout_height="wrap_content"
|
|
|
- android:text="@string/pencil"
|
|
|
- app:layout_constraintBottom_toBottomOf="parent"
|
|
|
- app:layout_constraintLeft_toLeftOf="parent" />
|
|
|
-
|
|
|
- <Button
|
|
|
- android:id="@+id/crayon"
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:text="@string/crayon"
|
|
|
- app:layout_constraintBottom_toBottomOf="parent"
|
|
|
- app:layout_constraintLeft_toRightOf="@+id/pencil" />
|
|
|
-
|
|
|
- <Button
|
|
|
- android:id="@+id/pen"
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:text="@string/pen"
|
|
|
- app:layout_constraintBottom_toBottomOf="parent"
|
|
|
- app:layout_constraintLeft_toRightOf="@+id/crayon" />
|
|
|
-
|
|
|
- <Button
|
|
|
- android:id="@+id/chineseBrush"
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:text="@string/chinese_brush"
|
|
|
- app:layout_constraintBottom_toBottomOf="parent"
|
|
|
- app:layout_constraintLeft_toRightOf="@+id/pen" />
|
|
|
-
|
|
|
- <Button
|
|
|
- android:id="@+id/eraser"
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:text="@string/eraser"
|
|
|
- app:layout_constraintBottom_toBottomOf="parent"
|
|
|
- app:layout_constraintLeft_toRightOf="@+id/chineseBrush" />
|
|
|
-
|
|
|
- <TextView
|
|
|
- android:id="@+id/brushSize"
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- app:layout_constraintBottom_toBottomOf="parent"
|
|
|
- app:layout_constraintLeft_toRightOf="@+id/eraser" />
|
|
|
-
|
|
|
- <SeekBar
|
|
|
- android:id="@+id/brushSizeSeekBar"
|
|
|
- android:layout_width="240dp"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- app:layout_constraintBottom_toTopOf="@+id/brushSize"
|
|
|
- app:layout_constraintLeft_toRightOf="@+id/eraser" />
|
|
|
-
|
|
|
- <Button
|
|
|
- android:id="@+id/color1"
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- app:layout_constraintBottom_toBottomOf="parent"
|
|
|
- app:layout_constraintLeft_toRightOf="@+id/brushSizeSeekBar" />
|
|
|
-
|
|
|
- <Button
|
|
|
- android:id="@+id/color2"
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- app:layout_constraintBottom_toBottomOf="parent"
|
|
|
- app:layout_constraintLeft_toRightOf="@+id/color1" />
|
|
|
-
|
|
|
- <Button
|
|
|
- android:id="@+id/color3"
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- app:layout_constraintBottom_toBottomOf="parent"
|
|
|
- app:layout_constraintLeft_toRightOf="@+id/color2" />
|
|
|
-
|
|
|
- <SeekBar
|
|
|
- android:id="@+id/colorRValue"
|
|
|
- android:layout_width="128dp"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:max="255"
|
|
|
- app:layout_constraintBottom_toBottomOf="parent"
|
|
|
- app:layout_constraintRight_toRightOf="parent"
|
|
|
- app:layout_constraintTop_toTopOf="parent" />
|
|
|
-
|
|
|
- <TextView
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:text="@string/r"
|
|
|
- app:layout_constraintBottom_toBottomOf="@id/colorRValue"
|
|
|
- app:layout_constraintRight_toLeftOf="@+id/colorRValue"
|
|
|
- app:layout_constraintTop_toTopOf="@id/colorRValue" />
|
|
|
-
|
|
|
- <SeekBar
|
|
|
- android:id="@+id/colorGValue"
|
|
|
- android:layout_width="128dp"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:layout_marginTop="25dp"
|
|
|
- android:max="255"
|
|
|
- app:layout_constraintRight_toRightOf="parent"
|
|
|
- app:layout_constraintTop_toBottomOf="@+id/colorRValue" />
|
|
|
-
|
|
|
- <TextView
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:text="@string/g"
|
|
|
- app:layout_constraintBottom_toBottomOf="@id/colorGValue"
|
|
|
- app:layout_constraintRight_toLeftOf="@id/colorGValue"
|
|
|
- app:layout_constraintTop_toTopOf="@+id/colorGValue" />
|
|
|
-
|
|
|
- <SeekBar
|
|
|
- android:id="@+id/colorBValue"
|
|
|
- android:layout_width="128dp"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:layout_marginTop="25dp"
|
|
|
- android:max="255"
|
|
|
- app:layout_constraintRight_toRightOf="parent"
|
|
|
- app:layout_constraintTop_toBottomOf="@+id/colorGValue" />
|
|
|
-
|
|
|
- <TextView
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:text="@string/b"
|
|
|
- app:layout_constraintBottom_toBottomOf="@id/colorBValue"
|
|
|
- app:layout_constraintRight_toLeftOf="@id/colorBValue"
|
|
|
- app:layout_constraintTop_toTopOf="@id/colorBValue" />
|
|
|
-
|
|
|
- <SeekBar
|
|
|
- android:id="@+id/colorAValue"
|
|
|
- android:layout_width="128dp"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:layout_marginTop="25dp"
|
|
|
- android:max="255"
|
|
|
- app:layout_constraintRight_toRightOf="parent"
|
|
|
- app:layout_constraintTop_toBottomOf="@+id/colorBValue" />
|
|
|
-
|
|
|
- <TextView
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:text="@string/a"
|
|
|
- app:layout_constraintBottom_toBottomOf="@id/colorAValue"
|
|
|
- app:layout_constraintRight_toLeftOf="@id/colorAValue"
|
|
|
- app:layout_constraintTop_toTopOf="@id/colorAValue" />
|
|
|
+ app:layout_constraintBottom_toBottomOf="parent">
|
|
|
+ </com.bomostory.sceneeditmodule.navigationbar.brush.BrushView>
|
|
|
+ <!--<ImageView-->
|
|
|
+ <!--android:id="@+id/pencil"-->
|
|
|
+ <!--android:layout_width="36dp"-->
|
|
|
+ <!--android:layout_height="48dp"-->
|
|
|
+ <!--android:layout_marginLeft="24dp"-->
|
|
|
+ <!--android:scaleType="fitXY"-->
|
|
|
+ <!--android:src="@drawable/ic_brush_1"-->
|
|
|
+ <!--app:layout_constraintBottom_toBottomOf="parent"-->
|
|
|
+ <!--app:layout_constraintLeft_toLeftOf="parent" />-->
|
|
|
+
|
|
|
+ <!--<ImageView-->
|
|
|
+ <!--android:id="@+id/crayon"-->
|
|
|
+ <!--android:layout_width="36dp"-->
|
|
|
+ <!--android:layout_height="72dp"-->
|
|
|
+ <!--android:layout_marginLeft="16dp"-->
|
|
|
+ <!--android:scaleType="fitXY"-->
|
|
|
+ <!--android:src="@drawable/ic_brush_2"-->
|
|
|
+ <!--app:layout_constraintBottom_toBottomOf="parent"-->
|
|
|
+ <!--app:layout_constraintLeft_toRightOf="@+id/pencil" />-->
|
|
|
+
|
|
|
+ <!--<ImageView-->
|
|
|
+ <!--android:id="@+id/pen"-->
|
|
|
+ <!--android:layout_width="36dp"-->
|
|
|
+ <!--android:layout_height="48dp"-->
|
|
|
+ <!--android:layout_marginLeft="16dp"-->
|
|
|
+ <!--android:scaleType="fitXY"-->
|
|
|
+ <!--android:src="@drawable/ic_brush_3"-->
|
|
|
+ <!--app:layout_constraintBottom_toBottomOf="parent"-->
|
|
|
+ <!--app:layout_constraintLeft_toRightOf="@+id/crayon" />-->
|
|
|
+
|
|
|
+ <!--<ImageView-->
|
|
|
+ <!--android:id="@+id/chineseBrush"-->
|
|
|
+ <!--android:layout_width="36dp"-->
|
|
|
+ <!--android:layout_height="48dp"-->
|
|
|
+ <!--android:layout_marginLeft="16dp"-->
|
|
|
+ <!--android:scaleType="fitXY"-->
|
|
|
+ <!--android:src="@drawable/ic_brush_4"-->
|
|
|
+ <!--app:layout_constraintBottom_toBottomOf="parent"-->
|
|
|
+ <!--app:layout_constraintLeft_toRightOf="@+id/pen" />-->
|
|
|
+
|
|
|
+ <!--<ImageView-->
|
|
|
+ <!--android:id="@+id/eraser"-->
|
|
|
+ <!--android:layout_width="36dp"-->
|
|
|
+ <!--android:layout_height="48dp"-->
|
|
|
+ <!--android:layout_marginLeft="16dp"-->
|
|
|
+ <!--android:scaleType="fitXY"-->
|
|
|
+ <!--android:src="@drawable/ic_brush_eraser"-->
|
|
|
+ <!--app:layout_constraintBottom_toBottomOf="parent"-->
|
|
|
+ <!--app:layout_constraintLeft_toRightOf="@+id/chineseBrush" />-->
|
|
|
+
|
|
|
+ <!--<TextView-->
|
|
|
+ <!--android:id="@+id/brushSize"-->
|
|
|
+ <!--android:layout_width="wrap_content"-->
|
|
|
+ <!--android:layout_height="wrap_content"-->
|
|
|
+ <!--app:layout_constraintBottom_toBottomOf="parent"-->
|
|
|
+ <!--app:layout_constraintLeft_toRightOf="@+id/eraser" />-->
|
|
|
+
|
|
|
+ <!--<SeekBar-->
|
|
|
+ <!--android:id="@+id/brushSizeSeekBar"-->
|
|
|
+ <!--android:layout_width="240dp"-->
|
|
|
+ <!--android:layout_height="wrap_content"-->
|
|
|
+ <!--app:layout_constraintBottom_toTopOf="@+id/brushSize"-->
|
|
|
+ <!--app:layout_constraintLeft_toRightOf="@+id/eraser" />-->
|
|
|
+
|
|
|
+ <!--<Button-->
|
|
|
+ <!--android:id="@+id/color1"-->
|
|
|
+ <!--android:layout_width="wrap_content"-->
|
|
|
+ <!--android:layout_height="wrap_content"-->
|
|
|
+ <!--app:layout_constraintBottom_toBottomOf="parent"-->
|
|
|
+ <!--app:layout_constraintLeft_toRightOf="@+id/brushSizeSeekBar" />-->
|
|
|
+
|
|
|
+ <!--<Button-->
|
|
|
+ <!--android:id="@+id/color2"-->
|
|
|
+ <!--android:layout_width="wrap_content"-->
|
|
|
+ <!--android:layout_height="wrap_content"-->
|
|
|
+ <!--app:layout_constraintBottom_toBottomOf="parent"-->
|
|
|
+ <!--app:layout_constraintLeft_toRightOf="@+id/color1" />-->
|
|
|
+
|
|
|
+ <!--<Button-->
|
|
|
+ <!--android:id="@+id/color3"-->
|
|
|
+ <!--android:layout_width="wrap_content"-->
|
|
|
+ <!--android:layout_height="wrap_content"-->
|
|
|
+ <!--app:layout_constraintBottom_toBottomOf="parent"-->
|
|
|
+ <!--app:layout_constraintLeft_toRightOf="@+id/color2" />-->
|
|
|
+ <!--<Button-->
|
|
|
+ <!--android:id="@+id/done"-->
|
|
|
+ <!--android:layout_width="wrap_content"-->
|
|
|
+ <!--android:layout_height="wrap_content"-->
|
|
|
+ <!--app:layout_constraintBottom_toBottomOf="parent"-->
|
|
|
+ <!--app:layout_constraintLeft_toRightOf="@+id/color3" />-->
|
|
|
+
|
|
|
+ <!--<SeekBar-->
|
|
|
+ <!--android:id="@+id/colorRValue"-->
|
|
|
+ <!--android:layout_width="128dp"-->
|
|
|
+ <!--android:layout_height="wrap_content"-->
|
|
|
+ <!--android:max="255"-->
|
|
|
+ <!--app:layout_constraintBottom_toBottomOf="parent"-->
|
|
|
+ <!--app:layout_constraintRight_toRightOf="parent"-->
|
|
|
+ <!--app:layout_constraintTop_toTopOf="parent" />-->
|
|
|
+
|
|
|
+ <!--<TextView-->
|
|
|
+ <!--android:layout_width="wrap_content"-->
|
|
|
+ <!--android:layout_height="wrap_content"-->
|
|
|
+ <!--android:text="@string/r"-->
|
|
|
+ <!--app:layout_constraintBottom_toBottomOf="@id/colorRValue"-->
|
|
|
+ <!--app:layout_constraintRight_toLeftOf="@+id/colorRValue"-->
|
|
|
+ <!--app:layout_constraintTop_toTopOf="@id/colorRValue" />-->
|
|
|
+
|
|
|
+ <!--<SeekBar-->
|
|
|
+ <!--android:id="@+id/colorGValue"-->
|
|
|
+ <!--android:layout_width="128dp"-->
|
|
|
+ <!--android:layout_height="wrap_content"-->
|
|
|
+ <!--android:layout_marginTop="25dp"-->
|
|
|
+ <!--android:max="255"-->
|
|
|
+ <!--app:layout_constraintRight_toRightOf="parent"-->
|
|
|
+ <!--app:layout_constraintTop_toBottomOf="@+id/colorRValue" />-->
|
|
|
+
|
|
|
+ <!--<TextView-->
|
|
|
+ <!--android:layout_width="wrap_content"-->
|
|
|
+ <!--android:layout_height="wrap_content"-->
|
|
|
+ <!--android:text="@string/g"-->
|
|
|
+ <!--app:layout_constraintBottom_toBottomOf="@id/colorGValue"-->
|
|
|
+ <!--app:layout_constraintRight_toLeftOf="@id/colorGValue"-->
|
|
|
+ <!--app:layout_constraintTop_toTopOf="@+id/colorGValue" />-->
|
|
|
+
|
|
|
+ <!--<SeekBar-->
|
|
|
+ <!--android:id="@+id/colorBValue"-->
|
|
|
+ <!--android:layout_width="128dp"-->
|
|
|
+ <!--android:layout_height="wrap_content"-->
|
|
|
+ <!--android:layout_marginTop="25dp"-->
|
|
|
+ <!--android:max="255"-->
|
|
|
+ <!--app:layout_constraintRight_toRightOf="parent"-->
|
|
|
+ <!--app:layout_constraintTop_toBottomOf="@+id/colorGValue" />-->
|
|
|
+
|
|
|
+ <!--<TextView-->
|
|
|
+ <!--android:layout_width="wrap_content"-->
|
|
|
+ <!--android:layout_height="wrap_content"-->
|
|
|
+ <!--android:text="@string/b"-->
|
|
|
+ <!--app:layout_constraintBottom_toBottomOf="@id/colorBValue"-->
|
|
|
+ <!--app:layout_constraintRight_toLeftOf="@id/colorBValue"-->
|
|
|
+ <!--app:layout_constraintTop_toTopOf="@id/colorBValue" />-->
|
|
|
+
|
|
|
+ <!--<SeekBar-->
|
|
|
+ <!--android:id="@+id/colorAValue"-->
|
|
|
+ <!--android:layout_width="128dp"-->
|
|
|
+ <!--android:layout_height="wrap_content"-->
|
|
|
+ <!--android:layout_marginTop="25dp"-->
|
|
|
+ <!--android:max="255"-->
|
|
|
+ <!--app:layout_constraintRight_toRightOf="parent"-->
|
|
|
+ <!--app:layout_constraintTop_toBottomOf="@+id/colorBValue" />-->
|
|
|
+
|
|
|
+ <!--<TextView-->
|
|
|
+ <!--android:layout_width="wrap_content"-->
|
|
|
+ <!--android:layout_height="wrap_content"-->
|
|
|
+ <!--android:text="@string/a"-->
|
|
|
+ <!--app:layout_constraintBottom_toBottomOf="@id/colorAValue"-->
|
|
|
+ <!--app:layout_constraintRight_toLeftOf="@id/colorAValue"-->
|
|
|
+ <!--app:layout_constraintTop_toTopOf="@id/colorAValue" />-->
|
|
|
|
|
|
</android.support.constraint.ConstraintLayout>
|