android程序启动时欢迎画面不显示,求助
这是我的欢迎界面ACTIVITY,持续5秒publicclassLoginActivityextendsActivity{protectedvoidonCreate(Bu...
这是我的欢迎界面ACTIVITY,持续5秒
public class LoginActivity extends Activity {
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FULLSCREEN);
/** 标题是属于View的,所以窗口所有的修饰部分被隐藏后标题依然有效 */
requestWindowFeature(Window.FEATURE_NO_TITLE);
setContentView(R.layout.login);
mHandler.sendEmptyMessageAtTime(GOTO_MAIN_ACTIVITY, 5000);// 3秒跳转
}
private static final int GOTO_MAIN_ACTIVITY = 0;
private Handler mHandler = new Handler() {
public void handleMessage(Message msg) {
switch (msg.what) {
case GOTO_MAIN_ACTIVITY:
Intent intent = new Intent();
intent.setClass(getApplicationContext(), MainActivity.class);
startActivity(intent);
finish();
break;
default:
break;
}
}
};
}
这是我的欢迎界面的XML文件
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<ImageView
android:id="@+id/iv"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:scaleType="fitCenter"
android:src="@drawable/ic_launcher" />
</LinearLayout> 展开
public class LoginActivity extends Activity {
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FULLSCREEN);
/** 标题是属于View的,所以窗口所有的修饰部分被隐藏后标题依然有效 */
requestWindowFeature(Window.FEATURE_NO_TITLE);
setContentView(R.layout.login);
mHandler.sendEmptyMessageAtTime(GOTO_MAIN_ACTIVITY, 5000);// 3秒跳转
}
private static final int GOTO_MAIN_ACTIVITY = 0;
private Handler mHandler = new Handler() {
public void handleMessage(Message msg) {
switch (msg.what) {
case GOTO_MAIN_ACTIVITY:
Intent intent = new Intent();
intent.setClass(getApplicationContext(), MainActivity.class);
startActivity(intent);
finish();
break;
default:
break;
}
}
};
}
这是我的欢迎界面的XML文件
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<ImageView
android:id="@+id/iv"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:scaleType="fitCenter"
android:src="@drawable/ic_launcher" />
</LinearLayout> 展开
3个回答
展开全部
mHandler.sendEmptyMessageAtTime(GOTO_MAIN_ACTIVITY, 5000);// 3秒跳转这句话注释掉,你的欢迎界面应该可以显示并停留在那。我看着应该是你的消息处理不对。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
intent.setClass(getApplicationContext(), MainActivity.class);
改为 intent.setClass(LoginActivity.this,MainActivity.class);试试
改为 intent.setClass(LoginActivity.this,MainActivity.class);试试
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
mhandle.sendEmptyMessageDelayed(0, 3000);这两个方法有什么区别?
mHandler.sendEmptyMessageAtTime(GOTO_MAIN_ACTIVITY, 5000);// 3秒跳转
你先把你的线程那一部分代码注释掉,看能不能显示界面!
mHandler.sendEmptyMessageAtTime(GOTO_MAIN_ACTIVITY, 5000);// 3秒跳转
你先把你的线程那一部分代码注释掉,看能不能显示界面!
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询