我正在尝试设置我的活动,以便我可以从我的 onCreate 方法之外的方法生成一组随机数。这是我的活动的设置方式...
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
this.optionOne();
this.optionTwo();
this.optionThree();
}
public void optionOne() {
// generate a random number here
int random = Math.random();
// generate more random numbers and do more stuff here
}
问题是,我在 onCreate 方法之外生成的任何随机数都被认为是“静态的”,并且数字始终为 0。如果我在 onCreate 方法中生成数字,它当然可以正常工作。我怎样才能解决这个问题?