java Android:让按钮显示愚蠢的文本

nqwrtyyt  于 2023-05-05  发布在  Java
关注(0)|答案(2)|浏览(141)

我正在Android中创建一个应用程序,其中有一个按钮,当按下时会显示愚蠢的短语。
我知道怎么让它说两个短语,但我不知道怎么让它做更多。
我还想添加一个功能,让按钮随机选择短语,而不是按照我设置的顺序。
我正在考虑使用一个数组列表。
如何在Android Studio中设置按钮以循环使用不同的方法?
我也想让你知道我是一个初学者,所以请不要对我太苛刻。
这是我的XML:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context=".MainActivity">

    <ImageView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/funny_imageview"
        android:scaleType="fitCenter" />
    <TextView
        android:id="@+id/funny_textview"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="8dp"
        android:text=""/>
    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/funny_sayings_button"
        android:text="Click Me!"
        android:layout_marginTop="8dp"
        android:onClick="changeFunnySayingsButton"/>
</LinearLayout>

我的Java:

package com.example.android.funnysayingsbutton;

import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.view.View;
import android.widget.ImageView;
import android.widget.TextView;

public class MainActivity extends AppCompatActivity {
boolean clicked = false;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
    }

    /**
     * This method changes the funny text and image on the screen when the button is clicked.
     */
    public void changeFunnySayingsButton (View view){
        if (clicked){
            funnySayingOne();
            clicked = false;
        }
        else {
            funnySayingTwo();
            clicked = true;
        }

    }

    /**
     * This method is for the first funny expression.
     */
    public void funnySayingOne(){
        displayAnswer("Time to Monkey Around");
        displayImage(R.drawable.monkey);
    }
    /**
     * This method is for the second funny expression.
     */
    public void funnySayingTwo(){
        displayAnswer("Penguin Party Time");
        displayImage(R.drawable.penguin);
    }

    /**
     * This method is for the third funny expression.
     */
    public void funnySayingThree(){
        displayAnswer("It's Rabbit Season.");
        displayImage(R.drawable.rabbit);
    }

    /**
     * This method displays the funny text on the screen.
     */
    private void displayAnswer(String answer) {
        TextView questionTextView = (TextView)    findViewById(R.id.funny_textview);
        questionTextView.setText(answer);
    }

    /**
     * This method displays the funny image on the screen.
     */
    private void displayImage(int picture) {
        ImageView questionTextView = (ImageView)    findViewById(R.id.funny_imageview);
        questionTextView.setImageResource(picture);
    }

}
f0brbegy

f0brbegy1#

我认为您考虑使用像ArrayList这样的数据结构是正确的。
我会先创建一个类来表示每个有趣的东西,例如。

public class FunnyThing {
  private String phrase; // I'd use a resource ID here
  private int drawableResourceId;
}

然后就是初始化FunnyThing对象集并将它们存储在数据结构中的问题。您可以在Activity的onCreate方法中执行此操作,但您可能需要考虑在其他地方编写工厂方法(例如FunnyThing类),当有超过2-3个有趣的事情时,您的Activity只会调用它来防止代码变得混乱。
最后,在每次按下按钮时,您可以在FunnyThing集合中选择一个随机索引并显示,例如。

private void displayRandomFunnyThing() {
  // assumes you have a java.util.Random instance vairable named mRandom
  FunnyThing ft = mFunnyThings.get( mRandom.nextInt( mFunnyThings.size());
  displayAnswer( ft.phrase );
  displayImage( ft.drawableResourceId);
}

当然,您需要向按钮添加一个onClickListener,但我假设为了简洁起见,您省略了该代码。
你也会遇到短语选择是随机的问题,所以在你看到所有短语之前,你可能会得到很多次相同的短语。如果你想防止重复,那么,这将需要更多的代码。

ghg1uchk

ghg1uchk2#

首先,你的按钮onClick监听器在哪里?这就是你应该添加方法的地方。

Button button = (Button)this.findViewById(R.id.funny_sayings_button);

        button.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {

                 changeFunnySayingsButton (v);
            }
        });

要继续,您可以创建字符串的ArrayList。你把所有的字符串加起来,然后从列表中随机选择一个。提示:

//will choose a random number between 0 and the length of the list - 1
int i = rand.nextInt(yourList.size()); 
String yourFunnyString=yourList.get(i);

如果你还想在字符串旁边显示一个图像,你还应该创建一个Map。使用字符串作为键。当您从yourList中选择时,然后使用此键从Map中选择值(您的图像)。
这应该是相当简单的。

相关问题