基本的に、トーストをアプリケーションの画面に表示できません。トーストコードを別のアプリにコピーしましたが、コードは正常に動作しますが、何らかの理由でこれを動作させることができないようです1。私は自分のアプリケーションをスプラッシュ画面だけに戻しましたが、onCreate メソッドでトーストを呼び出すだけで何もしません。考えられることはすべて試しました。誰かがそれの何が悪いのか教えてもらえますか? どんな助けでも大歓迎です。
public class Splash extends Activity{
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.splash_layout);
setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);
Toast t1 = Toast.makeText(this, "hello world", Toast.LENGTH_LONG);
t1.show();
}//end onCreate
} // end splash
誰にとっても役立つ場合に備えて、マニフェストを以下に示します。追加のアクティビティはメイン メニューから起動されますが、メイン メニューを開始するインテントをスプラッシュ アクティビティから切り取って、何が問題なのかを簡単に把握できるようにします。
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.bluetoothdms"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="11"
android:targetSdkVersion="17" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme"
android:largeHeap="true">
<activity
android:name="com.example.bluetoothdms.Splash"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name="com.example.bluetoothdms.MainMenu"
android:label="@string/app_name" >
</activity>
<activity
android:name="com.example.bluetoothdms.Bluetooth_Content"
android:label="@string/app_name" >
</activity>
<activity
android:name="com.example.bluetoothdms.DMS_Content"
android:label="@string/app_name" >
</activity>
<activity
android:name="com.example.bluetoothdms.FAQ"
android:label="@string/app_name" >
</activity>
<activity
android:name="com.example.bluetoothdms.File_Opener">
</activity>
</application>