我正在开发Android应用程序。 该应用程序有一系列表单,我想确认用户在转到下一组表单之前填写了这些表单。最好的方法是什么?
public void goOne()
{
setContentView(R.layout.main);
next = (Button) findViewById(R.id.next);
logo = (Button) findViewById(R.id.logo);
cityText = (EditText)findViewById(R.id.city);
about = (Button) findViewById(R.id.aboutus);
about.setOnClickListener(new View.OnClickListener()
{
public void onClick(View v)
{
goAboutUs();
}
});
logo.setOnClickListener(new View.OnClickListener()
{
public void onClick(View v)
{
goOne();
}
});
next.setOnClickListener(new View.OnClickListener() {
public void onClick(View v)
{
city = (String)cityText.getText().toString();
if(stateLoc.equalsIgnoreCase("international"))
{
location = "";
isInternational = 1;
}else
{
location = city;
}
if(cityText.getText().equals("") && stateLoc.equalsIgnoreCase("U.S.A"))
{
new AlertDialog.Builder(Tents.this)
.setTitle("Error")
.setMessage("Enter ZIP Code, or choice International ")
.setPositiveButton("Ok", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int whichButton) {
goOne();
}
}).show();
}else{
goTwo();
}
}
});
这是我的代码。我正在尝试验证cityText文本框。如果它没有任何内容并且stateLoc设置为U.S.A然后弹出警报,如果没有那么goTwo()
答案 0 :(得分:0)
您并没有真正向我们提供大量信息,但您最终是否在表单上提交了相关信息?你不能检查用户是否留空信息吗?
答案 1 :(得分:0)
如果表单是普通文本视图,则可以使用以下代码:
myTextView.getText().trim().isEmpty()
将返回textview是否为空