我正在用java创建一个android应用程序,我正在使用Room数据库。
我有三张桌子:

Users table( user_id and user_name)
Products table( product_id and product_name)
Orders table ( order_id  , user_id  and product_id )

我使用ViewModel来查询信息并将其填充到UI中。
我有一个查询来自Orders表user_idproduct_id
我有这个案子:
用户识别号1订购了3种产品。
private void setUpViewModel() {

viewModel.getUserProduct(1).observe(this,new Observer<List<OrdersTable>>() {
            @Override
            public void onChanged(@Nullable List<OrdersTable> order) {
                mAdapter.setUserList((ArrayList<OrdersTable>) order);
            }
        }
       );
     }

此查询将获取用户1的产品1、2和3
我想在我的recylcerView中显示用户名和产品名,但我不知道如何在recylcerView中显示两种不同类型的表(用户表和产品表)。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
android:orientation="vertical"
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content">

<TextView

    android:id="@+id/tv_userName_xml"
    android:text="user name"
    android:layout_margin="20dp"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" />

<TextView
    android:id="@+id/tv_prodcutName_xml"
    android:layout_marginLeft="40dp"
    android:text="product"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" />


</LinearLayout>

android - 如何在RecyclerView中显示多个项目类型?-LMLPHP
 public class MyAdapter extends   RecyclerView.Adapter<MyAdapter.MyViewHolder> {
 private Context mContext;
 ArrayList<OrderTable> order_list;
 ArrayList<UserTable> user_list;
 ArrayList<ProductTable> product_list;

 public MyAdapter(Context context) {
    this.mContext = context;
}

 @NonNull
@Override
public MyAdapter.MyViewHolder onCreateViewHolder(@NonNull ViewGroup parent, int viewType) {
    View view = LayoutInflater.from(parent.getContext()).inflate(R.layout.adapter_ts,  parent, false);
    MyAdapter.MyViewHolder viewHolder = new   MyAdapter.MyViewHolder(view);

    return viewHolder;
}

@Override
public void onBindViewHolder(@NonNull MyAdapter.MyViewHolder holder, int position) {

    OrderTable orders = order_list.get(position);
    UserTable user = user_list.get(position);
    ProductTable productTable = product_list.get(position);

    holder.tv_userName.setText(user.getUserName());

    holder.tv_productName.setText(productTable.getProductName());
}


@Override
public int getItemCount() {
    if (order_list == null) {
        return 0;
    }
    return order_list.size();
  }


public class MyViewHolder extends RecyclerView.ViewHolder {
    TextView tv_userName, tv_productName;

    public MyViewHolder(View itemView) {
        super(itemView);
        tv_userName= itemView.findViewById(R.id.tv_userName_xml);
        tv_productName= itemView.findViewById(R.id.tv_prodcutName_xml);

    }

}

public void setTs_list(ArrayList<OrderTable> ts) {
    this.order_list = ts;
    notifyDataSetChanged();
}


 }

最佳答案

您可以将这些表中的数据连接起来,并将其绑定到一个名为ResultModel的自定义模型类中,您可以从中获取user_nameproduct_name
用户表
android - 如何在RecyclerView中显示多个项目类型?-LMLPHP
产品表
android - 如何在RecyclerView中显示多个项目类型?-LMLPHP
订单表
android - 如何在RecyclerView中显示多个项目类型?-LMLPHP
联接查询:
从用户u、产品p、t顺序o中选择u.user_name、p.product_name
其中o.user_id=u.user_id和o.product_id=p.product_id
结果
android - 如何在RecyclerView中显示多个项目类型?-LMLPHP
创建一个模型类ResultModel

public class ResultModel {
  public String getUser_name() {
   return user_name;
  }

  public String getProduct_name() {
   return product_name;
  }

  private String user_name;
  private String product_name;
}

更新观察员
注意:如果您的ResultModel中有需要,也将OrdersTable替换为ResultModel
viewModel.getUserProduct(1).observe(this,new Observer<List<ResultModel>>() {
        @Override
        public void onChanged(@Nullable List<ResultModel> order) {
            mAdapter.setUserList((ArrayList<ResultModel>) order);
        }
    }
   );
 }

08-18 06:11