大家好,我有这个带有布局 main.xml 的初始屏幕,其中包含一个 imageview,这是 main.xml 文件
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/LinearLayout2"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<ImageView
android:id="@+id/imageView1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:src="@drawable/slide11" />
</LinearLayout>
这是我的 splashscreen.class 文件
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
try {
new Handler().postDelayed(new Runnable() {
public void run()
Intent intent = new Intent(getApplicationContext(),content_activity.class);
startActivity(intent);
Main.this.finish(); } }, 5000);
} catch(Exception e){}
}
@Override
public void onBackPressed() {
super.onBackPressed();
} }
当我尝试在我的模拟器中运行它时一切正常,但是当我尝试通过调试模式在设备中运行它时,我没有得到 imageView 中指定的图像,但是在指定的时间内我得到一个白屏。任何帮助将非常感激。
//编辑:我仔细检查了 res/drawable 文件夹,我主要尝试使用 png 并且还尝试使用 .gif 在设备中没有工作。(设备 micromax a110)