在启动应用程序之前,我尝试使用 splash 。图像名称匹配并且在 xml 文件和 java 文件中没有显示任何错误。但是项目显示错误:找不到与给定名称匹配的资源这些是 splash.java 和 splash.xml 代码: splash.xml:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="fill_parent"
android:layout_height="fill_parent">
<ImageView android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:src="@drawable/splash"
android:layout_gravity="center"/>
</LinearLayout>
飞溅.java:
package com.splash;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.os.Handler;
public class Splash extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.splash);
int secondsDelayed = 1;
new Handler().postDelayed(new Runnable() {
public void run() {
startActivity(new Intent(Splash.this, menu.class));
finish();
}
}, secondsDelayed * 1000);
}
}