我想在我的Android代碼的某處創建一個循環,以某種速度連續更改兩種顏色之間的可繪製矩形的顏色。我想用兩個按鈕啓動並停止閃爍。我做了很多研究,但似乎無法弄清楚如何去做。我是android新手,並沒有run()方法的經驗。但我猜我必須用run()方法創建某種類型的矩形類,並將其變爲動態變化的顏色。Android中的動畫形狀顏色
5
A
回答
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_rectangle
和red_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歲。不過,我希望這可以幫助你!
相關問題
- 1. Android形狀動畫
- 2. android - 動畫形狀
- 3. Android動畫副作用:按鈕在動畫顏色時更改其形狀
- 4. android - 引用形狀內的顏色
- 5. Android Opengl 2形狀不同的顏色
- 6. Android:動態更改XML中的形狀顏色
- 7. Android中的動畫顏色過濾器
- 8. WPF - 多邊形上的顏色動畫
- 9. Android更改形狀可繪製顏色
- 10. 改變形狀顏色在Android XML
- 11. Powerpoint更改形狀輪廓/使用動畫填充顏色
- 12. 如何將顏色更改動畫賦予自定義形狀?
- 13. 誰可以使用JQuery動畫以顏色填充此形狀?
- 14. 如何動態改變形狀顏色?
- 15. 如何動態更改形狀顏色?
- 16. 更改HTML5畫布中形狀的顏色
- 17. 動畫矩形顏色變化
- 18. Android的圖標動畫改變顏色
- 19. 顏色區域形狀PHP
- 20. 更改形狀顏色
- 21. java圖形 - 兩種顏色的形狀
- 22. HTML5畫布顏色應用到圖像,其中形狀疊加
- 23. 將新筆畫顏色注入到一個形狀中
- 24. 的Android fingerpaint畫布顏色
- 25. Javascript顏色動畫
- 26. 動畫div顏色
- 27. 繪製2個形狀不同的顏色在畫布上
- 28. Android按鈕動畫(顏色變化)
- 29. android將顏色應用於alpha動畫
- 30. 動畫「fillLinearGradientColorStops」形狀
別擔心,你[獲得徽章](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