emre1512 在 Kotlin 中创建 Noty RelativeLayout

emre1512 Noty RelativeLayout creation in Kotlin

我有一个简单的 MainActivity,其主布局如下所示:

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.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">

    <ImageView
        ... />
</androidx.constraintlayout.widget.ConstraintLayout>

我需要在此 activity 上激活 Noty。我需要知道的是如何在 Kotlin 的简单示例中创建 RelativeLayout“yourLayout”。

Noty.init(YourActivity.this, "Your warning message", yourLayout, Noty.WarningStyle.SIMPLE).show();

谢谢!

android:id 属性添加到您的 ConstraintLayout 标签:

android:id="@+id/root"

现在您可以在代码中获取对 ConstraintLayout 的引用:

val root: ConstraintLayout = findViewById(R.id.root)
Noty.init(this@MainActivity, "Your warning message", root, Noty.WarningStyle.SIMPLE).show()