-
Notifications
You must be signed in to change notification settings - Fork 9
/
Edit box
134 lines (117 loc) · 3.7 KB
/
Edit box
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
// Multline edit box by Ullrich Heinemann @uheinema https://github.com/uheinema
import android.os.Bundle;
import android.app.Activity;
import android.content.Context;
import android.content.Intent;
import android.content.*;
import android.widget.FrameLayout;
import android.widget.RelativeLayout;
import android.widget.EditText;
import android.text.Editable;
import android.graphics.Color;
import android.view.WindowManager;
import android.view.inputmethod.InputMethodManager;
import android.view.View.OnKeyListener;
import android.view.View;
import android.view.KeyEvent;
import android.view.View.OnClickListener;
import android.view.ViewGroup.LayoutParams;
import android.view.Gravity;
import android.R;
import processing.android.CompatUtils;
import android.util.TypedValue;
import android.text.method.ScrollingMovementMethod;
EditText edit;
// int editId;
String txt;
public void setup() {
fullScreen();
textSize(100);
edit = createEdit(100, idth/4, height/6, width/2, height/3);
addView(edit);
}
void draw() {
background(frameCount|0xfff0f000);
txt = edit.getText().toString();
fill(0);
text(txt, 50, 100);
if ("666".equals(txt)) {
// bleh...must runonui
show(edit, false);
}
if ("777".equals(txt)) {
edit.getText().clear();
}
// edit.scrollTo(0,frameCount);
// edit.setX(100+frameCount%200);
}
EditText createEdit(int ts, int x, int y, int w, int h) { // x,y,bla,...
EditText edit = new EditText(getContext());
edit.setLayoutParams (new RelativeLayout.LayoutParams (RelativeLayout.LayoutParams.WRAP_CONTENT, RelativeLayout.LayoutParams.WRAP_CONTENT));
edit.setHint("Write Here!");
edit.setTextColor(Color.rgb(0, 0, 0));
edit.setTextSize(TypedValue.COMPLEX_UNIT_PX, ts);
edit.setHintTextColor(Color.rgb(170, 170, 170));
edit.setBackgroundColor(//0); // transparent
Color.WHITE); // edit.getBackground().setAlpha(255);
// no background displays input line???
edit.getLayoutParams().width=w;
edit.getLayoutParams().height=h;
edit.setX(x);
edit.setY(y);
edit.setTextSize(TypedValue.COMPLEX_UNIT_PX, ts);
edit.setGravity(Gravity.START);
// edit.setMovementMethod(new ScrollingMovementMethod()); // no effect?
edit.setVerticalScrollBarEnabled(true);
edit.setHorizontalScrollBarEnabled(true);
// edit.requestFocus(); // we are not even shown?
// all these have almost no(?) effect...
edit.setInputType(
android.text.InputType.TYPE_CLASS_TEXT
// | android.text.InputType. TYPE_TEXT_FLAG_NO_SUGGESTIONS
// | android.text.InputType. TYPE_TEXT_VARIATION_LONG_MESSAGE
| android.text.InputType. TYPE_TEXT_FLAG_MULTI_LINE); // Multiple lines
// edit.setInputType(android.text.InputType.TYPE_CLASS_TEXT); // Single line
// editId = CompatUtils.getUniqueViewId();
// edit.setId(editId);
edit.setOnKeyListener( // useless, only gets ctrl keys
new View.OnKeyListener() {
@ Override
public boolean onKey(View v, int keyCode, KeyEvent event) {
println("keycode: "+keyCode);
if (event.getAction() == KeyEvent.ACTION_DOWN && event.getKeyCode()== KeyEvent.KEYCODE_ENTER) {
// return true; // make edit ignore cr or trigget action
}
return false;
}
}
);
return edit;
}
void addView(View v) {
final View vv=v;
final FrameLayout fl = (FrameLayout)getActivity().findViewById(R.id.content);
getActivity().runOnUiThread(
new Runnable() {
@Override
public void run() {
fl.addView(vv);
}
}
);
}
void show(View v, boolean vis) {
final View vv=v;
final boolean gg=vis;
getActivity().runOnUiThread(
new Runnable() {
@Override
public void run() {
if (gg)
vv.setVisibility(View.VISIBLE);
else
vv.setVisibility(View.GONE);
}
}
);
}