[android-developers] Timer problem

2011-07-19 Thread Salih Selametoglu
Hello every android :) i have got a problem that is about timer. I
wanna change image every 10 seconds but i have not done yet. I can try
to use Timer but i couldnt. Is there any body  to help me?


Salih SELAMETOĞLU
İstanbul University
Computer Engineering - #4

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


Re: [android-developers] Timer problem

2011-07-19 Thread TreKing
On Tue, Jul 19, 2011 at 8:59 AM, Salih Selametoglu barbooni...@gmail.comwrote:

  I wanna change image every 10 seconds but i have not done yet. I can
 try to use Timer but i couldnt.


Why couldn't you?

-
TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago
transit tracking app for Android-powered devices

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] Timer problem

2011-07-19 Thread Salih Selametoglu
i think i am writing wrong code

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


Re: [android-developers] Timer problem

2011-07-19 Thread Salih Selametoglu
i write code but not re-run.  Only it once runs


 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en



-- 
Salih SELAMETOĞLU
Teknopalas RFID Yazılım Çözümleri / Yazılım Uzman Yardımcısı
İstanbul Üni. Bil. Müh. 4. Sınıf
+90 537 279 6412

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


Re: [android-developers] Timer problem

2011-07-19 Thread Salih Selametoglu
ok. It have been solved. I used Runnable and Handler class.

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


Re: [android-developers] Timer problem

2011-07-19 Thread TreKing
You're welcome.

-
TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago
transit tracking app for Android-powered devices

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] Timer problem

2010-02-09 Thread satish bhoyar
Hi all,

I am trying to work with Timer. My use case is
I am dynamically updating the Layout  after some delay i will be loading
the new updated layout. I put the Timer but it is not working correctly

this is the timer code

  timer.schedule(new TimerTask() {
public void run() {
//fourcellview();
fourcellview(A,B,C,D);
}
}, 1000);
.
Right now it stays in the same for long time. As per explanation of the
method schedule the second param is in milisec. But it stays in same state
for long time.

thanks
satish

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en