gpt4 book ai didi

android - 如何在 Jetpack Compose 中获取上下文

转载 作者:行者123 更新时间:2023-12-04 01:39:45 38 4
gpt4 key购买 nike

fun createListItem(itemIndex: Int) {
Padding(left = 8.dp, right = 8.dp, top = 8.dp, bottom = 8.dp) {
FlexRow(crossAxisAlignment = CrossAxisAlignment.Center) {
expanded(1.0f) {
Text("Item $itemIndex")
}
inflexible {
Button(
"Button $itemIndex",
style = ContainedButtonStyle(),
onClick = {
Toast.makeText(
this@MainActivity,
"Item name $itemIndex",
Toast.LENGTH_SHORT
).show()
})

}
}
}
}

我尝试以正常方式制作 toast 。但我得到了错误我尝试了很多倍数来源但失败了。

最佳答案

2021 年 3 月更新:先前的答案已被弃用。您现在应该使用:

val context = LocalContext.current

上一个答案供引用:
您可以通过定义 ambientContext 访问上下文.
示例:
val context = ContextAmbient.current

关于android - 如何在 Jetpack Compose 中获取上下文,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58743541/

38 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com