Android,页面加载时,进度条卡死一段时间后才会跳入下个页面是什么情况,代码见补充
Handlerhandler=newHandler();mDbOpenHelper=newDBOpenHelper(this);mGroupService=newGrou...
Handler handler = new Handler();
mDbOpenHelper = new DBOpenHelper(this);
mGroupService = new GroupService(this);
Runnable updateThread = new Runnable()
{
public void run()
{
msqlDatabase = mDbOpenHelper.getWritableDatabase();
try
{
//try中 为添加数据库中的内容
InitCryption();
newGroup = new Group();
newGroup.setTitle(getString(R.string.data_bank_accounts));
newGroup.setIcon("icon06");
.......
} catch (Exception e)
{
e.getMessage();
} finally
{
isFinish = true;
msqlDatabase.close();
}
Intent intent = new Intent(AddGroupsActivity.this, Registe_Static_Hand.class);
startActivity(intent);
if (isFinish)
{
restoreBoolean();
}
finish();
}
};
handler.postDelayed(updateThread, 100);
其中,进入条是一个假的,在XML中写的,但是进入页面的时候去卡死,然后过一段时间后才会跳入下个页面,没有那种流畅的效果 展开
mDbOpenHelper = new DBOpenHelper(this);
mGroupService = new GroupService(this);
Runnable updateThread = new Runnable()
{
public void run()
{
msqlDatabase = mDbOpenHelper.getWritableDatabase();
try
{
//try中 为添加数据库中的内容
InitCryption();
newGroup = new Group();
newGroup.setTitle(getString(R.string.data_bank_accounts));
newGroup.setIcon("icon06");
.......
} catch (Exception e)
{
e.getMessage();
} finally
{
isFinish = true;
msqlDatabase.close();
}
Intent intent = new Intent(AddGroupsActivity.this, Registe_Static_Hand.class);
startActivity(intent);
if (isFinish)
{
restoreBoolean();
}
finish();
}
};
handler.postDelayed(updateThread, 100);
其中,进入条是一个假的,在XML中写的,但是进入页面的时候去卡死,然后过一段时间后才会跳入下个页面,没有那种流畅的效果 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询