私は複数のリンクを読んでさまざまなことを試しましたが、黒い画面を表示して提案を消すことはできません。ここに私のマニフェストがあります。
基本的にはスプラッシュ画面で、5 秒後に 2 日前に動作していた別のアクティビティが開き、昨夜は論理エラーを修正し、編集前の状態に戻そうとしましたが、編集後も黒い画面が表示されますスプラッシュが表示されました。
マニフェスト
<?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>
スプラッシュ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();
}
}
助けていただければ幸いです
私は複数の提案を試みましたが、テーマをオンスタートメソッドに変更して変数を変更することからどれもうまくいきませんでした....このプログラムは以前は機能していましたが、スプラッシュが表示されて時間が経過すると、黒い画面が表示されます