如何从oncreateview中的另一个函数获取数据?

0ejtzxu1  于 2021-07-06  发布在  Java
关注(0)|答案(1)|浏览(277)

我已从名为itemdetails的活动发送数据:

private void AddToCart(String name, String price) {
        OrdersFragment fragment = new OrdersFragment();
        fragment.receiveData(name, price);
    }

我想在ordersfragment中显示回收器视图中的数据(列表为空,当我获得订单时,它将被传递的数据填充)
所以我在这里得到数据:

public void receiveData(String name, String price) {
        this.name = name;
        this.price = price;
}

但我无法在oncreateview中访问它:

public View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container,
                             @Nullable Bundle savedInstanceState) {

        View view = inflater.inflate(R.layout.fragment_rv_orders, container, false);
        txt_name = view.findViewById(R.id.order_item_name);
        txt_price = view.findViewById(R.id.order_item_price);

        txt_name.setText(name);
        txt_price.setText(price);

        return view;
    }

我尝试了各种方法将数据从活动发送到片段,这是它实际将数据发送到片段的唯一方法,我只是不知道如何访问它。欢迎任何建议。

h9vpoimq

h9vpoimq1#

您应该在 receiveData 片段的方法。在片段中声明两个全局变量(我假设它们是 TextView )

private TextView txt_name;
private TextView txt_price;

并在 onCreateView 方法:

public View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container,
                             @Nullable Bundle savedInstanceState) {
    View view = inflater.inflate(R.layout.fragment_rv_orders, container, false);

    txt_name = view.findViewById(R.id.order_item_name);
    txt_price = view.findViewById(R.id.order_item_price);

    return view;
}

最后,使用

public void receiveData(String name, String price) {
    txt_name.setText(name);
    txt_price.setText(price);
}

我听说你指的是 RecyclerView 在您的问题中,如果您需要填充该类型的列表,那么您需要在片段中创建一个适配器并在 receiveData 方法。

相关问题