我正在尝试遵循我找到的一个简单的启动屏幕示例。但我什至无法编译它。
首先这是此处示例的来源。
我正在尝试输入一种适用于我的程序的形式。
我在 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 文件以使其工作?