Comment on Tutorial - 'double buffering' Sample program in J2ME By Charles
Comment Added by : krishna mohan
Comment Added at : 2010-02-01 05:22:12
Comment on Tutorial : 'double buffering' Sample program in J2ME By Charles
int myColor = 0xFFFF00;
paint(Graphics graphics)
{
graphics.setColor(myColor);
graphics.fillrect(0,0,getWidth(),getHeight());
callTimer();
}
int i=0;
public void callTimer()
{
Thread t= new Thread();
t.sleep(500);//show initial paint screen for 1/2 sec.
myColor = i;
i++;
repaint();
}
View Tutorial
- Data Science
- Android
- AJAX
- ASP.net
- C
- C++
- C#
- Cocoa
- Cloud Computing
- HTML5
- Java
- Javascript
- JSF
- JSP
- J2ME
- Java Beans
- EJB
- JDBC
- Linux
- Mac OS X
- iPhone
- MySQL
- Office 365
- Perl
- PHP
- Python
- Ruby
- VB.net
- Hibernate
- Struts
- SAP
- Trends
- Tech Reviews
- WebServices
- XML
- Certification
- Interview
categories
Related Tutorials
Program using concept of byte long short and int in java
Update contents of a file within a jar file
Tomcat and httpd configured in port 8080 and 80
Count number of vowels, consonants and digits in a String in Java
Student marks calculation program in Java
Calculate gross salary in Java
Calculate average sale of the week in Java
Vector in Java - Sample Program
MultiLevel Inheritance sample in Java
Archived Comments
1. Thanks for giving this basic example of Abstract c
View Tutorial By: Yogendra Kirar at 2010-08-07 07:48:34
2. Answer for Comment 4 :
" n=n++
View Tutorial By: NewB_of_java at 2012-02-16 16:52:05
3. hai...
i am completed MCA am good at java.
View Tutorial By: HEMALATHA at 2013-08-03 10:04:57
4. Hi Its very useful ad nice article Thanks
View Tutorial By: Hanish at 2011-07-22 13:12:23
5. Any thoughts on how conservative/liberal to be whe
View Tutorial By: Jon at 2009-05-04 15:29:14
6. Very good explanation specially overlapped memory
View Tutorial By: MANISH RASTOGI at 2010-06-22 05:44:07
7. Good explanation
View Tutorial By: Siddesh at 2012-07-12 03:53:07
8. So I followed you steps with no compile errors. W
View Tutorial By: PointLookoutResident at 2014-10-14 19:01:11
9. site is good.explaining the concept with nice pro
View Tutorial By: AJOY KUMAR MANDAL at 2012-11-22 01:57:26
10. Hi
I tried to use this class , I don't get
View Tutorial By: arnav at 2015-03-27 06:01:22