基本上,我无法让我的 toast 出现在我的应用程序的屏幕上,我已将 toast 代码复制到另一个应用程序中并且代码工作正常,只是由于某种原因我似乎无法让它在这个工作一。我已将我的应用程序剥离回只是启动屏幕,该屏幕不做任何事情,但在 onCreate 方法中调用 toast 但仍然没有。我已经尝试了我能想到的一切。有人可以告诉我它有什么问题吗?任何帮助是极大的赞赏。
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>