长时间潜伏,第一次在这里张贴海报!
我在Kindle Fire上遇到问题,当我将图像(在本例中为页眉和页脚)插入相对布局并将宽度设置为" match_parent"或者" fill_parent",两边都有白色边框。
然而,当我将图像放入线性布局并设置完全相同的参数时,它可以正常工作。
它完美适用于手机和我的三星平板电脑,我只是无法弄清楚火灾中出了什么问题。
我希望有人能解决这个问题。我无法通过谷歌或StackOverflow搜索找到任何相关信息。
以下是我的标题和相对布局的XML代码。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="*****************.MainActivity"
android:background="@drawable/background_xhdpi">
<ImageView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/imageHeader"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:src="@drawable/header_xhdpi"
android:adjustViewBounds="true"/>
(问题的例子)
谢谢你的时间!
答案 0 :(得分:0)
对于遇到此问题的其他人,同事开发人员给了我解决方案。
将此添加到未正确拉伸的ImageView:
android:adjustViewBounds="true"
android:scaleType="fitXY"