From 2295bd4f8f4a1d565e69ab5931ae2f0108d24407 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sat, 1 Sep 2018 02:34:08 +0200 Subject: Added drawing tool and color selection seekbar --- .../main/java/me/texx/Texx/PhotoEditorActivity.kt | 69 ++++++++++++++++++++++ 1 file changed, 69 insertions(+) create mode 100644 app/src/main/java/me/texx/Texx/PhotoEditorActivity.kt (limited to 'app/src/main/java/me/texx/Texx/PhotoEditorActivity.kt') diff --git a/app/src/main/java/me/texx/Texx/PhotoEditorActivity.kt b/app/src/main/java/me/texx/Texx/PhotoEditorActivity.kt new file mode 100644 index 0000000..dd537a7 --- /dev/null +++ b/app/src/main/java/me/texx/Texx/PhotoEditorActivity.kt @@ -0,0 +1,69 @@ +package me.texx.Texx + +import android.net.Uri +import android.os.Bundle +import android.support.v7.app.AppCompatActivity +import android.view.View +import android.view.Window +import android.view.WindowManager +import daio.io.dresscode.dressCodeName +import daio.io.dresscode.matchDressCode +import ja.burhanrashid52.photoeditor.PhotoEditor +import ja.burhanrashid52.photoeditor.PhotoEditorView +import kotlinx.android.synthetic.main.activity_photo_editor.* +import me.texx.Texx.util.ThemeUtil.getThemeName + +/** + * Activity which will be shown after you've taken a picture + * Previews the taken picture and posts it if you want + */ +class PhotoEditorActivity : AppCompatActivity() { + /** + * Set initial configuration + */ + override fun onCreate(savedInstanceState: Bundle?) { + matchDressCode() + super.onCreate(savedInstanceState) + dressCodeName = getThemeName(this) + requestWindowFeature(Window.FEATURE_NO_TITLE) + window.setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, + WindowManager.LayoutParams.FLAG_FULLSCREEN) + setContentView(R.layout.activity_photo_editor) + + initPhotoEditor() + } + + private fun initPhotoEditor() { + val filepath = intent.getStringExtra("filepath") + val imageEditorView = findViewById(R.id.imageEditor) + imageEditorView.source.setImageURI(Uri.parse(filepath)) + + val photoEditor = PhotoEditor.Builder(this, imageEditorView) + .setPinchTextScalable(true) + .build() + + setButtonListeners(photoEditor) + } + + private fun setButtonListeners(photoEditor: PhotoEditor) { + var currentlyDrawing = false + + photoDrawButton.setOnClickListener { + currentlyDrawing = !currentlyDrawing + photoEditor.setBrushDrawingMode(currentlyDrawing) + + if (currentlyDrawing) drawColorSeekbar.visibility = View.VISIBLE + else { + drawColorSeekbar.visibility = View.GONE + photoDrawButton.setBackgroundColor(View.INVISIBLE) + } + } + + drawColorSeekbar.setOnColorChangeListener { _, _, color -> + if (currentlyDrawing) { + photoEditor.brushColor = color + photoDrawButton.setBackgroundColor(color) + } + } + } +} -- cgit v1.2.3