当手机处于垂直模式时,我的imageView水平填充最大尺寸。但是当我将它转换为水平模式时,我的imageView与不合适。我需要将图片扩展到屏幕的边框。 我做错了什么?
我的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"
/>
答案 0 :(得分:3)
设置ImageView的背景而不是src。
android:background="@drawable/keks1"
答案 1 :(得分:0)
设置ImageView背景。有关更多信息,请查看http://androiddesk.wordpress.com/