当我 运行 android 在 android 工作室中进行项目时,BlackBerry Simulator 不显示?

BlackBerry Simulator doesn't show when i run android project in android studio?

我已经下载并安装了 BlackBerry Simulator 并 运行 它在 VMWare 机器中。我有 运行 它的控制器。然后,我在 android studio 中创建了一个简单的 hello world 项目。这是 MainActivity.java:

public class MainActivity extends ActionBarActivity {

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

这里是XML:

<?xml version="1.0" encoding="utf-8"?>
<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:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.vats.vatishs.helloworld.MainActivity">

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Hello World!" />
</RelativeLayout>

这是 build.gradle 的应用程序:

apply plugin: 'com.android.application'

android {
compileSdkVersion 18
buildToolsVersion "23.0.2"

defaultConfig {
    applicationId "com.vats.vatishs.helloworld"
    minSdkVersion 11
    targetSdkVersion 18
    versionCode 1
    versionName "1.0"
}
buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
}
}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:18.+'
}

然后我运行 BlackBerry ADB Proxy Manager,然后我点击运行ning BlackBerry 模拟器的播放图标。现在,如果我通过单击 android 工作室的绿色 运行 箭头 运行 我的 android 项目,BlackBerry 模拟器不会显示在 Android 设备列表中。我应该如何处理 运行 我在 BlackBerry 模拟器上的 android 代码???

我做了以下操作让它出现在 Android 工作室:

  1. 您需要转到 Android 平台工具文件夹。
  2. 运行命令

    ./adb connect 你的运行设备的IP

  3. 然后,该设备应该出现在您的 Android Studio 设备列表中。

** 与您提供给 BlackBerry ADB Proxy Manager 的相同