0

当手机处于垂直模式时,我的 imageView 会水平填充最大尺寸。但是,当我将其转换为水平模式时,我的 imageView 与 pthe 不匹配。我需要将图片扩展到屏幕的边界。我做错了什么?

我的xml:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="fill_parent"
android:layout_width="fill_parent" 
android:orientation="vertical">
<ScrollView
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<RelativeLayout 
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="5dp">
<ImageView
android:id="@+id/picture"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:src="@drawable/keks1"
    />
4

2 回答 2

3

设置 ImageView 的背景不是 src。

android:background="@drawable/keks1"
于 2012-05-03T05:41:52.810 回答
0

设置 ImageView 背景。有关更多信息,请查看http://androiddesk.wordpress.com/

于 2012-05-03T05:54:32.747 回答