android生成隨機
1. android點擊按鈕讓它出現隨機數
在activity中放兩個控制項,一個Button,一個TextView,
給Button設置點擊監聽事件,
button.setOnClickListener(new OnClickListener(){
public void onClick(View v){
int num = Math.random()*10+20;//產生20-30的隨機數
textView.setText(String.valueOf(num));
}
}
2. android 怎樣生成隨機數
java">Randomrnd=newRandom();
intrndint=rnd.nextInt(10000);
生成0~10000之間的隨機數
3. android隨機數
我有個辦法:
首先你應該有10張數字圖片,然後你在代碼中寫個String數組【0.。。9】數組中的項對應相應的數字圖片,比如1圖片對應String【1】,這樣圖片上的數字 你就可以拿到4個String字元串了 然後把4個字元串用StringBuider拼接起來轉化成一個String字元串 和editext.gettext拿到的數據作比較,相等返回true 否則返回false。
String[]s={"0","1","2","3","4","5","6","7","8","9"};
//比如圖片展示的1052
StringBuilderstringBuilder=newStringBuilder();
stringBuilder.append(s[1]).append(s[0]).append(s[5]).append(s[2]);
StringtoString=stringBuilder.toString();
e=editText.getText().toString();
if(toString.equals(e)){
returntrue;
}else{
returnfalse;
}
4. android開發,生成一個a,b間的隨機整數
用 EditText輸入a,b 獲取a,b的差,用Math的random()方法生成0~1的隨機數,再乘以ab的差,轉換成int,加上a,就Ok,TextView輸出就OK
5. android如何產生隨機數
android產生隨機數的方法:此方法通過把當前時刻長整型數傳給Random對象,讓它產生的值隨著時間而變化。
[java] view plain
Strings = "";
Random ran =new Random(System.currentTimeMillis());
for (inti = 0; i < 10; i++) {
s =s + "\n" + ran.nextInt(100);
}
Toast.makeText(UiTestActivity.this,"Random: \n" + s, Toast.LENGTH_LONG).show();
6. Android應用程序,當點擊「啟動服務」按鈕後,啟動後台服務,隨機產生一個隨機數
packagecom.accumulation.point;
importandroid.app.Service;
importandroid.content.Intent;
importandroid.os.IBinder;
importandroid.widget.Toast;
importcom.accumulation.point.utils.LogUtils;
{
@Override
publicvoidonStart(Intentintent,intstartId){
super.onStart(intent,startId);
LogUtils.e("mservice");
Toast.makeText(getApplicationContext(),Math.random()+"",Toast.LENGTH_LONG).show();
}
@Override
publicIBinderonBind(Intentintent){
returnnull;
}
}
startService(new Intent(this, mservice.class));
記得注冊<service android:name=".mservice" />
7. android中怎麼產生一個隨機數
產生隨機數的話,可以直接使用random這個類,可以隨機生成數字的
8. android開發 生成隨機數 import java.util.Random; public c
不用改xml啊,你給textview設定一個id,代碼中通過findViewById方法獲取到這個id的view,然後調用setText方法就可以了