我试图让 ImageView 重叠它的父级并创建一个像复合 View 一样的语音气球。例如:
我无法让底部的三角形成为蓝色块的一部分并与放置在其下方的任何其他 View /控件重叠。
有没有人有办法做到这一点?
<?xml version="1.0" encoding="utf-8"?>
<merge xmlns:android="http://schemas.android.com/apk/res/android" >
<LinearLayout
android:id="@+id/appointment_ticket_signed_in_content_wrapper"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:background="@color/background_green" >
<ImageView
android:id="@+id/appointment_ticket_signed_in_icon"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:src="@drawable/ic_action_accept"
android:contentDescription="@string/hello_world"
android:layout_marginLeft="@dimen/activity_horizontal_margin"
android:layout_marginTop="@dimen/activity_vertical_margin"
android:layout_marginRight="@dimen/activity_horizontal_margin"
android:layout_marginBottom="@dimen/activity_vertical_margin" />
<TextView
android:id="@+id/appointment_ticket_signed_in_text"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/padding_large"
android:layout_marginRight="@dimen/padding_large"
android:layout_marginBottom="@dimen/padding_large"
android:textColor="@android:color/white"
android:textSize="18sp" />
</LinearLayout>
<ImageView
android:id="@+id/appointment_ticket_signed_in_down_arrow"
android:layout_width="25dp"
android:layout_height="25dp"
android:scaleType="centerInside"
android:src="@drawable/triangle"
android:contentDescription="@string/hello_world"
android:layout_alignParentBottom="true"
android:layout_gravity="bottom"
android:paddingBottom="-25dp"
android:background="@color/important_text_orange" />
</merge>
我认为上面的 XML 是可行的方法,但似乎负边距或填充底部无法将 View 推到其父级之外。
这个 XML 被放置在一个相对布局中。
有谁知道这个问题的答案?
最佳答案
这是一个 xml 文件,它创建了一些可以工作的东西。试试看,让我知道:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:padding="10sp" >
<ImageView
android:layout_width="match_parent"
android:layout_height="200sp"
android:layout_below="@+id/complete_bubble"
android:background="#123456" />
<RelativeLayout
android:id="@+id/complete_bubble"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="-15sp" >
<RelativeLayout
android:id="@+id/main_block"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#000000"
android:padding="10sp" >
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Some text"
android:textColor="#FFFFFF" />
</RelativeLayout>
<ImageView
android:layout_width="20sp"
android:layout_height="20sp"
android:layout_below="@+id/main_block"
android:layout_marginLeft="20sp"
android:background="#000000" />
</RelativeLayout>
</RelativeLayout>
这个负边距有效。
关于Android:语音气球 - ImageView 重叠父级,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/22980361/