我在 Eclipse 中编写了一个简单的代码。当我尝试从模拟器运行它时,我收到一条消息:“不幸的是应用程序已停止”..并且 logcat 消息是“未找到启动器活动”..这是我的 Android-Manifest.xml文件..
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.prolific.pl2303hxdsimpletest"
android:versionCode="11"
android:versionName="2.0.2.11" >
<uses-sdk
android:minSdkVersion="13"
android:targetSdkVersion="15" />
<uses-feature android:name="android.hardware.usb.host"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
<activity
android:name="com.prolific.pl2303hxdsimpletest.PL2303HXDSimpleTest"
android:label="@string/title_activity_pl2303_hxdsimple_test"
android:screenOrientation="landscape"
android:launchMode="singleTop"
android:theme="@style/AppTheme" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
<action android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED" />
<!-- action android:name="android.hardware.usb.action.USB_DEVICE_DETACHED" /> -->
</intent-filter>
<meta-data android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED"
android:resource="@xml/device_filter" />
</activity>
</application>
</manifest>
我不知道为什么会出现这个错误..有人知道为什么会出现这个错误吗?
谢谢你,拉克西米