目前我在登录屏幕上有我的用户名和密码字段。
用户输入这些凭据,然后在成功登录后,登录活动将关闭,用户将被定向到菜单页面。
我想要做的是使用在登录字段中输入的用户名在菜单中创建“Hello USERNAME”句子。
不太确定如何做到这一点。有人可以帮忙。
答案 0 :(得分:1)
做这样的事情
登录活动
String userName;
if(login_ok){
final Intent i = new Intent(Login.this, Welcome.class);
i.putExtras("userName",userName);//sending checked value to next activity
startActivity(i);
}
欢迎活动
TextView view1 = (TextView)findViewById(R.id.textView1);
Bundle bundle = getIntent().getExtras();
String user=bundle.getString("userName"));
view1.setText("Welcome "+user);