我一直在试图使一个对话框片段在左上角有一个关闭按钮,如图所示。有人能告诉我怎么做吗?
这是片段的布局:

<android.support.constraint.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"

xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">

<LinearLayout
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginRight="5dp"
    android:layout_marginTop="10dp"
    android:background="#FFFFFF"
    android:gravity="center"
    android:orientation="vertical"
    android:paddingBottom="-50dp" >
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Sample Text"/>
    <!---add your views here-->
</LinearLayout>

<ImageView
    android:id="@+id/imageView_close"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    app:layout_constraintTop_toTopOf="parent"
    app:layout_constraintLeft_toLeftOf="parent"
    android:clickable="true"
    android:src="@drawable/ic_close_dialog" />

碎片现在的样子:What the final result should look like (Sorry about the text, it's in romanian)

最佳答案

您可以创建自定义布局并使用

dialog.setContentView(R.layout.custom_view);

参考custom dialog with close button
如果它仍然像图片中那样出现,则可能是此约束布局的容器视图的宽度和高度为wrap_content。

10-07 16:51