I want to change the color of a button for a few seconds than change it back

Seetha

My Android button color is blue. I want to change the button color to red for 5 seconds. After 5 seconds, I need to change the button color back to blue.

Here is my code

 new Handler().postDelayed(new Runnable() {

                public void run() {
                    eyesOnchkBtn.setBackgroundColor(Color.RED);
                }
            }, 5000);


            eyesOnchkBtn.setBackgroundColor(Color.BLUE); // It wont change the color button as normal
Anu

Hope the following code will help

eyesOnchkBtn.setBackgroundColor(Color.RED);
new CountDownTimer(5000, 50) {

        @Override
        public void onTick(long arg0) {
            // TODO Auto-generated method stub

        }

        @Override
        public void onFinish() {
                        eyesOnchkBtn.setBackgroundColor(Color.BLUE);
                    }
    }.start();

이 기사는 인터넷에서 수집됩니다. 재 인쇄 할 때 출처를 알려주십시오.

침해가 발생한 경우 연락 주시기 바랍니다[email protected] 삭제

에서 수정
0

몇 마디 만하겠습니다

0리뷰
로그인참여 후 검토

관련 기사

분류에서Dev

Change foreground color of back button in UWP NavigationView

분류에서Dev

How to change the color of button and pause screen for few second when it clicked?

분류에서Dev

How to change button color

분류에서Dev

Change button color when clicked

분류에서Dev

jfxtras - CalendarPicker change button color

분류에서Dev

i want to change my checkboxes

분류에서Dev

XPages - change background color of place bar button

분류에서Dev

How can i change hyperlink color with JQuery?

분류에서Dev

How can I change button value with stylish?

분류에서Dev

How do I change Button Text color onclick event(asp.net, C#)using Css file?

분류에서Dev

How to make a Widget change color briefly like a button

분류에서Dev

Change color of an asp.net button on mouse hover using css

분류에서Dev

Change the color of the ResizeGrip in WPF

분류에서Dev

Change the color of the noUiSlider

분류에서Dev

change axis color dimple

분류에서Dev

How can i change the color of my lines in drawing GUI

분류에서Dev

how do i change the font color of current link

분류에서Dev

How can I change the color of android:homeAsUpIndicator in theme

분류에서Dev

How can I change the color of the selected item in a menu?

분류에서Dev

How do I change the color of all text and backgrounds with javascript?

분류에서Dev

How do I permanently change the background color of a row in a Listview?

분류에서Dev

Change control colour, and change it back to original

분류에서Dev

How can I make Xamarin show the hamburger icon rather than the back button?

분류에서Dev

Im not expert in css i need a help to change a button colorea

분류에서Dev

How can i change activity using login (username and password) ,button ?

분류에서Dev

How do I change/replace fragment on button press?

분류에서Dev

Change the state of button to pressed

분류에서Dev

How to change button value?

분류에서Dev

UIPageViewController - Detect scrolling halfway into the next view controller (almost working) to change button color?

Related 관련 기사

  1. 1

    Change foreground color of back button in UWP NavigationView

  2. 2

    How to change the color of button and pause screen for few second when it clicked?

  3. 3

    How to change button color

  4. 4

    Change button color when clicked

  5. 5

    jfxtras - CalendarPicker change button color

  6. 6

    i want to change my checkboxes

  7. 7

    XPages - change background color of place bar button

  8. 8

    How can i change hyperlink color with JQuery?

  9. 9

    How can I change button value with stylish?

  10. 10

    How do I change Button Text color onclick event(asp.net, C#)using Css file?

  11. 11

    How to make a Widget change color briefly like a button

  12. 12

    Change color of an asp.net button on mouse hover using css

  13. 13

    Change the color of the ResizeGrip in WPF

  14. 14

    Change the color of the noUiSlider

  15. 15

    change axis color dimple

  16. 16

    How can i change the color of my lines in drawing GUI

  17. 17

    how do i change the font color of current link

  18. 18

    How can I change the color of android:homeAsUpIndicator in theme

  19. 19

    How can I change the color of the selected item in a menu?

  20. 20

    How do I change the color of all text and backgrounds with javascript?

  21. 21

    How do I permanently change the background color of a row in a Listview?

  22. 22

    Change control colour, and change it back to original

  23. 23

    How can I make Xamarin show the hamburger icon rather than the back button?

  24. 24

    Im not expert in css i need a help to change a button colorea

  25. 25

    How can i change activity using login (username and password) ,button ?

  26. 26

    How do I change/replace fragment on button press?

  27. 27

    Change the state of button to pressed

  28. 28

    How to change button value?

  29. 29

    UIPageViewController - Detect scrolling halfway into the next view controller (almost working) to change button color?

뜨겁다태그

보관