如何设置imageview以占用屏幕宽度?

时间:2011-11-13 10:25:34

标签: java android

我想要一个占据屏幕宽度(或布局)的imagview,但是在视图周围似乎有填充阻止我这样做。

enter image description here

使用相应的xml:

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent" android:weightSum="1">
<ImageView android:src="@drawable/icon" android:background="@null"
    android:layout_height="106dp" android:id="@+id/imageView1"
    android:layout_weight="0.59" android:layout_width="match_parent"></ImageView>

</LinearLayout>

3 个答案:

答案 0 :(得分:4)

填充来自android图标上的透明区域。 只需删除未使用的透明区域或使用其他图像。

答案 1 :(得分:0)

尝试更改:

android:layout_width="match_parent"

为:

android:layout_width="fill_parent"

答案 2 :(得分:0)

将布局宽度和高度设为fill_parent

<ImageView android:src="@drawable/icon" android:background="@null"
android:layout_height="fill_parent" android:id="@+id/imageView1"
android:layout_weight="1" android:layout_width="fill_parent"></ImageView>