在我的应用程序中单击下一个按钮进行另一个活动时,应用程序屏幕显示黑屏几秒钟。在我的下一个布局中有很多微调器(大约16-17)。
大量搜索解决方案,但大部分都在进行一些复杂的工作,但在我的应用程序中,我只是简单地展示了一些微调器的布局。
在Intent中开始下一个活动之前,只有两个放置Extra就在那里。
新的android和堆栈溢出。请帮助我。
抱歉我的英文。
public void onClick(View v) {
//start the progress dialog
progressDialog = ProgressDialog.show(MainActivity.this, "", "Loading...");
new Thread() {
public void run() {
try{
sleep(100);
} catch (Exception e) {
Log.e("tag", e.getMessage());
}
// dismiss the progress dialog
progressDialog.dismiss();
}
}.start();
// End Progress Dialog
// TODO Auto-generated method stub
Intent i=new Intent(MainActivity.this, GridViewActivity.class);
startActivity(i);
}
});