Thnx
This post has been edited by sgt.assassin: 02 May 2012 - 05:06 AM
Posted 02 May 2012 - 05:03 AM
This post has been edited by sgt.assassin: 02 May 2012 - 05:06 AM
Posted 02 May 2012 - 06:35 AM
Posted 02 May 2012 - 02:30 PM
Posted 02 May 2012 - 02:47 PM
Posted 02 May 2012 - 03:03 PM
Posted 02 May 2012 - 03:24 PM
Posted 02 May 2012 - 03:58 PM
05-02 22:49:59.228: W/NetworkManagementSocketTagger(92): setKernelCountSet(10009, 0) failed with errno -2 05-02 22:50:03.309: W/dalvikvm(502): threadid=11: thread exiting with uncaught exception (group=0x409c01f8)
Posted 02 May 2012 - 04:23 PM
Posted 02 May 2012 - 04:32 PM
Posted 02 May 2012 - 05:15 PM
Posted 03 May 2012 - 07:34 AM
package kamal.uddin;
import android.app.Activity;
import android.os.Bundle;
import android.view.MotionEvent;
import android.content.Intent;
public class Splash extends Activity {
protected boolean _active = true;
protected int _splashTime = 5000;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
// thread for displaying the SplashScreen
Thread splashTread = new Thread() {
@Override
public void run() {
try {
int waited = 0;
while(_active && (waited < _splashTime)) {
sleep(100);
if(_active) {
waited += 100;
}
}
} catch(InterruptedException e) {
// do nothing
} finally {
finish();
startActivity(new Intent("com.android.splashscreen.KamalUddinIllallahActivity"));
stop();
}
}
};
splashTread.start();
}
@Override
public boolean onTouchEvent(MotionEvent event) {
if (event.getAction() == MotionEvent.ACTION_DOWN) {
_active = false;
}
return true;
}
}
Posted 03 May 2012 - 08:12 AM
Posted 03 May 2012 - 09:05 AM
Posted 03 May 2012 - 10:14 AM
|
|
Query failed: connection to localhost:3312 failed (errno=111, msg=Connection refused).
|
