我有一个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背景可绘制的重叠内容所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)