我的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>
答案 0 :(得分:6)
您将ImageView的高度设置为wrap_content
。这意味着ImageView将只占用您选择的图像所需的空间。如果您希望它占据整个屏幕,只需将layout_height更改为fill_parent
。
您还需要选择带有scaleType
的ImageView android:scaleType=""
。
答案 1 :(得分:1)
试
android:adjustViewBounds="true"
或结帐
image_view_1.xml
在Android APIDemos中。
它应该有所帮助。