gpt4 book ai didi

android-layout - 导入什么来解决 "LayoutParams cannot be resolved to a variable"?

转载 作者:行者123 更新时间:2023-12-04 21:16:44 27 4
gpt4 key购买 nike

我收到错误 LayoutParams cannot be resolved to a variable一行代码如下 tv.setLayoutParams(new GridView.LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT, 0.1f));当我按 ctrl+shift+o 导入必要的 pacakges 时,我得到了很多版本的包作为选项。我很困惑哪一个应该做这项工作。
here是我得到的选择吗

导入后import android.app.ActionBar.LayoutParams;仍然出错

The constructor AbsListView.LayoutParams(int, int, float) is undefined

最佳答案

可以通过导入[any layout].LayoutParams来解决
例如。import android.widget.GridLayout.LayoutParams;虽然我不清楚选择导入哪个包的标准应该是什么。
解决问题

the constructor AbsListView.LayoutParams(int, int, float) is undefined

确保第三个参数也是“int”
它应该是 :
LayoutParams cannot be resolved to a variable on a line of code which is as follows tv.setLayoutParams(new GridView.LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT, 1));

关于android-layout - 导入什么来解决 "LayoutParams cannot be resolved to a variable"?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21579561/

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