人
我正在尝试在Android中创建基本用户界面,仅用于原型设计。 我有一个活动,它基本上提供了一个带有TextFiels的登录屏幕,用于输入UserName和Password。一旦验证了这些,我想展示另一个活动,为authonticated用户提供一些任务。你能告诉我这方面的线索吗?
此致
答案 0 :(得分:1)
这将启动另一个活动,并传递变量Text
Intent myIntent = new Intent(getBaseContext(), mynewActivity.class);
myIntent.putExtra("Text", txtString);
startActivityForResult(myIntent,101);
答案 1 :(得分:0)
将onClick添加到该按钮,并在onCreate中获取用户名和密码字段
public void Login(View v)
{
if(checkLogin(username, password))
{
Intent i = new Intent(this, SecondActivity.class);
Bundle b = new Bundle();
b.putString("USERNAME", username);
i.putExtras(b);
this.startActivity(i);
}
else
{
Toast.makeText(this, "Username or password incorrect", Toast.LENGH_SHORT).show();
}
}