I\'ve two activities, one is the
SplashActivity
and the other is MainActivity
, an activity containing a webview.
I need to load the webvi
i hope this should work perfectly...
ProgressDialog pd;
pd = ProgressDialog.show(YOUR_ACTIVITY.this,"Loading...", true, false);
new Thread(new Runnable() {
@Override
public void run() {
// TODO Auto-generated method stub
Intent intent = new Intent(YOUR_ACTIVITY.this,
NEXT_ACTIVITY.class);
startActivity(intent);
pd.dismiss();
}
}).start();
}
});