环境搭建好,然后可以开始创建你的第一个应用程序了,在res 资源目录里面,content main xml里面创建2个text框和2个lable,然后创建一个按钮,在onclick里面设置showinfo函数
public void showinfo(View view)
{
EditText userName = (EditText)this.findViewById(R.id.editTextName);//寻找你的控件
EditText userPWD = (EditText)this.findViewById(R.id.editTextPWD);
String name = userName.getText().toString();//返回对象类型,转换成字符
String pwd = userPWD.getText().toString();
String message = "Your name is "+name+" password is "+pwd;//2个内容赋值给message
Toast.makeText(MainActivity.this,message,Toast.LENGTH_LONG).show();//使用toast提示message
}
点击运行
下方进度条会显示gradle binding,程序会完成编译打包上传安装到AVD设备
手机里面会安装my application这个apk,然后点击此程序
现在你的程序就已经显示出来了
输入用户名和密码,点提交已经可以显示你的输入数据了。