到目前为止,我的问题与 android 应用程序有关,我能够使用变量和 onclick 按钮创建 5 个不同的活动以传递下一个活动...
public class Abc extends Activity{
Button one2five;
EditText edtA, edtB, edtC, edtD, edtE, edtF;
String tA, tB, tC, tD, tE, tF;
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setContentView(R.layout.abc);
one2five = (Button) findViewById(R.id.btp1);
edtA = (EditText) findViewById(R.id.etA);
tA = edtA.getText().toString();
edtB = (EditText) findViewById(R.id.etB);
tB = edtB.getText().toString();
edtC = (EditText) findViewById(R.id.etC);
tC = edtC.getText().toString();
edtD = (EditText) findViewById(R.id.etD);
tD = edtD.getText().toString();
edtE = (EditText) findViewById(R.id.etE);
tE = edtE.getText().toString();
edtF = (EditText) findViewById(R.id.etF);
tF = edtF.getText().toString();
one2five.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
Intent openg2j = new Intent("com.sport.sport.G2J");
startActivity(openg2j);
}
});
}
}
现在以此为基础,我又创建了 4 个页面和总共 26 个不同的编辑文本字段。
我的目标是:- 在一个计算页面中获取所有编辑文本。执行计算并将结果发布在一页上。
问题:- 如果字段留空并突出显示字段,则 获取用户文本所有十进制数字用户得到提示。如果用户按回以前的活动应该有以前输入的值。
谁能帮我解决这个问题..谢谢莫妮卡