diff options
author | Marvin Borner | 2018-09-05 01:01:54 +0200 |
---|---|---|
committer | Marvin Borner | 2018-09-05 01:01:54 +0200 |
commit | 8e2cf1b4a93c0152e9f3d44a77a66fe4d1584dc2 (patch) | |
tree | 24fff7cdffd429775fe7f08083b760a86c2813d0 /app/src/main/res/layout/activity_photo_editor.xml | |
parent | 1a7846e05e36950274e29837e0e4d125935e90cd (diff) |
Finished adding text on photo feature :sparkles:
Diffstat (limited to 'app/src/main/res/layout/activity_photo_editor.xml')
-rw-r--r-- | app/src/main/res/layout/activity_photo_editor.xml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/app/src/main/res/layout/activity_photo_editor.xml b/app/src/main/res/layout/activity_photo_editor.xml index 2217663..9561214 100644 --- a/app/src/main/res/layout/activity_photo_editor.xml +++ b/app/src/main/res/layout/activity_photo_editor.xml @@ -89,4 +89,19 @@ app:layout_constraintTop_toBottomOf="@+id/drawButton" app:thumbHeight="40dp" /> + <EditText + android:id="@+id/editText" + 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>
\ No newline at end of file |