gpt4 book ai didi

android - getLayoutInflater 无法解析

转载 作者:搜寻专家 更新时间:2023-11-01 07:50:05 24 4
gpt4 key购买 nike

此代码属于我的自定义微调器的数组适配器。我在 getLayoutInflater() 方法上收到无法解析方法的错误,我不知道为什么。任何帮助将不胜感激。

    public View getCustomView(int position, View convertView, ViewGroup parent) {
LayoutInflater inflater= getLayoutInflater();
View mySpinner = inflater.inflate(R.layout.spinneritems, parent, false);

TextView main_text = (TextView) mySpinner.findViewById(R.id.spinneritem);
main_text.setText(spinnerValues[position]);
return mySpinner;
}

最佳答案

试试这个对我有用。

LayoutInflater inflater= LayoutInflater.from(context);

关于android - getLayoutInflater 无法解析,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35958162/

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