我正在eclipse'Singletouch示例'中编写应用程序。我指的是http://www.vogella.com/tutorials/AndroidTouch/article.html。我无法编写正确的XML代码。它显示“不幸(您的应用程序)已停止。”错误或代码错误。
代码:
package de.vogella.android.touch.single;
import android.app.Activity;
import android.os.Bundle;
public class SingleTouchActivity extends Activity {
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(new SingleTouchEventView(this, null));
}
}
XML:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.helloworld"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="15" />
<application
android:debuggable="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".MainActivity"
android:label="@string/title_activity_main" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
</application>
</manifest>
答案 0 :(得分:0)
您应该在清单中添加正确的活动和包。 改变
android:name=".MainActivity"
到
android:name=".SingleTouchActivity"
和
AndroidManifest.xml中的package( package =&#34; com.example.helloworld&#34; to package =&#34; de.vogella.android.touch.single&#34; )
您可以从here获取单点触控的源代码!
这是您正在使用的包和类吗?
答案 1 :(得分:0)
试试这个: -
<activity android:name="SingleTouchActivity" android:label="@string/app_name"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity>
试试这个xml文件
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent">
<com.vogella.android.multitouch.MultitouchView
android:layout_width="match_parent"
android:layout_height="match_parent"
/>