我正在开发一个示例Android应用程序,以了解有关Android的更多信息。奇怪的是,我的摩托罗拉xoom上没有安装该应用程序。
请注意该应用在该设备上正常运行。但是,我发现设备上的应用程序列表无法找到我的应用程序。
清单文件:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.mycamapp"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="18" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-feature android:name="android.hardware.camera" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.example.mycamapp.CameraActivity"
android:label="@string/app_name"
android:screenOrientation="portrait">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
<data android:mimeType="image/*" />
</intent-filter>
</activity>
</application>
</manifest>
我已经尝试过其他一些示例应用程序(hello world !!类似示例),并且它们已经安装在我的设备上了。
我没有看到任何apk安装消息,我从eclipse运行。任何人都可以建议,该应用程序出了什么问题?
答案 0 :(得分:0)
我猜这个问题与您<intent-filter>
的{{1}}有关。
所有现有元素必须匹配,我猜启动器在其意图中没有图像mimeType;)
从CameraActivity
中删除<data>
元素,或将其移至另一个元素,然后会出现图标。您可以为同一活动设置多个意图过滤器。