blob: 7fff34ae732cc9c1d63b2525f7c81ac996d57d16 (
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
|
package me.texx.Texx
import android.net.Uri
import android.os.Bundle
import android.support.v4.content.ContextCompat
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
undoButton.setOnClickListener { photoEditor.undo() }
redoButton.setOnClickListener { photoEditor.redo() }
photoDrawButton.setOnClickListener {
currentlyDrawing = !currentlyDrawing
photoEditor.setBrushDrawingMode(currentlyDrawing)
if (currentlyDrawing) drawColorSeekbar.visibility = View.VISIBLE
else {
drawColorSeekbar.visibility = View.GONE
photoDrawButton.background = ContextCompat.getDrawable(this, R.drawable.ic_mode_edit_white_24dp)
}
}
drawColorSeekbar.setOnColorChangeListener { _, _, color ->
if (currentlyDrawing) {
photoEditor.brushColor = color
photoDrawButton.setBackgroundColor(color)
}
}
}
}
|