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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
|
package me.texx.Texx
import android.content.Context
import android.graphics.Color.RED
import android.graphics.Typeface
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 android.view.inputmethod.EditorInfo
import android.view.inputmethod.InputMethodManager
import daio.io.dresscode.dressCodeName
import daio.io.dresscode.matchDressCode
import ja.burhanrashid52.photoeditor.OnPhotoEditorListener
import ja.burhanrashid52.photoeditor.PhotoEditor
import ja.burhanrashid52.photoeditor.PhotoEditorView
import ja.burhanrashid52.photoeditor.ViewType
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 var currentlyDrawing = false
private var currentlyTyping = false
private var typingColor = RED
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)
.setDefaultTextTypeface(Typeface.DEFAULT)
.build()
setButtonListeners(photoEditor)
}
private fun setButtonListeners(photoEditor: PhotoEditor) {
// undo button
undoButton.setOnClickListener { photoEditor.undo() }
// redo button
redoButton.setOnClickListener { photoEditor.redo() }
// draw button
drawButton.setOnClickListener {
currentlyDrawing = !currentlyDrawing
photoEditor.setBrushDrawingMode(currentlyDrawing)
if (currentlyDrawing) colorSeekbar.visibility = View.VISIBLE
else {
colorSeekbar.visibility = View.GONE
drawButton.background = ContextCompat.getDrawable(this, R.drawable.ic_mode_edit_white_24dp)
}
}
// type button
typeButton.setOnClickListener {
currentlyTyping = !currentlyTyping
if (currentlyTyping) showTextEditor("")
else hideTextEditor()
}
// text editing "view" for on photo typing
editText.setOnEditorActionListener { _, actionId, _ ->
if (actionId == EditorInfo.IME_ACTION_DONE) {
photoEditor.addText(editText.text.toString(), typingColor)
editText.visibility = View.GONE
}
return@setOnEditorActionListener true
}
// text editing box on photo (long click)
photoEditor.setOnPhotoEditorListener(object : OnPhotoEditorListener {
override fun onEditTextChangeListener(rootView: View, text: String, colorCode: Int) {
currentlyTyping = !currentlyTyping
if (!currentlyTyping) showTextEditor("") // TODO: Fix editing of text
else hideTextEditor()
}
override fun onAddViewListener(viewType: ViewType, numberOfAddedViews: Int) {}
override fun onRemoveViewListener(numberOfAddedViews: Int) {}
override fun onRemoveViewListener(viewType: ViewType, numberOfAddedViews: Int) {}
override fun onStartViewChangeListener(viewType: ViewType) {}
override fun onStopViewChangeListener(viewType: ViewType) {}
})
// color seekbar
colorSeekbar.setOnColorChangeListener { _, _, color ->
if (currentlyDrawing) {
photoEditor.brushColor = color
drawButton.setBackgroundColor(color)
} else if (currentlyTyping) {
typingColor = color
typeButton.setBackgroundColor(color)
}
}
}
private fun showTextEditor(text: String) {
colorSeekbar.visibility = View.VISIBLE
editText.visibility = View.VISIBLE
editText.imeOptions = EditorInfo.IME_ACTION_DONE
editText.setText(text)
editText.requestFocusFromTouch() // set focus
val inputManager = this@PhotoEditorActivity.getSystemService(Context.INPUT_METHOD_SERVICE) as InputMethodManager
inputManager.showSoftInput(editText, 0)
}
private fun hideTextEditor() {
typeButton.background = ContextCompat.getDrawable(this, R.drawable.ic_text_fields_white_24dp)
colorSeekbar.visibility = View.GONE
editText.visibility = View.GONE
}
}
|