0

我有一个带有 tabHost 的应用程序;在其中一个选项卡上,我有一张背景图片,但图片没有填满整个屏幕:

bgnd图像

我的图像是 480 x 800 像素

我的 home.xml:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" 
    android:background="@drawable/home_bgnd">
</LinearLayout>

如何修复此代码以使图像覆盖整个屏幕?

4

2 回答 2

1

在您的 XML 中使用 ImageView 并设置android:scaleType="fitXY"为使其延伸到其父布局。作为父布局,我建议你使用FrameLayout这样图像可以作为它的背景。

例如:

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">
    <ImageView
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:scaleType="fitXY"
        android:src="@drawable/your_source"/>

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:orientation="vertical">

        <!-- your other views here -->

    </LinearLayout>
</FrameLayout>
于 2012-05-28T06:13:20.503 回答
1

在这种情况下,您似乎正在使用 tabhost,您必须查看您拥有 tabhost 的 xml 布局。

检查包含视图中的填充android:id="@android:id/tabcontent"并从那里删除该填充或边距。

于 2012-05-28T06:14:49.423 回答