按钮从适配器

时间:2016-06-08 07:52:27

标签: android button android-activity position adapter

我想设置我在Adapter中声明的位置onClick Button,但我不知道如何在Activity中设置位置。

这是我的适配器

public void onBindViewHolder(final PhotoViewHolder holder, final int position) {holder.plus.setOnClickListener(new View.OnClickListener() {
    @Override
    public void onClick(View v) {
        if (mContext instanceof PhotoPicker) {
            ((PhotoPicker) mContext).tambahFoto(position);

        }
    }
});}

我想在Activity中调用我的函数

public void tambahFoto(int position) {


    count = Integer.parseInt(tampilan.getText().toString());

    if(count > 1) {
        jumlahFoto = jumlahFoto + 1;
        photo_cropAdapter.notifyDataSetChanged();

        count++;
        tampilan.setText(""+count);
        jum.setText(jumlahFoto+"/ "+dataProduct.getMaxQty()+" Photo");

    }

    }

但是如何设置Button的位置?你能救我吗?

0 个答案:

没有答案