1

我正在开发我的第一个 Android 应用程序,我想用两个连续的图像构建一个主菜单,然后是一个带有一些选项卡的 TabWidget。我使用的是安卓 2.3。

我不知道为什么,但是,在图像之间,出现了一些看起来很丑陋的空白......我一直在尝试修改 paddin 和 margin 但没有工作......任何人都知道会发生什么?

这是我的代码:

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

<TabHost 
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@android:id/tabhost"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >
    <!--  android:background="#000000" -->


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

    <ImageView android:id="@+id/TwiceBar"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/twice_bar"
        android:scaleType="fitStart"
        />

    <ImageView
        android:id="@+id/Banner_publicidad"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/banner_publicidad"
        android:scaleType="fitStart" />

    <TabWidget
        android:id="@android:id/tabs"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />

    <FrameLayout
        android:id="@android:id/tabcontent"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />

     </LinearLayout>
</TabHost>

在此先感谢您的帮助!

4

2 回答 2

6

您是否尝试将 android:adjustViewBounds="true" 添加到您的 ImageViews?

于 2013-02-16T18:39:19.803 回答
0

稍微调整一下,fitStart只会将图像移动到图像视图的顶部/左侧,它不会填充空间。

cropCenter允许图像按您的要求填充空间,因此,如果图像视图比图像宽,这意味着它需要裁剪底部和顶部以填充空间,它会这样做。

一般来说,CenterscaleTypes 是最好的填充空间。

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

 <ImageView android:id="@+id/TwiceBar"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:src="@drawable/twice_bar"
    android:scaleType="centerCrop"
    />

 <ImageView
    android:id="@+id/Banner_publicidad"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:src="@drawable/banner_publicidad"
    android:scaleType="centerCrop" />

 <TabWidget
    android:id="@android:id/tabs"
    android:layout_width="match_parent"
    android:layout_height="wrap_content" />

 <FrameLayout
    android:id="@android:id/tabcontent"
    android:layout_width="match_parent"
    android:layout_height="match_parent" />

</LinearLayout>
于 2013-02-16T18:09:04.160 回答