GenyMotion 虚拟设备无法启动,无法测试 Android 程序
GennyMotion virtual device can't boot, cannot test Android program
我正在尝试开发 Android 应用程序 用于个人发展。我是新手,我没有任何 android 设备,所以我使用 Android 模拟器 。我试过使用 BlueStacks 但没有用(并要求我在一天后付款),我现在正在使用 GenyMotion .我正在尝试在具有 6GB RAM 和 AMD 处理器的 HP 计算机 Windows 10 OS 上开发 Android 应用程序。
这是我的 Android 应用程序,这是一个非常简单的应用程序,用于测试模拟器:
package My.Package;
import android.*;
import android.app.Activity;
import android.os.Bundle;
import android.widget.TextView;
public class MainActivity extends Activity
{
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
TextView text1 = new TextView(this);
text1.setText("Hello World");
setContentView(text1);
}
}
问题是,当我启动我创建的 AVD 并抛出 AVD 管理器时,模拟器会在 "android" 屏幕上停留数小时。我有 AMD 处理器,而不是 Intel 处理器。
我已尝试 GenyMotion,但是当我启动我创建的设备时,设备已创建但未启动。
我查看了 VirtualBox 并尝试从 Virtual Box 启动它,但出现以下错误:
我在互联网上搜索了一段时间,找到了有关修改 BIOS 配置以及将虚拟化技术设置为活动的答案,我做到了。但我的 error.I 还在虚拟框中启用了 VT-x/AMD-x 设置。
您知道如何修复此错误,或者如何使用 Android 模拟器吗?
没有找到这个问题的答案,但继续尝试不同的配置和参数,最终在 Nexus 5、Android6.0 设备上成功基因运动。
似乎无法使用我的配置从 GenyMotion 启动 Android 自定义设备。
实际上,它比 Android Studio 虚拟设备快得多。
我正在尝试开发 Android 应用程序 用于个人发展。我是新手,我没有任何 android 设备,所以我使用 Android 模拟器 。我试过使用 BlueStacks 但没有用(并要求我在一天后付款),我现在正在使用 GenyMotion .我正在尝试在具有 6GB RAM 和 AMD 处理器的 HP 计算机 Windows 10 OS 上开发 Android 应用程序。
这是我的 Android 应用程序,这是一个非常简单的应用程序,用于测试模拟器:
package My.Package;
import android.*;
import android.app.Activity;
import android.os.Bundle;
import android.widget.TextView;
public class MainActivity extends Activity
{
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
TextView text1 = new TextView(this);
text1.setText("Hello World");
setContentView(text1);
}
}
问题是,当我启动我创建的 AVD 并抛出 AVD 管理器时,模拟器会在 "android" 屏幕上停留数小时。我有 AMD 处理器,而不是 Intel 处理器。
我已尝试 GenyMotion,但是当我启动我创建的设备时,设备已创建但未启动。
我查看了 VirtualBox 并尝试从 Virtual Box 启动它,但出现以下错误:
我在互联网上搜索了一段时间,找到了有关修改 BIOS 配置以及将虚拟化技术设置为活动的答案,我做到了。但我的 error.I 还在虚拟框中启用了 VT-x/AMD-x 设置。
您知道如何修复此错误,或者如何使用 Android 模拟器吗?
没有找到这个问题的答案,但继续尝试不同的配置和参数,最终在 Nexus 5、Android6.0 设备上成功基因运动。
似乎无法使用我的配置从 GenyMotion 启动 Android 自定义设备。
实际上,它比 Android Studio 虚拟设备快得多。