gpt4 book ai didi

已安装 Android 应用程序但无法在设备上打开

转载 作者:搜寻专家 更新时间:2023-11-01 08:54:11 26 4
gpt4 key购买 nike

我在 Android 上创建了一个应用程序。我正在使用 ADT 在 eclipse 上开发它。

是关于nfc的。目前它只读取和写入标签。

我在我的移动设备上运行我的应用程序进行测试,它运行良好。

因此它编译良好,在我的 Xperia Z1 Sony 上运行良好,但是当我拔下手机并在其上安装 apk 时,我遇到了问题:

安装运行良好,但我有两个选择“已终止”或“打开”。打开不可点击...我转到设置->应用程序->已安装,我看到我的应用程序已安装。我可以强制停止清除缓存但不能打开它...我不明白为什么。

当我从 eclipse 启动它时,它在我的手机上运行良好,但是当我想在我的手机上运行它时,从我的计算机上拔下它不想打开。安装过程中没有错误信息...

我激活开发模式并允许从未知来源等安装...

有人知道吗??

这是我的 manifest.xml :

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.mynfc"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk
android:minSdkVersion="14"
android:targetSdkVersion="18" />
<uses-permission android:name="android.permission.NFC" />

<uses-feature
android:name="android.hardware.nfc"
android:required="true" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.example.mynfc.MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.nfc.action.NDEF_DISCOVERED" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="text/plain"/>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>

</activity>
<activity android:name=".WriteATagActivity"/>

</application>

</manifest>

最佳答案

您应该将 Intent 过滤器分为以下几类:

<intent-filter>
<action android:name="android.nfc.action.NDEF_DISCOVERED" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="text/plain"/>
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>

要使 Intent 过滤器匹配,操作、类别和数据应该是正确的。当您通过图标打开应用程序时,它会发送一个带有 MAIN 操作和类别 LAUNCHER 的 Intent 。因为它不包含数据类型,并且因为类别与 DEFAULT 不匹配并且操作与 NDEF_DISCOVERED 不匹配,Android 认为您的 Intent 过滤器无法处理它。

关于已安装 Android 应用程序但无法在设备上打开,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20285496/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com