diff options
author | Marvin Borner | 2018-09-03 20:02:45 +0200 |
---|---|---|
committer | Marvin Borner | 2018-09-03 20:02:45 +0200 |
commit | aecf0b00f315847459f7ff100e050bacff604b47 (patch) | |
tree | 6de00fc00bf70a1e0ee991c63037959244498aae /app/src/main/java/me/texx/Texx/PhotoEditorActivity.kt | |
parent | 8d524cbbed9f3f1ab98e3e2abc239d23b866980b (diff) |
Added better permission requesting and managing :lock:
Diffstat (limited to 'app/src/main/java/me/texx/Texx/PhotoEditorActivity.kt')
-rw-r--r-- | app/src/main/java/me/texx/Texx/PhotoEditorActivity.kt | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/app/src/main/java/me/texx/Texx/PhotoEditorActivity.kt b/app/src/main/java/me/texx/Texx/PhotoEditorActivity.kt index 7fff34a..18f0626 100644 --- a/app/src/main/java/me/texx/Texx/PhotoEditorActivity.kt +++ b/app/src/main/java/me/texx/Texx/PhotoEditorActivity.kt @@ -52,21 +52,25 @@ class PhotoEditorActivity : AppCompatActivity() { undoButton.setOnClickListener { photoEditor.undo() } redoButton.setOnClickListener { photoEditor.redo() } - photoDrawButton.setOnClickListener { + drawButton.setOnClickListener { currentlyDrawing = !currentlyDrawing photoEditor.setBrushDrawingMode(currentlyDrawing) - if (currentlyDrawing) drawColorSeekbar.visibility = View.VISIBLE + if (currentlyDrawing) colorSeekbar.visibility = View.VISIBLE else { - drawColorSeekbar.visibility = View.GONE - photoDrawButton.background = ContextCompat.getDrawable(this, R.drawable.ic_mode_edit_white_24dp) + colorSeekbar.visibility = View.GONE + drawButton.background = ContextCompat.getDrawable(this, R.drawable.ic_mode_edit_white_24dp) } } - drawColorSeekbar.setOnColorChangeListener { _, _, color -> + typeButton.setOnClickListener { + photoEditor.addText("", 123) + } + + colorSeekbar.setOnColorChangeListener { _, _, color -> if (currentlyDrawing) { photoEditor.brushColor = color - photoDrawButton.setBackgroundColor(color) + drawButton.setBackgroundColor(color) } } } |