王立平--EditText中在xml中设置Text,可以获取到。但是自己填写了Text却获取不到

前端之家收集整理的这篇文章主要介绍了王立平--EditText中在xml中设置Text,可以获取到。但是自己填写了Text却获取不到前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

原因:获取的位置不对。应该在监听里面获取。。

红色注释部分:获取的时候,edittext中还没填写数据。



protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);
setContentView(R.layout.activity_login);

btn_login=(Button) findViewById(R.id.btn_login);


//edt_username=(EditText) findViewById(R.id.edt_username);


final String psw=edt_psw.getText().toString();
btn_login.setOnClickListener(new OnClickListener() {

@Override
public void onClick(View v) {

String username=edt_username.getText().toString();

edt_psw.setText(username);

}

原文链接:https://www.f2er.com/xml/297881.html

猜你在找的XML相关文章