我有一个apk文件,我想在模拟器中运行,但在eclipse之外.我在android sdk的工具目录中看到有一个模拟器应用程序,但有没有办法在eclipse外测试?
谢谢
我的main.xml中有以下内容,图像标记没有填充设备的宽度?
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:screenOrientation="portrait">
<ImageView
android:id="@+id/ImageView01"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:src="@drawable/marker">
</ImageView>
</LinearLayout>
Run Code Online (Sandbox Code Playgroud)