Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
149 views
in Technique[技术] by (71.8m points)

java - Everything is perfect but there is something missing

  • Everything is perfect but there is something missing!

  • Program error-free random works properly

  • but I want it to do the random inside the string. How can I do this? Can you give code directly

  • these are the current codes I use

Main.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:gravity="center">

    <TextView
        android:id="@+id/tw1"
        android:textSize="50dp"
        android:text="0"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />
    
    <Button 
        android:id="@+id/btn1"
        android:text="random"
        android:textSize="50dp"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />
    

</LinearLayout>

Strings.xml

    <string name="app_name">JarTest</string>
    <string-array name="status">
        <item>Available</item>
        <item>Busy</item>
    </string-array>

Mainactivity.Java

Ex

String name[] = {"pls","sld","ohg","oug","tpp","ohf","yyyyyyy6",};

Buton click

Random m = new Random();
                        int index = m.nextInt(name.length - 0) + 0;
                        tw1.setText(name[index]);
question from:https://stackoverflow.com/questions/65936716/everything-is-perfect-but-there-is-something-missing

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...