从循环系统行中的项目调用新活动



我需要调用一个新活动,当我的一个recyclerview行元素中的一个按钮被调用时。列表中的每个行项目都包含4个按钮,其中一个按钮需要打开一个新活动,该活动将用于编辑该行中的数据。

这是到目前为止我按钮的代码:

public void onBindViewHolder(CounterLayoutAdapter.ViewHolder holder, final 
    int position) {
    final Counter counter = counterList.get(position);
    //counter is a class which holds the data that will be displayed on one 
    //row
    String comment = counter.getComment();
    String name = counter.getCounterName();
    int number = counter.getCurrentValue();
    //LocalDate modifyDate = counter.getLastModifyDate();
    Button up = holder.itemView.findViewById(R.id.buttonUp);
    Button down = holder.itemView.findViewById(R.id.buttonDown);
    Button reset = holder.itemView.findViewById(R.id.buttonReset);
    Button edit = holder.itemView.findViewById(R.id.buttonEdit);
    Button delete = holder.itemView.findViewById(R.id.buttonDelete);
 //  code for 4 other buttons goes here
 //
    edit.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View view) {
        }
    });

由于我需要开放的活动来为我返回用户输入的数据,因此我正在使用StartActivityForresult。但是,据我所知,这仅在实际的活动类中起作用。

因此,我尝试将MainAttivity上下文传递到我的所有按钮代码所在的counterlayoutadapter类中。但是,OnBindViewHolder方法仍然无法在此处访问它。因此,我试图将上下文传递给OnBindViewHolder,但这也不起作用,因为如果我这样做,它不会覆盖抽象类。

那么,我到底如何在这里称呼新活动?

另外,如果还有其他方法可以将用户输入到4个字段中,并将输入返回给适配器而无需调用活动,则也可以正常工作。

编辑:视图持有人和布局通货膨胀

   public static class ViewHolder extends RecyclerView.ViewHolder implements 
   View.OnClickListener {
        private TextView name;
        private TextView comment;
        private TextView number;
        //private TextView date;

        public ViewHolder(View itemView) {
            super(itemView);
            itemView.setOnClickListener(this);
            comment = itemView.findViewById(R.id.textComment);
            name = itemView.findViewById(R.id.textName);
            number = itemView.findViewById(R.id.editTextNum);
            //date = itemView.findViewById(R.id.textDate);
        }
        @Override
        public void onClick(View view) {}
    }

    @Override
    public ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
        View inflatedView = 
    LayoutInflater.from(parent.getContext()).inflate(R.layout
        .row_layout, parent, false);
        return new ViewHolder(inflatedView);
    }

您可以在适配器类中调用startActivityForResult()

  • 在适配器中获取上下文,例如Context context=holder.up.getContext();
  • 然后在您的按钮的onclicklistener中执行此操作。

    edit.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View view) {
            Intent intent=new Intent(context,ActivityYouWantToStart.class);
            //Pass any extras if you want to.
            ((Activity)context).startActivityForResult(intent,REQUEST_CODE);
        }
    });
    
  • 然后在您的活动中(包含此recyclerview)覆盖 onActivityResult

    @Override
    protected void onActivityResult(int requestCode, int resultCode, Intent data) {
        if (requestCode == REQUEST_CODE) {//same REQUEST_CODE you used in adapter
             if (resultCode == RESULT_OK) {
                //Do your thing and get the data you want.
               adapter.onDataReady(Data data);//where adapter is your recycler adapter, 
                                              //and data is whatever data you want to pass to adapter 
                                              //(Data you got from the activityResult, do not confuse it with onActivityResult's parameter 'Intent data') 
            }
        }
    }
    
  • 终于在您的回收器适配器类中,定义 onDataReady()功能

    public void onDataReady(Data data){
       //Update RecyclerView with new data
    }
    

希望这会有所帮助。我曾经这样做,对我有用。让我知道您是否有任何问题。

如您所见,您不必在onBindViewHolder中使用findViewById

public void onBindViewHolder(CounterLayoutAdapter.ViewHolder holder, final 
int position) {
final Counter counter = counterList.get(position);
//counter is a class which holds the data that will be displayed on one 
//row
String comment = counter.getComment();
String name = counter.getCounterName();
int number = counter.getCurrentValue();
//LocalDate modifyDate = counter.getLastModifyDate();

holder.edit.setOnClickListener(new View.OnClickListener() {
    @Override
    public void onClick(View view) {
    }
});

然后您应该在ViewHolder构造函数中启动edit

   public ViewHolder(View itemView) {
        super(itemView);
        itemView.setOnClickListener(this);
        comment = itemView.findViewById(R.id.textComment);
        name = itemView.findViewById(R.id.textName);
        number = itemView.findViewById(R.id.editTextNum);
        //date = itemView.findViewById(R.id.textDate);
        // init four button
        edit = itemView.findViewById(R.id.buttonEdit)
    }

相关内容

  • 没有找到相关文章

最新更新