未解决的参考 getResources() Kotlin

问题描述 投票:0回答:4

因此,我尝试访问代码中的 getResources() ,但由于某种原因,它不断获得未解析的引用。我正在另一个类中为我的数组适配器执行此操作。是因为我没有main方法还是其他原因?一般来说,我对 android 开发和 kotlin 有点陌生,所以任何帮助将不胜感激。

class ForecastAdapter(val forecast: Forecast) : RecyclerView.Adapter<ForecastData>(){
    override fun getItemCount(): Int {
        return forecast.list.count()

    }

    override fun onCreateViewHolder(p0: ViewGroup, p1: Int): ForecastData {
        val layoutInflator = LayoutInflater.from(p0?.context)
        val cellForRow = layoutInflator.inflate(R.layout.weather_row, p0, false)
        return ForecastData(cellForRow)

    }

    override fun onBindViewHolder(p0: ForecastData, p1: Int) {
        val drawableId: Int = getResources().getIdentifier("my_drawable", "drawable", getPackageName())
        val getWeather = forecast.list[p1]
        val clouds = getWeather.weather[0]
        val getDateTime = forecast.list[p1]
        var getIcon = forecast.list[p1]
        var icon = getIcon.weather[0]
        p0.view.textView_text_clouds.text = clouds.main
        p0.view.textView_date_time.text = getDateTime.dt_txt

    }

}

class ForecastData(val view: View): RecyclerView.ViewHolder(view){


}

android kotlin android-arrayadapter custom-arrayadapter
4个回答
8
投票

将上下文作为参数传递到适配器中,然后像这样使用

 class ForecastAdapter(val forecast: Forecast,val context:Context)

然后

 override fun onBindViewHolder(p0: ForecastData, p1: Int) {
    val drawableId: Int = context.getResources().getIdentifier("my_drawable", "drawable", getPackageName())

2
投票

您不需要通过构造函数传递它。 在 onCreateViewHolder 中,您可以从 parent.context

获取它

0
投票

您可以使用root。视图中的上下文。

 override fun onBindViewHolder(p0: ForecastData, p1: Int) {
        val drawableId: Int = p0.view.root.context.resources.getIdentifier("my_drawable", 

    }

-1
投票

您可以使用ContextCompat。

ContextCompat.getColor(this.applicationContext, android.R.color.transparent)
© www.soinside.com 2019 - 2024. All rights reserved.