【问题标题】:Android app is not showing installed on emulator and my deviceAndroid 应用程序未显示安装在模拟器和我的设备上
【发布时间】:2015-12-09 08:12:08
【问题描述】:

我已尝试将我的 android 应用程序从 eclipse 转换为 android studio 项目,并且该应用程序正在模拟器和我的真实设备上进行测试,但是在尝试退出应用程序时我找不到它.. 发布到商店后我得到了同样的问题+应用程序永远不会打开..安装后我只在google play store上卸载了..请帮忙:)

这是商店的应用网址:https://play.google.com/store/apps/details?id=com.linkedtalents.app&hl=en

这是我的 ma​​nifest.xml

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.linkedtalents.app"
android:versionCode="10"
android:versionName="1.1" >

<uses-sdk
    android:minSdkVersion="14"
    android:targetSdkVersion="17" />
<application
    android:allowBackup="true"
    android:icon="@drawable/launch123"
    android:label="@string/app_name"
    android:largeHeap="true" >
  <activity
  android:name="com.linkedtalents.app.Splash"
  android:theme="@style/AppBaseTheme"
  android:screenOrientation="portrait"
  android:configChanges="locale"
  >    

【问题讨论】:

  • 意思是,它的图标不显示还是什么?
  • 是的,它的图标没有显示.. 发布应用后也永远不会打开
  • 你能发布整个清单吗?

标签: android android-studio google-play android-manifest


【解决方案1】:

您似乎缺少意图过滤器。至少你没有发布它。你能看看你有像这里的主发射器吗?如果您想从主屏幕开始,您需要一个与之匹配的活动。

<activity
        android:name="..."
        android:label="@string/app_name"
        android:theme="@style/AppTheme">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
</activity>

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 2012-06-30
    • 2011-07-01
    • 2015-10-14
    • 2021-06-22
    • 1970-01-01
    • 1970-01-01
    • 2015-02-05
    相关资源
    最近更新 更多