1

我正在开发一个 android 应用程序,其中根据用户的输入进行 5 次计算......并且这 5 个计算结果必须通过 textviews 在另一个活动中显示......我做了一半代码......其中一个结果被显示在 textview 的第二个活动中,但我对如何通过其他 textview 进行其他 4 次计算感到困惑......

public void sum(View v)
    {
        long sum1=0;
        EditText et1 = (EditText) findViewById (R.id.editText1);
        EditText et2 = (EditText) findViewById (R.id.editText2);
        EditText et3 = (EditText) findViewById (R.id.editText3);
        EditText et4 = (EditText) findViewById (R.id.editText4);



        sum1=getSum(et1.getText().toString() + et2.getText().toString() + et3.getText().toString() + et4.getText().toString());

startActivity(new Intent(this, result.class).putExtra("name", sum1 + "")); 

    }

public long getSum(String text) 
    {
        // TODO Auto-generated method stub
        long sum1 = 0;
        char[] name = new char[text.length()];
        name = text.toCharArray();


        for(int i=0; i<text.length(); i++)
        {
            sum1 += value( name[i] );

        }
        while (sum1>9)
        {
            sum1 = findDigitSum(sum1);
        }

        return sum1;
    }





    public long findDigitSum(long n) 
    {
        int sum1 = 0;
        while (n != 0) 
        {
            sum1 += n % 10;
            n = n / 10;
        }
        return sum1;
    }



    private int value(char a) {
        // TODO Auto-generated method stub
        switch(a) {
        case 'A': 
           return 1;
        case 'B':
           return 2;
        case 'C':
           return 3;
        case 'D': 
            return 4;
         case 'E':
            return 5;
         case 'F':
            return 6; 
         case 'G': 
             return 7;
          case 'H':
             return 8;
          case 'I':
             return 9;
          case 'J': 
              return 1;
          case 'K':
              return 2;
           case 'L':
              return 3;
           case 'M': 
               return 4;
            case 'N':
               return 5;
            case 'O':
               return 6; 
            case 'P': 
                return 7;
             case 'Q':
                return 8;
             case 'R':
                return 9;
             case 'S': 
                 return 1;
             case 'T':
                 return 2;
              case 'U':
                 return 3;
              case 'V': 
                  return 4;
               case 'W':
                  return 5;
               case 'X':
                  return 6; 
               case 'Y': 
                   return 7;
                case 'Z':
                   return 8;
                 default:
            return 0;
    }
    }

第二次活动

结果.java

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.result_xm);
    TextView txt2 = (TextView) findViewById(R.id.textView21);
    txt2.setText(getIntent().getStringExtra("name"));
   }
4

3 回答 3

2

extra我对您在做什么感到困惑,但是您一次可以将多个. If possible, do all of your calculations insum(View v) then pass them all. So change yourIntent` 传递给类似的东西

Intent i = new Intent(this, result.class)
i.putExtra("sum1", sum1 + "");
i.putExtra("sum2". String.valueOf(sum2));
// etc
startActivity(i); 

然后Activity用类似的东西让它们进入你的下一个

    @Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.result_xm);
    Intent i = getIntent();
    String sum1 = i.getStringExtra("sum1");
    String sum2 = i.getStringExtra("sum2");
    // etc
于 2013-08-27T20:22:31.350 回答
1

您可以使用 Bundle 将参数传递给您的活动:

Bundle bundle = new Bundle();

bundle.putString("arg1", argument to pass);
bundle.putString("arg2", argument to pass);
bundle.putString("arg3", argument to pass);
bundle.putString("arg4", argument to pass);

intent.putExtras(bundle);
startActivity(intent);
于 2013-08-27T20:21:59.110 回答
0

您可以在您的意图中添加任意数量的额外内容,以不同的方式命名,并使用该名称来识别接收活动中的那条数据。

于 2013-08-27T20:32:52.787 回答