3

ユーザーが入力しているものを見つける方法を探していたところEditTextTextWatcher. 問題は、関数内のパラメーターが何を参照しているのか理解できないことです。ユーザーが文字ごとに入力したテキストを追跡したい。どの引数が正しい下付き番号かわかりません。さまざまなバリエーションを試しましたが、うまくいきませんでした。

基本的に、ユーザーが「、」ボタンを押すか、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;

        }
    }

}
4

2 に答える 2

3

beforeTextChanged()変更が発生する前に呼び出されます。ここで、変更されようとしている古いコンテンツを取得できます。

public void beforeTextChanged(CharSequence s, int start, int count, int after) {

  String toBeChanged = s.subSequence(start,start+count).toString();

}

以前のコンテンツを置き換えたものを取得するには、 を使用しますonTextChanged()。これは、置き換えが行われたときに呼び出されます。

public void onTextChanged(CharSequence s, int start, int before, int count) {

  String replacement = s.subSequence(start,start+count).toString();

}

変更内容に関心がなく、単に変更内容を知りたい場合、保存、比較、検証などの目的で、3 番目の方法を使用できますafterTextChanged()。この方法は、ユーザーが 1 つ以上の文字を編集するのを妨げたくない場合に使用します。

public void afterTextChanged(Editable s) {
  String newString = s.toString(); 
}
于 2013-04-20T07:46:15.670 に答える
3

Android のドキュメントでは、次のことを読むことができます。

public abstract void onTextChanged (CharSequence s, int start, int before, int count) API レベル 1 で追加

このメソッドは、 内sで、 でcount 始まる文字startが長さ の古いテキストに置き換わったことを通知するために呼び出されますbefore。このコールバックから s を変更しようとするとエラーになります。

だということだ:

  • sはすでに変更されたテキストです (長さは で取得できます s.length())
  • countは追加された文字数です
  • start新しいキャラクターが追加された位置です
  • before変更前のテキストの長さ

基本的に、あなたが望むものを達成するために、配列の代わりにこのアプローチを使用したいと思います:

@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 ((s.length() - before) > 0) {  // Check if text is longer than before changing
                char current = s.charAt(before);                   
                if (current == '.' || s.length() >= 24) {
                    check.setText(predef);
                    go.setEnabled(true);
                } else {
                    check.setText(s);
                }
            }

        }

        @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

        }
    });
}

そのような単純な。

于 2013-04-20T07:46:17.943 に答える