寻找Android对话框组件

时间:2019-07-28 15:12:26

标签: android dialog

我正在寻找一个类似于以下屏幕截图的Android对话框组件:

large dialog box with title and close button

为白色背景上的白色对话框表示歉意,但希望您可以看到漂亮的立面阴影,圆角以及重要的是对话框右上方的关闭按钮。 (屏幕截图来自Chrome应用的无标签版)。

有人知道实现这一目标或类似目标的库/摘要吗?谢谢。

4 个答案:

答案 0 :(得分:0)

您可以尝试这种布局

<LinearLayout 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"
xmlns:tools="http://schemas.android.com/tools"
tools:background="#B4CCCCCC"
android:orientation="vertical">

<androidx.cardview.widget.CardView
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_margin="10dp"
    app:cardCornerRadius="5dp"
    app:cardElevation="5dp">

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent">



    </RelativeLayout>

</androidx.cardview.widget.CardView>

答案 1 :(得分:0)

好吧,按照上面的建议,这是对一个基本活动的粗略测试的结果,该活动包含一个CardView以及Theme.Holo.Dialog主题:

an activity acting as a dialog form

根据需要,使用CardView确实可以很好地显示圆角和高程,但是存在一个大问题-在对话框的下方和下方看不到原始布局(称为dailog的布局),屏幕区域为空白。因此,它不像对话框。基于DialogFragment的自定义对话框是唯一的前进方向,这是我的下一个目标。

答案 2 :(得分:0)

嗯,我失败了。这是我能想到的最好的方法:

screenshot of dialog

该对话框现在就像一个对话框,位于用户屏幕上方,并且如上面所建议的,CardView小部件还可以,但是DialogFragment将其放置在白色矩形窗口中。不是我想要的如果有人感到有挑战的冲动,这是我的布局xml,对话框类和调用它的代码段:

dialog_bigly.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        android:orientation="vertical"
        android:layout_width="match_parent"
        android:layout_height="550dp">

    <androidx.cardview.widget.CardView
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_margin="10dp"
            app:cardCornerRadius="10dp"
            app:cardElevation="10dp"
            app:layout_constraintStart_toStartOf="parent"
            android:layout_marginStart="16dp"
            app:layout_constraintTop_toTopOf="parent"
            android:layout_marginTop="16dp"
            app:layout_constraintEnd_toEndOf="parent"
            android:layout_marginEnd="16dp"
            android:layout_marginBottom="16dp"
            app:layout_constraintBottom_toBottomOf="parent"
            app:layout_constraintHorizontal_bias="0.6">
        <LinearLayout
                android:orientation="vertical"
                android:layout_width="match_parent"
                android:layout_height="match_parent">
            <TextView
                    android:text="  Dialog Title here"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content" android:id="@+id/txtDialog_title"/>
            <ImageView
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content" app:srcCompat="@drawable/ic_do_not_disturb"
                    android:id="@+id/btnDialog_close" android:layout_gravity="right" android:clickable="true"/>
            <ImageView
                    android:layout_width="match_parent"
                    android:layout_height="match_parent" app:srcCompat="@drawable/test_image207x344"
                    android:id="@+id/ivDialog_Image"/>
        </LinearLayout>
    </androidx.cardview.widget.CardView>
</LinearLayout>

DialogBig.kt

package ...
import ...

class DialogBig: DialogFragment() {
    override fun onCreateDialog(savedInstanceState: Bundle?): Dialog {

        val builder = AlertDialog.Builder(activity!!)
        val inflater = activity!!.layoutInflater
        val dialogView = inflater.inflate(R.layout.dialog_bigly, null)

        val txtTitle = dialogView.findViewById<TextView>(R.id.txtDialog_title)
        val imgImage = dialogView.findViewById<ImageView>(R.id.ivDialog_Image)
        val btnClose = dialogView.findViewById<ImageView>(R.id.btnDialog_close)

        builder.setView(dialogView)
        btnClose.setOnClickListener { dismiss() }
        txtTitle.text = "dialog bigly title"

        return builder.create()
    }
}

最后是代码段

