答案 0 :(得分:2)
使用线性布局和imageView。 请参阅http://developer.android.com/reference/android/widget/LinearLayout.html
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/YourImage">
</LinearLayout>
答案 1 :(得分:0)