0

我想要做的是从客户适配器访问我主要活动中的 ArrayList 以获取列表视图。

我有一个可以点击的列表视图,这是我在客户适配器(onclick 所在的位置)中完成的。当用户单击它时,他们将输入一个标题(文本),它将更新主活动中的一个数组列表(字符串)。

我已经阅读了有关该主题的其他一些问题,但我对如何使这项工作迷失了方向。

我没有看到需要发布代码片段,因为它只是一个基本的数组列表(字符串)和一个列表视图的自定义适配器。如果需要代码,我可以发布。谢谢!

这里是适配器代码的一部分:

public class PhotoAdapter extends ArrayAdapter<Photo> {

    private final ArrayList<Photo> objects;

    public PhotoAdapter(Context context, int textViewResourceId,
            ArrayList<Photo> objects) {
        super(context, textViewResourceId, objects);
        this.objects = objects;
    }

    @Override
    public View getView(int position, View convertView, ViewGroup parent) {
        final Photo i = objects.get(position);
        View v = convertView;

        if (v == null) {
            LayoutInflater inflater = (LayoutInflater) getContext()
                    .getSystemService(Context.LAYOUT_INFLATER_SERVICE);
            v = inflater.inflate(R.layout.listview_row, null);
                v.setClickable(true);
                v.setFocusable(true);
        }

这是来自主要活动的代码

public ArrayList<Photo> m_photos = new ArrayList<Photo>();
public ArrayList<String> m_photo_captions = new ArrayList<String>();
private PhotoAdapter m_adapter;

this.list1 = (ListView) findViewById(R.id.lstPhotos);
        m_adapter = new PhotoAdapter(this, R.layout.listview_row, m_photos);
        LayoutInflater infalter = getLayoutInflater();
list1.setAdapter(m_adapter);

if (Intent.ACTION_SEND_MULTIPLE.equals(action)
                && intentGallery.hasExtra(Intent.EXTRA_STREAM)) {
            ArrayList<Parcelable> list = intentGallery
                    .getParcelableArrayListExtra(Intent.EXTRA_STREAM);
            for (Parcelable p : list) {
                Uri uri = (Uri) p;
                imagePath = getPath(uri);
                m_photos.add(new Photo(imagePath, ""));
                m_photo_locations.add(imagePath);
                m_photo_captions.add("");
                m_adapter.notifyDataSetChanged();
            }
        }

onclick 监听器

    list1.setOnItemClickListener(new OnItemClickListener() {
        @Override
        public void onItemClick(AdapterView<?> parent, View v,
                int position, long id) {
            // Do whatever you want with m_photo_captions here
            Log.v("listview", "listview item clicked");
            appErrorAlert("test", "test");
        }
    });
4

2 回答 2

3

您可以将要访问的 ArrayList 定义为全局实例变量,这样您就可以从自定义适配器内部访问它。

如果您为您的问题提供了代码片段,这也会很有帮助。

于 2012-08-28T02:13:17.147 回答
1

既然您已经发布了代码,我建议您采用与 Mohamed A. Karim 不同的方法。


您正在尝试OnClickListener在您的整个行上设置一个简单的Adapter但可以访问您的 Activity 的成员。为什么不在OnItemClickListenerListView已经可以访问你想要的列表的地方设置一个呢?

list1.setOnItemClickListener(new OnItemClickListener() {
    @Override
    public void onItemClick(AdapterView<?> parent, View v, int position, long id) {
        // Do whatever you want with m_photo_captions here
    }
});

接下来删除所有会在触摸事件到达您的ListView. 您还可以使您getView()的设备更小更快,如下所示:

public class PhotoAdapter extends ArrayAdapter<Photo> {
    LayoutInflater mInflater;

    public PhotoAdapter(Context context, int textViewResourceId,
            ArrayList<Photo> objects) {
        super(context, textViewResourceId, objects);
        mInflater = (LayoutInflater) getContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE);
    }

    @Override
    public View getView(int position, View convertView, ViewGroup parent) {
        final Photo i = get(position);
        View v = convertView;

        if (v == null) {
            v = mInflater.inflate(R.layout.listview_row, null);
            // Initialize your ViewHolder here!
        }

        // Update your TextViews, ImageViews, etc here
        ...
    }
}

希望有帮助!

于 2012-08-28T03:53:47.010 回答