btn_test.setOnClickListener {
    //create a new bigly dialog
    val dialog = DialogBig()
    dialog.show(supportFragmentManager, "testing")
}

答案 3 :(得分:0)

我终于找到了解决方案(一个月后)。 @Bunny建议使对话框片段的背景透明。 具体来说,在DialogFragment类的onCreateView中,添加:

dialog?.window?.setBackgroundDrawable(ColorDrawable(Color.TRANSPARENT))

这可行,但有一个限制,那就是它必须是' drawable '背景。但首先,结果是-带有圆角的对话框:

screenshot of a dialog with rounded corners

好的,代码如下。这是我的“ rounded_corners.xml ”形状:

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
 <corners android:radius="30dp" />
    <padding
        android:bottom="16dp"
        android:left="16dp"
        android:right="16dp"
        android:top="16dp" />
</shape>

在CardCard基本窗口小部件内的对话框片段布局 dialog_bigly.xml 中使用了以下哪种语言:

<?xml version="1.0" encoding="utf-8"?>
<androidx.cardview.widget.CardView
  xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:app="http://schemas.android.com/apk/res-auto"
  android:id="@+id/base_card"
  android:layout_width="match_parent"
  android:layout_height="500dp"
  android:background="@drawable/rounded_corners"
  android:orientation="vertical"
  app:cardCornerRadius="20dp"
  app:cardElevation="10dp" >

  <androidx.constraintlayout.widget.ConstraintLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <TextView
        android:id="@+id/txtDialog_title"
        android:layout_width="0dp"
        android:layout_height="0dp"
        android:layout_marginStart="8dp"
        android:layout_marginBottom="2dp"
        android:fontFamily="@font/open_sans"
        android:text="Dialog Title here"
        app:layout_constraintBottom_toBottomOf="@+id/btnDialog_close"
        app:layout_constraintEnd_toStartOf="@+id/btnDialog_close"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

    <ImageView
        android:id="@+id/btnDialog_close"
        android:layout_width="24dp"
        android:layout_height="24dp"
        android:layout_marginEnd="8dp"
        style="@style/Widget.AppCompat.ActionButton"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:srcCompat="@drawable/ic_red_close_24x24" />

    <ImageView
        android:id="@+id/ivDialog_Image"
        android:layout_width="0dp"
        android:layout_height="0dp"
        android:layout_marginTop="16dp"
        android:layout_marginBottom="16dp"
        app:layout_constraintDimensionRatio="w,1:1"
        app:layout_constraintTop_toBottomOf="@+id/txtDialog_title"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintBottom_toBottomOf="parent"
        app:srcCompat="@drawable/test_image185x285" />
  </androidx.constraintlayout.widget.ConstraintLayout>
</androidx.cardview.widget.CardView>

最后是 DialogBig.kt kotlin代码:

package ...

import ...

class DialogBig: DialogFragment() {
  override fun onCreateDialog(savedInstanceState: Bundle?): Dialog {

    val builder = AlertDialog.Builder(activity!!)
    val inflater = activity!!.layoutInflater
    val dialogView = inflater.inflate(R.layout.dialog_bigly, null)

    val txtTitle = dialogView.findViewById<TextView>(R.id.txtDialog_title)
    val imgImage = dialogView.findViewById<ImageView>(R.id.ivDialog_Image)
    val btnClose = dialogView.findViewById<ImageView>(R.id.btnDialog_close)

    builder.setView(dialogView)
    btnClose.setOnClickListener { dismiss() }
    txtTitle.text = "my bigly dialog test title"
    return builder.create()
  }

  override fun onCreateView(inflater: LayoutInflater, container: ViewGroup?, savedInstanceState: Bundle?): View? {
    dialog?.window?.setBackgroundDrawable(ColorDrawable(Color.TRANSPARENT))
    return super.onCreateView(inflater, container, savedInstanceState)
  }
}

尽管我不太了解它的工作原理,但很高兴找到了解决方案。我认为部分问题是试图访问DialogFragment类深处的片段持有者容器以应用透明性,而不是简单地使用片段布局本身。

相关问题