我遇到这种方法的问题,它说Cannot resolve method inflate(android.context.Context)

@Override
public exViewHolder onCreateViewHolder(ViewGroup parent,int viewType){
    View view= LayoutInflater.inflate(parent.getContext()).inflate(R.layout.custom_thighlayout,parent,false);
    exViewHolder evh=new exViewHolder(view);  return evh;
}

最佳答案

更换,

View view= LayoutInflater.inflate(parent.getContext()).inflate(R.layout.custom_thighlayout,parent,false);




View view= LayoutInflater.from(parent.getContext()).inflate(R.layout.custom_thighlayout,parent,false);

10-04 21:35