0

我有一个简单的 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>

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

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

谢谢!

4

1 回答 1

1

为您的标签添加一个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()
于 2020-07-24T18:50:04.237 回答