diff options
Diffstat (limited to 'app/src/main/java/me/texx/Texx/PhotoEditorActivity.kt')
-rw-r--r-- | app/src/main/java/me/texx/Texx/PhotoEditorActivity.kt | 69 |
1 files changed, 69 insertions, 0 deletions
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<PhotoEditorView>(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) + } + } + } +} |