基本上,我不能让我的吐司出现在我的应用程序的屏幕上,我已经将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>
答案 0 :(得分:0)
使用
实例化Toast
Toast t1 = new Toast(context);
t1.makeText(....);
t1.show()
或使用
Toast.makeText(...).show();