我正在尝试创建类似于以下内容的警报。我已经用ediitext替换了图像中的文本。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/transparent"
android:orientation="vertical">
<LinearLayout
android:layout_marginTop="20dp"
android:background="@android:color/white"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<ImageView
android:layout_marginTop="-20dp"
android:layout_width="wrap_content"
android:layout_height="50dp"
android:layout_gravity="center"
android:src="@drawable/ic_bell"/>
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="10dp"
android:background="@drawable/border"
android:gravity="top|left"
android:inputType="textMultiLine"
android:lines="8"
android:maxLines="10"
android:minLines="6"
android:scrollbars="vertical"/>
</LinearLayout>
<LinearLayout
android:background="@android:color/white"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="10dp"
android:weightSum="2">
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:background="@color/colorPrimary"
android:text="Submit"
android:textColor="@color/white"/>
<View
android:layout_width="4dp"
android:layout_height="match_parent"
android:background="@android:color/transparent"/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:background="@color/colorPrimary"
android:text="Cancel"
android:textColor="@color/white"/>
</LinearLayout>
</LinearLayout>
我已经使根布局透明,并且使孩子有白色背景。我已将imageview的margintop设置为-20,因此它将向上突出,但是即时通讯无法获得相同的效果。为什么这样?
最佳答案
您可以使用FrameLayout在另一个视图上方添加视图并为其提供边距,以使其看起来像是同一布局的一部分。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:layout_alignParentTop="true"
android:background="@android:color/transparent"
android:orientation="vertical">
<FrameLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<EditText
android:ems="10"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@android:color/white"
android:inputType="textMultiLine"
android:layout_marginTop="20dp"
android:lines="8"
android:maxLines="10"
android:minLines="6"
android:scrollbars="vertical" />
<ImageView
android:layout_marginTop="0dp"
android:layout_width="wrap_content"
android:layout_height="50dp"
android:layout_gravity="center|top"
android:src="@drawable/ic_launcher" />
</FrameLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="10dp"
android:background="@android:color/white"
android:weightSum="2">
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:background="@android:color/black"
android:text="Submit"
android:textColor="#FFFFFF" />
<View
android:layout_width="4dp"
android:layout_height="match_parent"
android:background="@android:color/transparent" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:background="@android:color/black"
android:text="Cancel"
android:textColor="#FFFFFF" />
</LinearLayout>
</LinearLayout>