![]() |
| [Image credit: NASA] |
ที่มา Engadget.com ผ่าน Planet-Labs
Embedded, Android and iOS development.
![]() |
| [Image credit: NASA] |
ที่มา: stackoverflow.compackage com.lars.DrinkRecOrder; import android.app.Activity; import android.content.Intent; import android.os.Bundle; import android.os.Handler; public class SplashScreen extends Activity { /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.splash); Handler handler = new Handler(); handler.postDelayed(new Runnable() { public void run() { /* start the activity */ startActivity(new Intent("com.lars.DrinkRecOrder.splashscreen.DrinkRecOrderActivity")); } }, 5000); } }
![]() |
| Picture from engadget.com |