我需要在屏幕上显示几个片段。所有片段都是一个片段类的实例,但是我需要能够设置我的值以查看这些片段上的属性(例如TextView中的文本)。我从这里尝试了许多解决方案,但没有找到解决方案。
我现在在做什么:

FragmentManager manager = getFragmentManager();
FragmentTransaction transaction = manager.beginTransaction();
transaction = manager.beginTransaction();
List<Comment> comments = place.getComments();
int i = 0;
for (Comment comment : comments) { //some cycle...

     ReviewFragment reviewFragment = new ReviewFragment();
     transaction.add(scrollView.getId(), reviewFragment, "review" + i);
     ((TextView) reviewFragment.getView().findViewById(R.id.author)).setText(comment.getAuthor());
     i++;

}
transaction.commit();


但是我得到了NullPointerException:reviewFragment.getView()为空。我尝试提交事务并在每个片段之后重新开始,但是并没有帮助。如何在片段视图中设置自定义值?

附言我没有对我的ReviewFragment中的重写方法做任何特别的事情。我是不是该?

谢谢!

最佳答案

构造片段并传递要显示的文本时,可以调用片段的方法setArguments()。然后,在ReviewFragment类内,您可以调用getArguments()检索文本并显示它。

在您创建片段的部分中:

ReviewFragment reviewFragment = new ReviewFragment();
Bundle args = new Bundle();
args.putString("text", "The text to display here");
reviewFragment.setArguments(args);
transaction.add(scrollView.getId(), reviewFragment, "review" + i);


并在您的ReviewFragment的onCreateView()中

// after inflating the view and before returning it
String textToDisplay = getArguments().getString("text");
myTextView.setText(textToDisplay);

10-06 03:26