获取字符数 Android Java 中的文本长度
Get text length in characters number Android Java
我有一个文本框 (EditText),我将在其中插入文本,还有一个按钮应该计算该文本的长度并将其显示在另一个文本框中。我应该如何编码该按钮?
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Button b1=findViewById(R.id.b1);
Button b2=findViewById(R.id.b2);
EditText t1=findViewById(R.id.t1);
TextView t2;
t2 = findViewById(R.id.t2);
b1.setOnClickListener(view -> {
int nb=0;
for(int i=0; i<t1.length(); ++i){
nb++;
}
t2.setText(Integer.toString(nb));
});
b2.setOnClickListener(view -> {
t2.setText(t1.getText().toString());
});
}
我有一个文本框 (EditText),我将在其中插入文本,还有一个按钮应该计算该文本的长度并将其显示在另一个文本框中。我应该如何编码该按钮?
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Button b1=findViewById(R.id.b1);
Button b2=findViewById(R.id.b2);
EditText t1=findViewById(R.id.t1);
TextView t2;
t2 = findViewById(R.id.t2);
b1.setOnClickListener(view -> {
int nb=0;
for(int i=0; i<t1.length(); ++i){
nb++;
}
t2.setText(Integer.toString(nb));
});
b2.setOnClickListener(view -> {
t2.setText(t1.getText().toString());
});
}