在指定时间随机更改不同按钮的颜色

时间:2015-12-18 17:26:06

标签: android

我有4个不同的按钮。我想在固定的时间改变按钮的背景(比如1秒,即一个按钮改变其颜色一秒,然后保持其先前的颜色,然后其他按钮做同样的事情,依此类推),然后是用户将重复此模式。但是我无法随机更改按钮的背景。我知道会使用计时器或处理程序,但我不知道如何使用它。任何人都可以发布一个示例程序,显示如何随机更改按钮的背景吗?

这是我的xml文件: `     

<RelativeLayout 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:background="@drawable/background"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
>


<TextView
android:id="@+id/levelText"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textStyle="bold"
android:textSize="50dp"
android:textColor="#FFFFFF"
android:text = "" />

<TextView
android:id="@+id/countDnText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:textSize="100dp"
android:textStyle="bold"
android:textColor="#FFFFFF"
android:text=""
/>


<Button
android:layout_width="160dp"
android:layout_height="200dp"
android:background="#000000"
android:id="@+id/button5"
android:layout_alignParentTop="true"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:layout_marginTop="79dp" />

<Button
android:layout_width="160dp"
android:layout_height="200dp"
android:background="#000000"
android:id="@+id/button6"
android:layout_alignTop="@+id/button5"
android:layout_alignParentRight="true"
android:layout_alignParentEnd="true"
/>

<Button
style="?android:attr/buttonStyleSmall"
android:layout_width="160dp"
android:layout_height="200dp"
android:background="#000000"
android:id="@+id/button7"
android:layout_below="@+id/button5"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:layout_marginTop="10dp" />

<Button
android:layout_width="160dp"
android:layout_height="200dp"
android:background="#000000"
android:id="@+id/button8"
android:layout_alignTop="@+id/button7"
android:layout_alignParentRight="true"
android:layout_alignParentEnd="true" />

</RelativeLayout>

`

这是我的活动:`

import android.graphics.Color;
import android.os.Bundle;
import android.os.Handler;
import android.support.v7.app.AppCompatActivity;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;

import java.util.Random;
import java.util.Timer;
import java.util.TimerTask;

public class EasyGameActivity extends AppCompatActivity
{

private int counter;
private TextView text;
private boolean flag = false;
private Button button = null;
private int i;

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

    startGame();
}

public void startGame()
{
    counter = 3;
    int temp;

    final Random rand = new Random();
    Handler handler = new Handler();


    while(true)
    {
        BinaryTree binaryTree = new BinaryTree(counter);


        for(int i = 0; i<counter; ++i)
        {
            temp = rand.nextInt(3);

            // yellow color button...
            if(temp == 0)
            {
                button = (Button) findViewById(R.id.button5);
                button.setBackgroundColor(Color.YELLOW);

            }


            else if(temp == 1)
            {
                button = (Button) findViewById(R.id.button6);
                button.setBackgroundColor(Color.BLUE);

            }

            else if(temp == 2)
            {
                button = (Button) findViewById(R.id.button7);
                button.setBackgroundColor(Color.RED);
            }


            else if(temp == 3)
            {
                button = (Button) findViewById(R.id.button8);
                button.setBackgroundColor(Color.GREEN);
            }


            //button.setBackgroundColor(Color.BLACK);

        }
        break;
    }

}

}`

2 个答案:

答案 0 :(得分:0)

您可以尝试这样的事情:

    Button[] changingButtons = new Button[4];
    changingButtons[0] = (Button)findViewById(R.id.button1_id);
    changingButtons[1] = (Button)findViewById(R.id.button2_id);
    changingButtons[2] = (Button)findViewById(R.id.button3_id);
    changingButtons[3] = (Button)findViewById(R.id.button4_id);

然后,您可以访问阵列中的相应按钮,并使用changingButtons[<desired index>].setBackgroundResource(<color resource>)

更改背景颜色

要保留以前的颜色,您可以使用ColorDrawable previousBackground = (ColorDrawable)changingButtons[<desired index>].getBackground();

然后,对于“设定时间”部分,使用计时器,并在TimerTask中进行颜色切换。

如果您希望使用TimerTask,请在调用它的方法中看起来像这样:

    timer = new Timer();
    timer.schedule(new MyTask(buttonNumber), numMilliseconds);

然后MyTask将是TimeTask

的扩展类
    class MyTask extends TimerTask
    {
            private int buttonId;
            public MyTask(int buttonId)
            {
                    super();
                    this.buttonId = buttonId;
            }
            public void run()
            {
                    //Do your button alterations here
            }
    }

以下是我使用上述代码on Ideone制作的示例 希望这能指出你正确的方向!

有关详细信息,请查看以下内容:Changing the background color programmaticallyGetting the background colorJava Timer documentation

答案 1 :(得分:0)

您可以使用Collections.shuffle(colorList);

List<String> colorList=new ArrayList<>();
colorList.add("#108E44");
colorList.add("#000000ff");
colorList.add("#108E44");
for() {
   giveMeButtons(i).setBackgorundColor(Color.parseColor(colorList.get(i)));
}

你必须采取其他方法。它会返回随机查看按钮。