如何启用Android虚拟设备(AVD)

时间:2017-12-21 16:57:24

标签: linux android-studio react-native avd

我开始学习本机反应,但在安装Android-Studio后,我无法让AVD按钮可点击(启用)。如下图所示,向下箭头图标的下一个(右)图标是gey out。我需要打开AVD才能成功运行@Override protected void onDraw(Canvas canvas) { super.onDraw(canvas); // draw transparent rect int cornerRadius = 10; Paint eraser = new Paint(); eraser.setAntiAlias(true); eraser.setXfermode(new PorterDuffXfermode(PorterDuff.Mode.CLEAR)); RectF rect = new RectF(left, top, dpToPx(rectWidth) + left, dpToPx(rectHeight) + top); canvas.drawRoundRect(rect, (float) cornerRadius, (float) cornerRadius, eraser); // draw horizontal line Paint line = new Paint(); line.setColor(lineColor); line.setStrokeWidth(Float.valueOf(lineWidth)); // draw the line to product animation if (endY >= top + dpToPx(rectHeight) + frames) { revAnimation = true; } else if (endY == top + frames) { revAnimation = false; } // check if the line has reached to bottom if (revAnimation) { endY -= frames; } else { endY += frames; } canvas.drawLine(left, endY, left + dpToPx(rectWidth), endY, line); invalidate(); }

enter image description here

enter image description here

1 个答案:

答案 0 :(得分:2)

在屏幕上显示错误:您没有构建工具。 点击蓝色链接"安装构建工具26.0.2并同步项目"。

然后转到工具 - > Android - > AVD Manager 并点击图标" +创建虚拟设备" (对话框窗口左下角的图标)。在接下来的屏幕上,您将配置VD(系统,参数),您必须下载系统映像。必须下载并选择它才能创建虚拟设备。之后,您的VD应该可以通过主窗口中的图标或工具中的列表访问 - > Android - > AVD经理。