android-RelativeLayout背景可绘制的重叠内容

android-RelativeLayout背景可绘制的重叠内容,第1张

概述我有一个9补丁drawable(date_time).我想将此可绘制对象放置在“相对布局”内容的后面,因此所有子视图都应绘制在此图像的顶部.这是xml布局:<RelativeLayoutandroid:layout_width="wrap_content"android:layout_height="23dp"android:layo

我有一个9补丁drawable(date_time).我想将此可绘制对象放置在“相对布局”内容的后面,因此所有子视图都应绘制在此图像的顶部.
这是xml布局:

<relativeLayout            androID:layout_wIDth="wrap_content"            androID:layout_height="23dp"            androID:layout_below="@ID/tv_map_address"            androID:layout_margintop="11dp"            androID:layout_marginBottom="12dp"            androID:background="@drawable/date_time">            <ImageVIEw                androID:ID="@+ID/iv_map_distance"                androID:layout_wIDth="wrap_content"                androID:layout_height="wrap_content"                androID:layout_marginleft="10dp"                androID:layout_centerVertical="true"                androID:src="@drawable/ic_map_distance"/>            <TextVIEw                androID:ID="@+ID/tv_map_distance"                androID:layout_wIDth="wrap_content"                androID:layout_height="wrap_content"                androID:layout_marginleft="10dp"                androID:layout_toRightOf="@ID/iv_map_distance"                androID:layout_centerVertical="true"                androID:textcolor="@color/white"                androID:textSize="11sp"                androID:text="2,7 км"                FontPath="Fonts/Roboto-Medium.ttf"/>            <ImageVIEw                androID:ID="@+ID/iv_map_path"                androID:layout_wIDth="wrap_content"                androID:layout_height="wrap_content"                androID:layout_marginleft="10dp"                androID:layout_toRightOf="@ID/tv_map_distance"                androID:layout_centerVertical="true"                androID:src="@drawable/ic_map_path"/>            <TextVIEw                androID:ID="@+ID/tv_map_path"                androID:layout_wIDth="wrap_content"                androID:layout_height="wrap_content"                androID:layout_marginleft="10dp"                androID:layout_toRightOf="@ID/iv_map_path"                androID:layout_centerVertical="true"                androID:textcolor="@color/white"                androID:textSize="11sp"                androID:text="3,2 км"                FontPath="Fonts/Roboto-Medium.ttf"/>        </relativeLayout>

但是这种背景与所有子内容都有重叠之处.
这里显示发生了什么.

但是如果我更换

androID:background="@drawable/date_time"

androID:background="#0000FF"

一切都很好,输出是下一个:

你能解释一下我在做什么错吗?

更新:
这是我的9补丁可绘制对象.

解决方法:

就像我认为您的内容指示器不正确一样(除非您想在9补丁中引入这样的内容填充).尝试以下方法:

右侧和底部参考线确定内容应占据可绘制对象的哪一部分(或多少部分).您已将该区域设置为很小的空间,并设置了Layout的固定高度.换句话说:9-patch强制您的Layout使其子元素仅占据视图的一小部分区域(这是由于您不让Layout拉伸而受到限制).

总结

以上是内存溢出为你收集整理的android-RelativeLayout背景可绘制的重叠内容全部内容,希望文章能够帮你解决android-RelativeLayout背景可绘制的重叠内容所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1078651.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-27
下一篇 2022-05-27

发表评论

登录后才能评论

评论列表(0条)

保存