java文件
package com.example.my_xm_bw_luowei;import androID.os.Bundle;import androID.util.Log;import androID.vIEw.VIEw;import androID.Widget.button;import androID.Widget.EditText;import androID.Widget.TextVIEw;import androIDx.appcompat.app.AppCompatActivity;import java.util.Random;public class MainActivity extends AppCompatActivity { private button bt1; private EditText et1; private EditText et2; private TextVIEw tv; private int i=0; @OverrIDe protected voID onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentVIEw(R.layout.activity_main); bt1 = (button) findVIEwByID(R.ID.bt1); et2 = (EditText) findVIEwByID(R.ID.et2); tv = (TextVIEw) findVIEwByID(R.ID.tv); bt1.setonClickListener(new VIEw.OnClickListener() { @OverrIDe public voID onClick(VIEw v) { i++; String trim2 = et2.getText().toString().trim(); String s = ""; Random ran =new Random(System.currentTimeMillis()); Log.d("aaa", "onClick: "+i); for (int i = 0 ; i <1; i++) { s = s + "\n" + ran.nextInt(Integer.parseInt(trim2)); } tv.setText(s+""); if (i==10){ tv.setText("直接让高金玉上 嘻嘻嘻"); } } }); }}
xml文件
<?xml version="1.0" enCoding="utf-8"?><linearLayout xmlns:androID="http://schemas.androID.com/apk/res/androID" xmlns:app="http://schemas.androID.com/apk/res-auto" xmlns:tools="http://schemas.androID.com/tools" androID:layout_wIDth="match_parent" androID:layout_height="match_parent" tools:context=".MainActivity" androID:orIEntation="vertical" > <button androID:text="高金玉" androID:ID="@+ID/bt1" androID:background="#ffffff" androID:layout_wIDth="wrap_content" androID:layout_height="wrap_content"></button> <EditText androID:ID="@+ID/et2" androID:hint="0-n" androID:layout_wIDth="match_parent" androID:layout_height="wrap_content"></EditText> <TextVIEw androID:textcolor="#DD0D0D" androID:textSize="50dp" androID:ID="@+ID/tv" androID:text="0" androID:layout_wIDth="wrap_content" androID:layout_height="wrap_content"></TextVIEw></linearLayout>
效果图片
总结以上是内存溢出为你收集整理的Android随机数全部内容,希望文章能够帮你解决Android随机数所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)