如何在本机反应中将图像添加到吐司,这可能吗?

how to add image to toast in react native,is it possible?

从 'react-native-View-Toast'

导入 Toast

我在这里尝试将图像添加到 toast 以查看它是如何工作的,我想知道 toast 库的类型 并在 react-native

中使用

您可以使用setView()方法将imageview或任何视图添加到Toast通知中,使用此方法可以根据需要自定义Toast。

我在这里创建了一个自定义布局文件,将其扩展到 Toast 通知中,然后我通过 setView() 方法在 Toast 中使用了这个布局。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:id="@+id/relativeLayout1"
  android:background="@android:color/white">

    <TextView
        android:textAppearance="?android:attr/textAppearanceLarge"
        android:id="@+id/textView1" android:layout_height="wrap_content"
        android:layout_width="fill_parent"
        android:text="PM is here"
        android:gravity="center"
        android:textColor="@android:color/black">
    </TextView>

    <ImageView
        android:layout_height="wrap_content"
        android:layout_width="fill_parent"
        android:src="@drawable/new_logo"
        android:layout_below="@+id/textView1"
        android:layout_margin="5dip"
        android:id="@+id/imageView1">
    </ImageView>

    <TextView
        android:id="@+id/textView2"
        android:layout_height="wrap_content"
        android:layout_width="fill_parent"
        android:text="This is the demo of Custom Toast Notification"
        android:gravity="center"
        android:layout_below="@+id/imageView1"
        android:textColor="@android:color/black">
    </TextView>

</RelativeLayout>

对于您可以查看的图书馆 openbase.io