我想在我的Android代码中创建一个循环,以某种速率连续改变两种颜色之间的可绘制矩形的颜色。我想用两个按钮开始并停止闪烁。我已经做了很多研究,但似乎无法弄清楚如何去做。我是android新手,没有run()方法的经验。但我猜我必须使用run()方法制作某种矩形类,将其设置为更改颜色。
答案 0 :(得分:2)
我对android也很新,但我会试一试。
因为你说你希望它闪烁,你应该可以在蓝色和红色之间切换实际图像,只需要简单的' for'环。按下按钮时,可以将布尔值的状态从false更改为true。然后,当' for'声明不再是真的,它跳转到下一组代码,它会停止它。这就是我要做的。
两个按钮的XML:
<Button
android:id="@+id/start"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Start"
android:Clickable="true"
android:onClick="start"
/>
<Button
android:id="@+id/stop" <!-- Gives the button an ID to use in java code -->
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Stop" <!-- sets the text on the button -->
android:Clickable="true" <!-- makes the button clickable -->
android:onClick="stop" <!-- The method it calls when it is clicked, removes the necessity of an OnClickListener -->
/>
现在,您将拥有2个ImageView:blue_rectangle
和red_rectangle
,两者都位于布局中的相同位置。这是两个ImageViews的XML
<ImageView
android:id="@+id/blue_rectangle"
android:layout_width="100dp"
android:layout_height="75dp"
android:layout_marginLeft="50dp"
android:layout_marginTop="5dp"
android:src="@drawable/blue_rectangle" />
<ImageView
android:id="@+id/red_rectangle"
android:layout_width="100dp"
android:layout_height="75dp"
android:layout_marginLeft="50dp"
android:layout_marginTop="5dp"
android:src="@drawable/red_rectangle" />
下一部分是棘手的部分。
这是Java。
package your.package.name.thingy.here;
//everything it tells you to import goes here
public class BlinkingActivity extends Activity{
ImageView blueRectangle;
ImageView redRectangle;
Button start;
Button stop;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.yourLayout);
blueRectangle = (ImageView) findViewById(R.id.blue_rectangle);
redRectangle = (ImageView) findViewById(R.id.red_rectangle);
start = (Button) findViewById(R.id.start);
stop = (Button) findViewById(R.id.stop);
Boolean isBlinking = new Boolean(false);
blinkRectangle(whateverVariableThisNeeds);
}
public static void blinkRectangle(View view){
blueRectangle.setVisibility(View.INVISIBLE);
redRectangle.setVisibility(View.INVISIBLE);
for(initialization; isBlinking; update){
blueRectangle.setVisibility(View.VISIBLE);
blueRectangle.postDelayed(new Runnable() {
@Override
public void run() {
blueRectangle.setVisibility(View.INVISIBLE);
}
}, 2000); //the 2000 is the number of milliseconds for how long blue is visible
redRectangle.setVisibility(View.VISIBLE);
redRectangle.postDelayed(new Runnable() {
@Override
public void run(){
redRectangle.setVisibility(View.INVISIBLE);
}
}, 2000);
blueRectangle.setVisibility(View.VISIBLE); //This prevents a bug where if the user hits the stop button at just the right time, both rectangles will be invisible.
}
public static void start(View view){ //no need to call this anywhere, the XML onClick does it for you
isBlinking = true; //I think this is how you set a boolean, if not, correct me.
}
public static void stop(View view){//same here
isBlinking = false; //again, correct me if I'm wrong.
}
}
以下是代码的基本功能。
它有一个默认为false的布尔值。虽然它是假的,但矩形不会闪烁。虽然这是真的,for
中的blinkRectangle()
语句会运行。 for
循环使蓝色可见,等待2秒,使其不可见,使红色可见,等待两秒,然后重复。 start()
和stop()
方法分别将布尔值切换为true和false。我认为这种类型的for
循环在返回顶部时会重新检查布尔值。我以前从未使用它。这是我从我看过的网站上收集到的内容。
嗯,我认为就是这样。如果您不了解任何代码的作用,或者它不起作用,或者我的问题是错误的,或者我只是完全错了,或者任何事情,只需评论这个答案。我希望这有效!
祝你好运!
P.S。以下是我用作参考的网站
哇...我刚刚意识到这个问题是2岁了。不过,我希望这能帮到你!