你如何控制你得到的随机数。例如,你如何从数字10 - 20控制随机数生成器。我在这里使用eclipse是我的代码:
public class FrontPage extends Activity {
Random rndNumbers = new Random();
int d20 = rndNumbers.nextInt(20) +1;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_front_page);
Button add = (Button) findViewById(R.id.button1);
add.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View arg0) {
int d20 = rndNumbers.nextInt(20) +1;
EditText comment = (EditText) findViewById(R.id.editText1);
Editable commy = comment.getText() ;
String str = commy.toString();
TextView TV = (TextView) findViewById(R.id.textView1);
TV.setText("" + str + d20);
TV.setTextSize(d20);
}
});
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.front_page, menu);
return true;
}
}
请帮忙。
答案 0 :(得分:7)
如何从数字10 - 20
控制随机数生成器
创建0到10之间的随机数,并为其添加10。
int d20 = rndNumbers.nextInt(11)+10;