Android Studio模拟器:模拟器仅显示" android"文本

时间:2015-03-19 20:36:48

标签: android android-activity android-studio android-emulator

我正在使用他的页面中的教程学习Android,我的部分内容有问题:Running Your App章节。当我看到activity_my.xml预览时,我看到“Hello world”文本,但是当我运行应用程序并看到模拟设备时,模拟器显示的设备只有黑页和“android”文本。我想我无法正常启动它,但在Android Studio控制台中我看到:

C:\Users\Abc\AppData\Local\Android\sdk\tools\emulator.exe 
-avd Nexus_4_cale -netspeed full -netdelay none

creating window 208 44 800 480
emulator: emulator window was out of view and was recentered

所以似乎没问题。但是,如果我选择编辑“app”配置,请在Target Device / Emulator中看到Prefer Adroid Virtual Device,在我的calse中,名为“Nexus_4_cale”,为红色。但是如果我编辑这个设备没有错误等等。我不知道发生了什么,如果有人想帮我解决这个问题,我会很高兴 - 谢谢你提前。

这就是它在模拟器中的样子: Emulator

这就是它在Android Studio预览中的外观: Preview_in_IDE

那是配置,有红色设备,但没有解释: configuration

activity_my.xml的代码:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"     android:layout_width="match_parent"
    android:layout_height="match_parent"     android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin" tools:context=".MyActivity">

<TextView android:text="@string/hello_world" android:layout_width="wrap_content"
    android:layout_height="wrap_content" />

MyActivity.java类的代码:

package com.example.abc.android3;

import android.support.v7.app.ActionBarActivity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;


public class MyActivity extends ActionBarActivity {

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_my);
}


@Override
public boolean onCreateOptionsMenu(Menu menu) {
    // Inflate the menu; this adds items to the action bar if it is present.
    getMenuInflater().inflate(R.menu.menu_my, menu);
    return true;
}

@Override
public boolean onOptionsItemSelected(MenuItem item) {
    // Handle action bar item clicks here. The action bar will
    // automatically handle clicks on the Home/Up button, so long
    // as you specify a parent activity in AndroidManifest.xml.
    int id = item.getItemId();

    //noinspection SimplifiableIfStatement
    if (id == R.id.action_settings) {
        return true;
    }

    return super.onOptionsItemSelected(item);
}
}

所有代码均由Android Studio生成

3 个答案:

答案 0 :(得分:2)

正在加载..您必须等待加载完成。如果您的模拟器仍未启动,请按emulator修改uncheck Use Host Gpu配置,以便进行更多检查Can't start emulator for Android Studio

答案 1 :(得分:0)

很抱歉浪费你的时间 - 它正在加载视图,但它太慢了...超过20分钟,直到我看到了一些东西,这是我认为有问题的原因 - 只是我等了一会儿,看到了什么我想要。

答案 2 :(得分:0)

如果您没有看到任何错误,并且您正在使用Mac。确保您没有启动并运行Docker。在我关闭Docker的那一刻,这一切都奏效了。我不相信我花了2个小时进行调试。