ListView を含む Android アプリケーションがあります。ListView は正常にセットアップされますが、ListView 内の画像をクリック可能にしたいと考えています。これを行うには、Activity クラス (親) と ArrayAdapter の 2 つのクラスを使用してリストを埋めます。ArrayAdapter で、クリック可能にしたいリスト内の画像の OnClickListener を実装します。
これまでのところ、すべて機能しています。
しかし、リスト内の画像のonClickが実行されたときにアクティビティクラスから関数を実行したいのですが、方法がわかりません。以下は、私が使用する2つのクラスです。
最初の Activity クラス:
public class parent_class extends Activity implements OnClickListener, OnItemClickListener
{
child_class_list myList;
ListView myListView;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
// setup the Homelist data
myList = new child_class_list (this, Group_Names, Group_Dates);
myListView = (ListView) findViewById(R.id.list);
// set the HomeList
myListView.setAdapter( myList );
myListView.setOnItemClickListener(this);
}
void function_to_run()
{
// I want to run this function from the LiscView Onclick
}
public void onItemClick(AdapterView<?> arg0, View arg1, int arg2, long arg3)
{
// do something
}
}
そして、Activity クラスから関数を呼び出したい場所からの ArrayAdapter:
public class child_class_list extends ArrayAdapter<String>
{
// private
private final Context context;
private String[] mName;
private String[] mDate;
public child_class_list (Context context, String[] Name, String[] Date)
{
super(context, R.layout.l_home, GroupName);
this.context = context;
this.mName = Name;
this.mDate = Date;
}
@Override
public View getView(int position, View convertView, ViewGroup parent)
{
LayoutInflater inflater = (LayoutInflater) context
.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View rowView = inflater.inflate(R.layout.l_home, parent, false);
ImageView selectable_image = (ImageView) rowView.findViewById(R.id.l_selectable_image);
selectable_image.setOnClickListener(new OnClickListener()
{
public void onClick(View v)
{
// I want to run the function_to_run() function from the parant class here
}
}
);
// get the textID's
TextView tvName = (TextView) rowView.findViewById(R.id.l_name);
TextView tvDate = (TextView) rowView.findViewById(R.id.l_date);
// set the text
tvName.setText (mName[position]);
tvDate.setText (mDate[position]);
return rowView;
}
}
arrayadapter からアクティビティ クラスで関数を実行する方法、またはアクティビティ クラスで画像 onClickListener を設定する方法を誰かが知っていれば、私は大いに助けてくれるでしょう。