在运行Android Studio模拟器时,请勿查看我的应用

时间:2016-03-10 21:22:22

标签: android android-studio avd

我按照introductory tutorial创建了我的第一个Android应用。但是,当我运行模拟器时,我无法在任何地方看到我的应用程序图标,因此我无法对其进行测试。

这是我的 AndroidManifest.xml 文件:

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

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
        <activity
            android:name="com.example.me.learning.MyActivity"
            android:label="@string/app_name"
            android:theme="@style/AppTheme.NoActionBar">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity
            android:name="com.example.me.learning.DisplayMessageActivity"
            android:label="@string/title_activity_display_message"
            android:parentActivityName="com.example.me.learning.MyActivity"
            android:theme="@style/AppTheme.NoActionBar">
            <meta-data
                android:name="android.support.PARENT_ACTIVITY"
                android:value="com.example.me.learning.MyActivity" />
        </activity>
    </application>

</manifest>

我看到这里的图标: enter image description here

以下是AVD的控制台输出:

Hax is enabled Hax ram_size 0x60000000 HAX is working and emulator runs in fast virt mode. console on port 5554, ADB on port 5555

该应用的控制台:

03/10 16:18:36: Launching app

因此avd和app似乎都可以正常加载,但我在模拟器中的任何地方都看不到app。我错过了什么?

这是屏幕: enter image description here

这是主屏幕: enter image description here

应用程序无法显示。

5 个答案:

答案 0 :(得分:1)

当您点击运行(顶部工具栏中的绿色小箭头或键盘快捷键:SHIFT+F10)时,您会看到一个对话框,询问您设备是什么你想运行你的应用程序。如果你担心的话,它不会问你想要跑什么。

在该对话框中,只需选择启动模拟器,然后点击确定

答案 1 :(得分:0)

我也面临同样的问题,我发现我有一些不兼容的红色下划线错误,我删除了它们并再次运行它,它工作正常。

答案 2 :(得分:0)

我也有这个问题!这是我修复它的方式:

  1. 运行模拟器
  2. 在不关闭模拟器的情况下,转到此屏幕并单击左上角的按钮,该按钮看起来像是从灰色框中返回的绿色箭头。它应该在停止按钮(红色方块)上方。 bottom left of android studio, click on run the the very bottom left and then click one of the little android logos to the left of the emulator run tab
  3. 在弹出窗口中选择正在运行的模拟器

答案 3 :(得分:0)

我刚遇到同样的问题。我认为你应该弄清楚消息窗口中显示的所有红色突出显示的问题。

然后它会起作用。

祝你好运!

答案 4 :(得分:0)

运行apk文件直接安装,将其从PC文件夹中拖到仿真器中