从recyclerview行内的项目调用新活动

时间:2017-09-23 01:08:22

标签: java android android-activity android-recyclerview startactivityforresult

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

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

yourDictionnary["yourKey"] = yourValue

由于我需要打开的活动为我返回用户输入的数据,因此我使用的是startActivityForResult。但是,据我所知,这只适用于实际的活动类。

然后我尝试将mainactivity上下文传递给我的CounterLayoutAdapter类,其中所有的按钮代码都是。但是,OnBindViewHolder方法仍然无法在那里访问它。所以我试图将上下文传递给OnBindViewHolder,但这也不起作用,因为如果我这样做它不会覆盖抽象类..

那么,我怎么能在这里召集一项新活动呢?

或者,如果有其他方法可以将用户输入到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) {
        }
    });

2 个答案:

答案 0 :(得分:1)

您可以在适配器类中调用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') 
            }
        }
    }
    
  • 最后在您的Recycler Adapter类中,定义onDataReady()函数,如

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

希望这会有所帮助。我曾经这样做过,对我有用。如果您有任何问题,请告诉我。

答案 1 :(得分:0)

如您所见,findViewById中没有onBindViewHolder

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) {
    }
});

然后你应该在edit构造函数中初始化ViewHolder

   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)

    }