我已经阅读了多个链接并尝试了各种各样的事情但我无法让黑屏消失任何建议这里是我的清单活动,即调用下一个活动和xmls,代码
它基本上是一个启动画面,它在5秒后打开另一个活动,它在两天前正在工作,昨晚我修复了一个逻辑错误,然后开始尝试将其恢复到我编辑它之前的方式,但仍然是黑色显示启动后的屏幕。
清单
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.audiovolumecontrol"
android:versionCode="1"
android:versionName="1.0" >
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="17" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".Splash"
android:label="@string/app_name"
android:screenOrientation="portrait" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name="com.example.audiovolumecontrol.Options"
android:label="@string/options_name"
android:screenOrientation="portrait" >
</activity>
<activity
android:name="VolumeControlMAIN"
android:label="@string/app_name"
android:screenOrientation="portrait" >
<intent-filter>
<action android:name=".com.example.audiovolumecontrol.VolumeControlMAIN" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
</application>
</manifest>
splash xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/splash_main2"
android:orientation="vertical"
>
</LinearLayout>
启动代码
package com.example.audiovolumecontrol;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.os.Handler;
public class Splash extends Activity
{
private static int LOGO_TIME_OUT = 5000;
@Override
protected void onCreate(Bundle savedInstanceState)
{
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setContentView(R.layout.splash);
}
@Override
protected void onStart()
{
// TODO Auto-generated method stub
super.onStart();
new Handler().postDelayed(new Runnable() {
@Override
public void run() {
Intent openSTART = new Intent
(Splash.this,VolumeControlMAIN.class);
startActivity(openSTART);
}
}, LOGO_TIME_OUT );
}
@Override
protected void onPause() {
// TODO Auto-generated method stub
super.onPause();
finish();
}
}
帮助将不胜感激
我尝试了多个建议,但没有一个能够将主题更改为on start方法和更改变量....这个程序以前工作过,现在一旦我的启动显示并且时间到了我只是得到一个黑屏
答案 0 :(得分:0)
试试这个 - &gt;
private static int LOGO_TIME_OUT = 3000;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.splash);
new Handler().postDelayed(new Runnable() {
@Override
public void run() {
Intent i = new Intent(Splash.this,VolumeControlMAIN.class);
startActivity(i);
finish();
}
}, LOGO_TIME_OUT);
}
希望它能帮到你.. :)。
答案 1 :(得分:0)
简单!请遵循以下两个步骤:(如果您使用的是Android版ICS)
答案 2 :(得分:0)
您可以发布onCreate
课程的VolumeControlMAIN
吗?如果您在onCreate
VolumeControlMAIN
上做了大量工作,那么在完成所有工作之前,布局将不会显示。