0

在启动应用程序之前,我尝试使用 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);
 }
 }
4

1 回答 1

0

我也在我的应用程序中发现了这个错误。在我的应用程序中,我通过在所有可绘制对象的文件夹中复制 png 图像解决了我的问题,即 drawable-ldpi、drawable-mdpi、drawable-hdpi、drawable-xhdpi。这在我的应用程序中正常工作。希望这能解决您的问题。

于 2013-03-13T19:53:00.280 回答