web-dev-qa-db-ja.com

ListViewアダプタのOnClickにアクティビティ関数を呼び出させる方法

AndroidアプリケーションにListViewが含まれている場合、ListViewは正常にセットアップされますが、ListView内の画像をクリック可能にする必要があります。これを行うには、Activityクラスの2つのクラスを使用します(親)とArrayAdapterを使用して、リストを埋めます。ArrayAdapterで、クリック可能にしたいリスト内の画像にOnClickListenerを実装します。

これまでのところ、それはすべて機能します。

しかし、リスト内の画像のonClickが実行されたときに、アクティビティクラスから関数を実行したいのですが、方法がわかりません。以下は私が使用する2つのクラスです。

最初のアクティビティクラス:

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を設定する方法を誰かが知っている場合は、ヘルプを大いに活用します。

13
user1321683

内部onClick()次のようなことを行います。

((ParentClass) context).functionToRun();
44
Adil Soomro

提供された回答をわかりやすくするために、BaseAdapterでは、this.getActivity();を呼び出すことで親クラスを取得できます。これを実際のアクティビティクラスにタイプキャストすると、以下の@AdilSoomroの回答に従って関数を呼び出すことができるため、実際にこのようなものになってしまいます

public class MyAdapter extends BaseAdapter<Long> {
    public MyAdapter(Activity activity,
            TreeStateManager<Long> treeStateManager, int numberOfLevels) {
        super(activity, treeStateManager, numberOfLevels);
    }

    @Override
    public void handleItemClick(final View view, final Object id) {
        ((MyActivity) this.activity).someFunction();
    }
}

次に、MyActivityでsomeFunctionを宣言して、必要な処理を実行します。

    protected void someFunction(){
//    Do something here
    }
8
jamesc