このため
// Look for the image
int identifier = Context.getResources().getIdentifer(Index.THUMBNAIL, "drawable", getPackageName());
エラーが発生しました
この行に複数のマーカー - メソッド getPackageName() はタイプ MenuAdapter に対して定義されていません - タイプ Context から非静的メソッド getResources() への静的参照を作成できません - コンテキストを解決できません
これを修正する方法が本当にわかりません。
これが私のクラスです。目標は、.setRecourse(int) によって ImageView 内の画像を変更することです。
package com.example.whs;
import java.util.ArrayList;
import java.util.HashMap;
import android.app.Activity;
import android.content.Context;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.BaseAdapter;
import android.widget.ImageView;
import android.widget.TextView;
public class MenuAdapter extends BaseAdapter{
// Define variables
ArrayList<HashMap<String, String>> data;
Activity activity;
private LayoutInflater inflater=null;
public MenuAdapter(Activity a, ArrayList<HashMap<String, String>> d) {
activity = a;
data = d;
inflater = LayoutInflater.from (a);
}
@Override
public int getCount() {
return data.size();
}
@Override
public Object getItem(int position) {
// TODO Auto-generated method stub
return position;
}
@Override
public long getItemId(int position) {
// TODO Auto-generated method stub
return position;
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
View vi=convertView;
if(convertView==null)
vi = inflater.inflate(R.layout.list_row, null);
// Focus on the parts that have to be changed
TextView title = (TextView)vi.findViewById(R.id.title); // title
TextView subtitle = (TextView)vi.findViewById(R.id.subtitle); // subtitle
ImageView thumb_image=(ImageView)vi.findViewById(R.id.list_image); // thumb image
//Get the info from the hashmap with the arraylist position
HashMap<String, String> item = new HashMap<String, String>();
item = data.get(position);
// Look for the image
int identifier = getApplicationContext().getResources().getIdentifer(Index.THUMBNAIL, "drawable", MenuAdapter.class.getPackage().getName());;
// Setting all values in listview
title.setText(item.get(Index.TITLE));
subtitle.setText(item.get(Index.SUBTITLE));
thumb_image.setImageResource(identifier);
return vi;
}
}