I'd like to flash/blink the stroke of a button a few times based on a timer. For example, every 30 seconds flash the stroke 3 times from white to black or some such thing. Can this be done? Thanks

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

you can create custom button layouts like such and put them in the drawable folder

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">

<item>        
    <shape>
        <gradient
            android:endColor="@color/white"
            android:startColor="@color/whitesmoke"
            android:angle="270" />
        <stroke
            android:width="2dp"
            android:color="@color/grey3" />
        <corners
            android:radius="10dp" />
    </shape>
</item>

where the color grey3 is the border and you can start a timer and add a TimerTask class to your class and then make it run the task every 30 seconds and just change the buttons background from one .xml to another with a different border color.

link|improve this answer
In this case, I think what it would have to be is more like two timers. I was envisioning a quick 1,2,3,4 flash every 30 seconds or whatever. Like, the three blinks would last a total of 1 second or something. Just a real fast "get your attention" kind of thing...kind of a reminder. So, there'd have to be a way to do the blink (one timer) for a certain interval (another timer). – Metallicraft Jun 18 '11 at 21:27
yea. you could start a countdowntimer every 30 seconds that runs for 1 second and you can set the interval to every 200 milliseconds or something. – Robin Jun 19 '11 at 2:49
timer = new CountDownTimer(1000, 200) { public void onTick(long millisUntilFinished) { //change picture here } } } } public void onFinish() { } } } }; – Robin Jun 19 '11 at 2:51
i'll have to try it out, i've never used a timer before. does that code cover both? – Metallicraft Jun 19 '11 at 4:13
that will cover the blinking of it, the timer to make that happen every 30 seconds will look something like this: Timer relaxed = new Timer(); relaxed.scheduleAtFixedRate(new timerTask(), 1000, 1000); – Robin Jun 21 '11 at 1:56
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.