Код: Выделить всё
public class A extends Activity {
int value;
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
.
.
.
methodA();
}
public void methodA() {
if (condition) {
value = 1
} else if (condition) {
value = 2
} else {
value = 3
}
}
}
}
< /code>
public class B extends Activity {
protected void onCreate(Bundle savedInstanceState) {
int val;
super.onCreate(savedInstanceState);
.
.
//how do we can get val = value
}
}
Подробнее здесь: https://stackoverflow.com/questions/230 ... ith-method