12

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 を設定する方法を誰かが知っていれば、私は大いに助けてくれるでしょう。

4

2 に答える 2

44

onClick()のようにします。

((ParentClass) context).functionToRun();
于 2012-04-09T11:29:22.390 に答える
8

提供された回答を明確にするために、 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
    }
于 2012-10-09T15:40:11.687 に答える