Android Studio 模拟器:模拟器仅显示 "android" 文本
Android Studio Emulator: emulator shows only "android" text
我正在通过他页面上的教程学习 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
,在我的计算中,称为 "Nexus_4_cale",是红色的。但是如果我编辑这个设备没有错误等等。我不知道发生了什么,如果有人愿意帮助我解决这个问题我会很高兴 - 提前谢谢你。
这就是它在模拟器中的样子:
这就是它在 Android Studio 预览中的样子:
这是配置,有红色设备但没有解释:
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
class 的代码:
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
生成
抱歉浪费你的时间 - 它正在加载视图,但它太慢了......超过 20 分钟,直到我看到一些东西,这是我认为有问题的原因 - 只是我多等了一会儿,然后看到了我想要的。
正在加载中..您必须等待加载完成。如果你的模拟器仍然没有启动,那么通过 uncheck Use Host Gpu
编辑你的 emulator
配置更多检查 Can't start emulator for Android Studio
如果您没有看到任何错误并且您正在使用 Mac。确保您没有 Docker up 和 运行。在我关闭 Docker 的那一刻,一切都奏效了。不敢相信我花了 2 个小时进行调试。
我正在通过他页面上的教程学习 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
,在我的计算中,称为 "Nexus_4_cale",是红色的。但是如果我编辑这个设备没有错误等等。我不知道发生了什么,如果有人愿意帮助我解决这个问题我会很高兴 - 提前谢谢你。
这就是它在模拟器中的样子:
这就是它在 Android Studio 预览中的样子:
这是配置,有红色设备但没有解释:
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
class 的代码:
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
生成抱歉浪费你的时间 - 它正在加载视图,但它太慢了......超过 20 分钟,直到我看到一些东西,这是我认为有问题的原因 - 只是我多等了一会儿,然后看到了我想要的。
正在加载中..您必须等待加载完成。如果你的模拟器仍然没有启动,那么通过 uncheck Use Host Gpu
编辑你的 emulator
配置更多检查 Can't start emulator for Android Studio
如果您没有看到任何错误并且您正在使用 Mac。确保您没有 Docker up 和 运行。在我关闭 Docker 的那一刻,一切都奏效了。不敢相信我花了 2 个小时进行调试。