我曾经有一个主要活动,该活动显示了recyclerView,并且运行良好。然后,我决定使用recyclerView而不是recyclerView制作片段列表,以使列表中的项目显示得很酷。
适配器类
public class BeersAdapter extends RecyclerView.Adapter<BeersAdapter.BeersViewHolder> {
private List<Beer> beers;
public static class BeersViewHolder extends RecyclerView.ViewHolder {
public ImageView beerImage;
public TextView beerName;
public TextView beerDesc;
public BeersViewHolder (View itemView){
super(itemView);
beerImage = itemView.findViewById(R.id.beerImageLayout);
beerName = itemView.findViewById(R.id.beerNameLayout);
beerDesc = itemView.findViewById(R.id.beerDescLayout);
}
}
public BeersAdapter(List<Beer> b){
beers = b;
}
@Override
public BeersAdapter.BeersViewHolder onCreateViewHolder(ViewGroup parent, int viewType){
LayoutInflater inflater = LayoutInflater.from(parent.getContext());
View itemView = inflater.inflate(R.layout.beer, parent,false);
return new BeersViewHolder(itemView);
}
@Override
public void onBindViewHolder(BeersViewHolder holder, int pos) {
holder.beerName.setText(beers.get(pos).getName());
holder.beerDesc.setText(beers.get(pos).getShortDescription());
}
@Override
public int getItemCount() {
return beers.size();
}
}
片段类中的onCreateView
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View view = inflater.inflate(R.layout.fragment_mainbeer_list, container, false);
RecyclerView rV = view.findViewById(R.id.BeerRV);
rV.setHasFixedSize(true);
rV.setLayoutManager(new LinearLayoutManager(getActivity()));
beers = Beer.getDummyBeers();
BeersAdapter mAdapter = new BeersAdapter(beers);
rV.setAdapter(mAdapter);
rV.setItemAnimator(new DefaultItemAnimator());
return view;
}
我知道我return view = inflater.inflate(R.layout.fragment_mainbeer_list, container, false);
是否未使用也不会出错,但是也没有任何改变。我的意思是我可以在onCreateView
上运行代码,但是如果返回我使用的视图(据我所知,不应更改),则会导致错误。
我开始运行调试器的错误
java.lang.NullPointerException:尝试调用虚拟方法 '布尔 android.support.v7.widget.RecyclerView $ ViewHolder.shouldIgnore()' 空对象引用
编辑: 我知道NullPointer是什么。我就是不知道为什么。因为我的应用程序正常工作,并且顺序相同,所以唯一的不同是我现在正在使用一个片段,并在该片段中创建RV而不是MainActivity。基于this post
修改2:
fragment_mainbeer_list.xml
的布局:
<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.RecyclerView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/BeerRV"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginStart="8dp"
android:layout_marginLeft="8dp"
android:layout_marginTop="8dp"
android:layout_marginEnd="8dp"
android:layout_marginRight="8dp"
android:layout_marginBottom="8dp"
android:scrollbars="vertical"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="1.0"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.0" />
以及该片段所在的main_activy.xml
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent">
<fragment
android:id="@+id/ListFragment"
android:name="com.example.beers_fragmnet.MainBeerFragment"
android:layout_width="215dp"
android:layout_height="328dp"
android:layout_marginBottom="8dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.0"
tools:layout="@layout/beer" />
</android.support.constraint.ConstraintLayout>
辅助信息
该应用程序仅显示啤酒列表,并且在单击“啤酒”时尝试添加片段之前,它会打开详细的活动并显示有关啤酒的信息。
我现在想使它在平板电脑上的工作方式与许多电子邮件应用程序的工作方式相同,当您单击电子邮件时,与其打开新活动,而不是打开新活动,而是在同一活动中打开电子邮件(以防出现错误说明)是我要说的photo