Activity1
- Activity1
中存储的textView1
总分
Activity2
- Activity2
中存储的textView2
总分数
Activity3
- textView1
中存储的textView2
和textView3
值的总和
如何才能将textView1
和textView2
的总和显示在textView3
中?
答案 0 :(得分:0)
您只需在活动1和活动中获取公共静态变量,并将文本视图的值存储在该变量中。并通过获取活动1或2的实例来访问活动3中的这些变量。
例如: -
Activity 1:-
public static String textview1_value;
textview1_value = textview1.getText().toString;
Activity 2:-
public static String textview2_value;
textview2_value = textview2.getText().toString;
//Now in Activity 3 onCreate methode:-
//sum contains the sum of textview1 and textview2 values
int sum = Integer.parse(Activity1.textview1_value)+Integer.parse(Activity2.textview2_value);