Android随机数

Android随机数,第1张

概述Android随机数java文件packagecom.example.my_xm_bw_luowei;importandroid.os.Bundle;importandroid.util.Log;importandroid.view.View;importandroid.widget.Button;importandroid.widget.EditText;importandroid.widget.TextView;importandroidx.appco AndroID随机数

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随机数所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1030617.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-23
下一篇 2022-05-23

发表评论

登录后才能评论

评论列表(0条)

保存