在Android中自定义toast时长,kotlin语言
时间: 2024-05-03 14:16:53 浏览: 102
在Android中自定义Toast时长可以使用以下代码:
```kotlin
val toast = Toast.makeText(context, message, Toast.LENGTH_SHORT)
toast.duration = customDuration //设置自定义时长,单位为毫秒
toast.show()
```
其中,`customDuration` 即为你自定义的时长,单位为毫秒。这里将自定义的时长设置给了 `toast.duration` 属性,然后再调用 `show()` 方法显示Toast即可。
阅读全文