我正在研究RecycleView,但我遇到了一些奇怪的事情。我正在编写一些简单的应用程序,这里是我在RecycleView中自定义行的代码:
package com.ja.myboosterproject;
import android.content.Context;
import android.support.v7.widget.RecyclerView;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Button;
import android.widget.TextView;
import java.util.List;
public class BoosterAdapter extends RecyclerView.Adapter<BoosterAdapter.ViewHolder> {
public class ViewHolder extends RecyclerView.ViewHolder{
public TextView gameNameTextView;
public TextView pricesTextView;
public Button removeButton;
public ViewHolder(View itemView) {
super(itemView);
gameNameTextView = (TextView) itemView.findViewById(R.id.TextViewGameName);
pricesTextView = (TextView) itemView.findViewById(R.id.TextViewPrices);
removeButton = (Button) itemView.findViewById(R.id.ButtonRemove);
}
}
private List<com.ja.myboosterproject.Booster> mBoosters;
private Context mContext;
public BoosterAdapter(Context context, List<Booster> boosters){
mContext = context;
mBoosters = boosters;
}
private Context getContext(){
return mContext;
}
@Override
public BoosterAdapter.ViewHolder onCreateViewHolder(ViewGroup parent, int viewType){
Context context = parent.getContext();
LayoutInflater inflater = LayoutInflater.from(context);
View contentView = inflater.inflate(R.layout.booster_list_row, parent, false);
ViewHolder viewHolder = new ViewHolder(contentView);
return viewHolder;
}
@Override
public void onBindViewHolder(BoosterAdapter.ViewHolder viewHolder, int position){
Booster booster = mBoosters.get(position);
viewHolder.gameNameTextView.setText(booster.getGameName());
viewHolder.pricesTextView.setText(booster.getPriceBought() + " - " + booster.getPriceSold());
}
@Override
public int getItemCount(){
return mBoosters.size();
}
由于某种原因,按钮跳到左侧,我不明白为什么。我不会在这里发布除布局之外的任何代码,因为我认为它无论如何都与问题本身有关,但我可以在必要时附加它。在此先感谢您的帮助。
编辑: 我的适配器代码:
Renderer2
}
答案 0 :(得分:1)
好的,我终于明白了。感谢@Eugen Pechanec(我希望我知道如何正确地提到你),因为布局检查员告诉我有什么不对劲。所以,这就是我的回收视图本身的代码:
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v7.widget.RecyclerView
android:id="@+id/layout_boosters"
android:layout_width="match_parent"
android:layout_height="match_parent">
</android.support.v7.widget.RecyclerView>
</android.support.constraint.ConstraintLayout>
我使用了ContraintLayout,一切看起来都不错。但是当我检查布局检查器时 - 出了点问题: 即使所有LinearLayout都设置为“match_parent”,仍有很大的未使用空间区域。所以我决定将ConstraintLayout更改为LinearLayout和bingo,它有效。我不知道为什么RecycleView不想与ConstraintLayout合作,我希望有人解释它,但我的问题已经解决了。
编辑:找到解决方案: 实际上,很多人都有同样的问题,在这里我找到了允许ConstraintLayout和RecyclerView协同工作的解决方案:https://stackoverflow.com/a/47673523/8786284