Dheeresh Singh 没问题。主.xml:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<ImageView
android:id="@+id/x2"
android:src="@drawable/book"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>
如果想把图片定位在不同的地方,可以修改不同的属性
<ImageView
android:id="@+id/x2"
android:src="@drawable/book"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="42dp" <!--for example -->
android:layout_marginLeft="25dp"
android:layout_marginRight="25dp"
android:layout_marginTop="25dp"/>
有关这方面的更多信息,请查看 android 教程
http://developer.android.com/reference/android/widget/ImageView.html(用于 ImageView 属性)
http://developer.android.com/resources/tutorials/views/index.html(用于查看信息)
对不起我的英语。祝你好运!