当前位置: 首页 > 知识库问答 >
问题:

如何将用户id从适配器传递到活动

金昌胤
2023-03-14
        reference = FirebaseDatabase.getInstance().getReference("parent");

        intent = getIntent();
        final String currentSubject = intent.getStringExtra("currentSubject");
        reference.addValueEventListener(new ValueEventListener() {
            @RequiresApi(api = Build.VERSION_CODES.O)
            @Override
            public void onDataChange(@NonNull DataSnapshot dataSnapshot) {
                for (DataSnapshot snapshot : dataSnapshot.getChildren()) {

                    final User user = snapshot.getValue(User.class);

                    ZoneId zonedId = ZoneId.of("America/Montreal");
                    final LocalDate today = LocalDate.now(zonedId);

                        reference = FirebaseDatabase.getInstance().getReference("attendance").child(user.getSchoolcode()).child(grade.getText().toString() + " " + section.getText().toString()).child(currentSubject).child(today.toString()).child(userID);

                        reference.addValueEventListener(new ValueEventListener() {
                            @Override
                            public void onDataChange(@NonNull DataSnapshot dataSnapshot) {

                                HashMap<String, Object> hashMap = new HashMap<>();
                                hashMap.put("attendance", "yes");
                                reference.updateChildren(hashMap);
                            }

                            @Override
                            public void onCancelled(@NonNull DatabaseError databaseError) {

                            }
                        });
                    }
            }

            @Override
            public void onCancelled(@NonNull DatabaseError databaseError) {
            }
        });
    }

我想把它从适配器传递到这个,这是我的适配器

public class StudentAdapter extends RecyclerView.Adapter<StudentAdapter.ViewHolder> {

    private Context context;
    private List<User> users;


    public StudentAdapter(Context context, List<User> users) {
        this.context = context;
        this.users = users;
    }
    DatabaseReference reference;

    @NonNull
    @Override
    public ViewHolder onCreateViewHolder(@NonNull ViewGroup parent, int viewType) {
        View view = LayoutInflater.from(context).inflate(R.layout.student_item, parent, false);
        return new StudentAdapter.ViewHolder(view);
    }

    @Override
    public void onBindViewHolder(@NonNull final ViewHolder holder, int position) {
        final User user = users.get(position);

        holder.studentName.setText(user.getStudentname() + " " + user.getLastname());

    }

    @Override
    public int getItemCount() {
        return users.size();
    }

    public class ViewHolder extends RecyclerView.ViewHolder {
        public TextView studentName;
        public Switch aSwitch;

        public ViewHolder(View itemView) {
            super(itemView);

            studentName = itemView.findViewById(R.id.studentName);
            aSwitch = itemView.findViewById(R.id.attendanceSwitch);
        }
    }

这是我的适配器,它保存着RecycerView,我正在尝试获取考勤活动上查看的用户id RecycerView

共有1个答案

宿嘉
2023-03-14

您可以使用的一种方法回调:

适配器中定义如下接口:

public class StudentAdapter extends RecyclerView.Adapter<StudentAdapter.ViewHolder> {

 private SendCallBack mCallback;

    interface SendCallBack {
        void send(int id);
    }

//Initial callback in constructor
   public StudentAdapter(Context context, List<User> users,SendCallBack callback) {
        this.context = context;
        this.users = users;
        mCallback = callback;
    }

//Now in where that you want to pass data use this

    mCallback.send(user.getID);

}

现在,在活动中实现回调,如下所示:

public class YourActivty implements  YourAdapter.SendCallback {

    @Override
    public void send(int id) {


    }

//For pass callBack for your adapter constructor use this

}
 类似资料:
  • 特别是,当我使用这些行获取错误时: 我尝试了下面的代码: 并且获取常数大于0,并且显示Cart中的项数为1,但是每当我在代码获取问题中使用这一行时,从适配器到活动获取值是正确的方法吗? cartAdapter.java: logcat:

  • 谁能给我一个例子hoe把保存的数据从活动传递到回收器适配器。我知道如何使用putExtra等将数据从回收器适配器传递到活动。 好心帮帮我。百万先谢! 活动A中的代码(Add address按钮可用并且存在回收器视图) 请检查我更新的回收器适配器。当我运行时,0将显示在文本区域中,如所附图像所示。我对Android系统是新手。请以身作则。

  • 问题内容: 我需要在单击recyclerview的图像时将数据从传递 到 。有人可以帮忙吗? 问题答案: 创建一个侦听器接口,然后让您的MainActivity实现它。这样,您可以在onClick方法中调用回调方法。 接口: 主要活动: 您的VideoAdapter:

  • 我也没有百分之百地遵循它。在我共享的链接中,接口函数名为passDataCallback(),然后在OnBindViewholder中使用passResultCallback()。如果我使用passResultCallback,它不会解析,所以我不知道我是否做错了什么,或者它是否真的像我在上面的适配器中写的那样 我还没有在我的活动中收集这些数据,因为希望适配器至少首先被正确地编写,如果人们认为我需