blob: 4c848da681584b580b7811d96522bcd6ea849bdb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
|
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout 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"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:animateLayoutChanges="true"
tools:context=".PhotoEditorActivity">
<ja.burhanrashid52.photoeditor.PhotoEditorView
android:id="@+id/image_editor"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:contentDescription="Kwel image"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.0"
app:layout_constraintStart_toStartOf="parent">
</ja.burhanrashid52.photoeditor.PhotoEditorView>
<android.support.design.widget.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="24dp"
android:layout_marginEnd="24dp"
android:clickable="true"
app:fabSize="normal"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:srcCompat="@drawable/ic_fab_send" />
<Button
android:id="@+id/button_undo"
android:layout_width="30dp"
android:layout_height="30dp"
android:layout_alignParentStart="true"
android:layout_alignParentTop="true"
android:layout_marginStart="24dp"
android:layout_marginTop="24dp"
android:background="@drawable/btn_undo"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<Button
android:id="@+id/button_redo"
android:layout_width="30dp"
android:layout_height="30dp"
android:layout_alignParentEnd="true"
android:layout_alignParentTop="true"
android:layout_marginStart="8dp"
android:layout_marginTop="24dp"
android:background="@drawable/btn_redo"
app:layout_constraintStart_toEndOf="@+id/button_undo"
app:layout_constraintTop_toTopOf="parent" />
<Button
android:id="@+id/button_draw"
android:layout_width="30dp"
android:layout_height="30dp"
android:layout_marginEnd="24dp"
android:layout_marginTop="24dp"
android:background="@drawable/btn_edit"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<Button
android:id="@+id/button_type"
android:layout_width="30dp"
android:layout_height="30dp"
android:layout_marginEnd="16dp"
android:layout_marginTop="24dp"
android:background="@drawable/btn_text"
app:layout_constraintEnd_toStartOf="@+id/button_draw"
app:layout_constraintTop_toTopOf="parent" />
<com.rtugeek.android.colorseekbar.ColorSeekBar
android:id="@+id/seekbar_color"
android:layout_width="38dp"
android:layout_height="300dp"
android:layout_marginEnd="28dp"
android:layout_marginTop="24dp"
android:visibility="gone"
app:barHeight="15dp"
app:colorSeeds="@array/material_colors"
app:isVertical="true"
app:layout_constraintEnd_toEndOf="@+id/image_editor"
app:layout_constraintTop_toBottomOf="@+id/button_draw"
app:thumbHeight="40dp" />
<EditText
android:id="@+id/text_edit"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="32dp"
android:ems="10"
android:inputType="text|textAutoCorrect|textAutoComplete|textShortMessage"
android:singleLine="true"
android:visibility="gone"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.5"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</android.support.constraint.ConstraintLayout>
|