|
吾爱游客
发表于 2017-12-8 11:59
申请ID:748628035
个人邮箱:748628035@qq.com
原创技术文章:
我是学移动应用开发的,主要是Java,现在在上大一,学艺不精,粘贴出我不久之前写的Java代码,也希望管理可以给一个机会加入论坛,学习技术
public class MainActivity extends Activity {
private EditText _name,_sex,_age,_add;
String name,ages,sex,add;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
public void name(View v)
{
_name = (EditText) findViewById(R.id.name);
name = _name.getText().toString();
Toast.makeText(this, name, Toast.LENGTH_SHORT).show();
}
public void sex(View v)
{
_sex = (EditText) findViewById(R.id.sex);
sex = _sex.getText().toString();
if("男".equals(sex)||"女".equals(sex))
{
Toast.makeText(this, sex, Toast.LENGTH_SHORT).show();
}else
{
Toast.makeText(this, "输入错误!请输入 男或女 !",Toast.LENGTH_SHORT).show();
}
}
public void age(View v)
{
_age = (EditText) findViewById(R.id.age);
ages = _age.getText().toString();
int age = Integer.valueOf(ages);
if(age>0 && age<100)
{
Toast.makeText(this, ages, Toast.LENGTH_SHORT).show();
}else
{
Toast.makeText(this, "请输入1-100之内的数字!", Toast.LENGTH_SHORT).show();
}
}
public void add(View v)
{
_add = (EditText) findViewById(R.id.add);
add = _add.getText().toString();
Toast.makeText(this, add, Toast.LENGTH_SHORT).show();
Toast.makeText(this, "你的名字是:"+name+"\n你的性别是:"+sex+"\n你的年龄是:"+ages+"\n你的家乡是:"+add, Toast.LENGTH_LONG).show();
}
}
|
|
发帖前要善用【论坛搜索】功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。 |
|
|
|
|