ユーザーが入力しているものを見つける方法を探していたところEditText
、TextWatcher
. 問題は、関数内のパラメーターが何を参照しているのか理解できないことです。ユーザーが文字ごとに入力したテキストを追跡したい。どの引数が正しい下付き番号かわかりません。さまざまなバリエーションを試しましたが、うまくいきませんでした。
基本的に、ユーザーが「、」ボタンを押すか、24 文字の制限を超えるまで、配列に入力されたテキストを保存したいと考えています。 お知らせ下さい。
public class Main extends Activity implements OnClickListener {
// inputans.setOnKeyListener(this);
Button go;
TextView answer;
TextView check;
EditText inputans, inputq;
boolean done1 = false;
char[] ans = new char[30];
String predef = "Please answer my question";
char[] predefc = predef.toCharArray();
int len = predefc.length;
int i = 0;
char[] substring = new char[30];
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
initialisevars();
go.setEnabled(false);
go.setOnClickListener(this);
inputans.addTextChangedListener(new TextWatcher() {
@Override
public void onTextChanged(CharSequence s, int start, int before,
int count) {
if ((count - before) > 0) {
char current = s.charAt(before);
if (current == '.' || i >= 24) { // 24 check
// ans[i]='\0';
// inputans.setText(predef,
// TextView.BufferType.EDITABLE);
check.setText(predef);
go.setEnabled(true);
} else {
ans[i] = current;
i++; // char[] substring = char[30]; back button
// problem,check if prev length - current length
// >0
int m;
for (m = 0; m <= i; m++) {
substring[m] = predefc[m];
}
check.setText(substring.toString());
// substring[m]='\0';
/*
* inputans.setText(substring.toString(),
* TextView.BufferType.EDITABLE);
*/
}
}
}
@Override
public void beforeTextChanged(CharSequence s, int start, int count,
int after) {
// TODO Auto-generated method stub
}
@Override
public void afterTextChanged(Editable s) {
// TODO Auto-generated method stub
}
});
}
private void initialisevars() {
// TODO Auto-generated method stub
go = (Button) findViewById(R.id.bGo);
answer = (TextView) findViewById(R.id.tvAns);
inputans = (EditText) findViewById(R.id.etTricky);
inputq = (EditText) findViewById(R.id.etQues);
check = (TextView) findViewById(R.id.textView1);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
switch (v.getId()) {
case R.id.bGo: {
answer.setText(ans.toString());
}
break;
}
}
}