我正在开发我的第一个Android应用程序,我想构建一个带有两个连续图像的主要meno,然后是带有一些标签的TabWidget。我正在使用Android 2.3。
我不知道为什么但是,在imges之间,看起来有些白色空间看起来很难看......我一直在修改paddin和margin但是没有作用......任何人都知道会发生什么?< / p>
这是我的代码:
<?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>
提前感谢您的帮助!
答案 0 :(得分:5)
您是否尝试过向您的ImageView添加android:adjustViewBounds =“true”?
答案 1 :(得分:0)
稍微调整,fitStart
只会将图像移动到图像视图的顶部/左侧,它不会填充空间。
cropCenter
允许图像按照您的要求填充空间,因此,如果图像视图比图像宽,则意味着需要裁剪底部和顶部以填充空间,它将执行所以。
通常,Center
scaleTypes最适合用来填充空间。
<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>