我是android studio和他的模拟器的新手。 我正在制作我的第一个应用程序,但是当我加载模拟器时,应用程序是空的,我在logcat中收到了一些错误
03-26 19:48:24.399 2310-2325/com.example.myhelloworld2 W/EGL_emulation﹕ eglSurfaceAttrib not implemented
03-26 19:48:24.399 2310-2325/com.example.myhelloworld2 W/OpenGLRenderer﹕ Failed to set EGL_SWAP_BEHAVIOR on surface 0xa6c2e0c0, error=EGL_SUCCESS
这是我的activity_main.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:orientation="vertical"
android:paddingBottom="@dimen/activity_vertical_margin" tools:context=".MainActivity"
android:background="#8f07d3">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/imageView2"
android:src="@drawable/homeclosetome"
android:layout_marginBottom="116dp"
android:layout_alignParentBottom="false"
android:layout_alignParentEnd="false"
android:layout_alignParentTop="true"
android:layout_marginLeft="0dp"
/>
<ImageButton
android:layout_width="60dp"
android:layout_height="60dp"
android:id="@+id/imageButton"
android:src="@drawable/iconclosetome"
android:background="?android:selectableItemBackground"
android:maxWidth="60dp"
android:maxHeight="60dp"
android:adjustViewBounds="false"
android:cropToPadding="false"
android:clickable="true"
android:scaleType="fitCenter"
android:layout_marginStart="34dp"
android:layout_alignParentBottom="true"
android:layout_alignParentStart="true"
android:layout_marginBottom="37dp"
android:layout_marginLeft="40dp"
android:onClick="closeToMe"/>
<ImageButton
android:layout_width="60dp"
android:layout_height="60dp"
android:id="@+id/imageButton2"
android:layout_alignTop="@+id/imageButton"
android:layout_centerHorizontal="true"
android:src="@drawable/iconnews"
android:background="?android:selectableItemBackground"
android:scaleType="fitCenter" />
<ImageButton
android:layout_width="60dp"
android:layout_height="60dp"
android:id="@+id/imageButton3"
android:layout_alignTop="@+id/imageButton2"
android:layout_alignParentEnd="true"
android:src="@drawable/iconemail"
android:background="?android:selectableItemBackground"
android:scaleType="fitCenter"
android:layout_marginRight="40dp" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceSmall"
android:text="Close To Me"
android:id="@+id/closetome"
android:layout_alignParentBottom="true"
android:layout_alignParentStart="true"
android:layout_marginLeft="30dp"
android:layout_marginBottom="10dp"
android:textColor="#fff"
android:onClick="closeToMe"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceSmall"
android:text="Applications"
android:id="@+id/applications"
android:layout_marginLeft="30dp"
android:textColor="#fff"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:layout_marginBottom="10dp" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceSmall"
android:text="Contact us"
android:id="@+id/contactus"
android:textColor="#fff"
android:layout_alignParentBottom="true"
android:layout_alignParentEnd="true"
android:layout_marginBottom="10dp"
android:layout_marginRight="30dp" />
</RelativeLayout>
我该怎么办?
我在Mac 10.10.2和Android 5.1 x86_64 Api等级22上使用Android Studio作为模拟器 我读了一些关于Genymotion的内容,但我不想安装VirtualBox。