2

我正在尝试遵循我找到的一个简单的启动屏幕示例。但我什至无法编译它。

首先这是此处示例的来源。

我正在尝试输入一种适用于我的程序的形式。

我在 Eclipse 中为这个闪屏创建了一个类

com.ePN.ePNMobileAndroid.ePNSplash

这是我当前的 main.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:id="@+id/splashscreen" android:layout_width="wrap_content"
          android:layout_height="fill_parent" android:src="@drawable/com.ePN.ePNMobileAndroid.splash"
          android:layout_gravity="center"/>
     <TextView android:layout_width="fill_parent"
          android:layout_height="wrap_content" android:text="Hello World, splash"/>
</LinearLayout> 

和班级本身

package com.ePN.ePNMobileAndroid;

import android.app.Activity;
import android.os.Bundle;
import android.os.Handler;
import android.os.Message;
import android.view.View;
import android.widget.ImageView; 

public class ePNSplash extends Activity {
    private static final int STOPSPLASH = 0;
    //time in milliseconds
    private static final long SPLASHTIME = 3000;
    
    private ImageView splash;
    
    //handler for splash screen
    private Handler splashHandler = new Handler() {
         /* (non-Javadoc)
          * @see android.os.Handler#handleMessage(android.os.Message)
          */
         @Override
         public void handleMessage(Message msg) {
              switch (msg.what) {
              case STOPSPLASH:
                   //remove SplashScreen from view
                  splash.setVisibility(View.GONE);
                   break;
              }
              super.handleMessage(msg);
         }
    };
    
   /** Called when the activity is first created. */
   @Override
   public void onCreate(Bundle icicle) {
       super.onCreate(icicle);
       setContentView(R.layout.main);
              splash = (ImageView) findViewById(R.id.splashscreen);
              Message msg = new Message();
              msg.what = STOPSPLASH;
              splashHandler.sendMessageDelayed(msg, SPLASHTIME);
   } 
}

XML 错误:

找不到与给定名称匹配的资源(在 src 中,值为“@drawable/com.ePN.ePNMobileAndroid.splash”)

我已经尝试了所有我能想到的修改方法,android:src但它不起作用。

该类是错误的,因为它无法r_id.splashscreen在 find by id 行中解析。

这对我来说都是希腊语,应该如何修改这个微不足道的 xml 和/或 java 文件以使其工作?

4

1 回答 1

8

android:src="@drawable/com.ePN.ePNMobileAndroid.splash"你想在这个 ImageView 中显示什么?这需要引用您的res/drawable目录中的某些内容。因此,例如,如果您在 res/drawable 中有一个名为my_splash_image.png的文件,那么 XML 属性将为android:src="@drawable/my_splash_image". 无论您尝试在该属性中使用该包命名做什么都行不通。

查看您正在使用的示例,看起来他们有一个他们正在使用的 res/drawable/splash.png 文件,他们没有包含在他们的论坛帖子中。

于 2010-01-25T17:22:04.763 回答