2012-07-05 133 views
5

我想在我的Android代碼的某處創建一個循環,以某種速度連續更改兩種顏色之間的可繪製矩形的顏色。我想用兩個按鈕啓動並停止閃爍。我做了很多研究,但似乎無法弄清楚如何去做。我是android新手,並沒有run()方法的經驗。但我猜我必須用run()方法創建某種類型的矩形類,並將其變爲動態變化的顏色。Android中的動畫形狀顏色

回答

1

我也是相當新的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個ImageViews:blue_rectanglered_rectangle,無論在佈局相同的地方。這裏是兩個ImageView的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。雖然它是錯誤的,矩形不閃爍。儘管確實如此,blinkRectangle()中的for語句仍在運行。該for循環使藍色可見,等待2秒,使其不可見,使紅色可見,等待兩秒鐘,並重復。 start()stop()方法分別將布爾值切換爲true和false。我認爲這種類型的for循環在回到頂端時重新檢查布爾值。我從來沒有用過它。這就是我可以從我看到的網站收集的信息。

嗯,我認爲這樣做。如果你不明白任何代碼的作用,或者它不起作用,或者我有問題,或者我只是徹頭徹尾的錯誤,或者任何事情,只是評論這個答案。我希望這可以工作!

祝你好運!

P.S.下面是我用來參考

http://www.tutorialspoint.com/java/java_loop_control.htm

http://www.java-examples.com/java-boolean-example

哇網站......我才意識到這個問題是2歲。不過,我希望這可以幫助你!

+0

別擔心,你[獲得徽章](http://stackoverflow.com/questions/10874571/how-does-check-ajax-referer-really-work/18358174#comment27016156_18358174)([Necromancer] (http://stackoverflow.com/help/badges/17/necromancer))和upvotes將證明其有用性;) – brasofilo