Roh*_*ich 15 android gridlayoutmanager staggeredgridlayout android-recyclerview
我正在使用GirdLayout Manager的Recycler视图来创建总线布局
我的问题是间距我根据行列填充数据
我希望第2行第0列旁边的第3行和第2列的项目如图所示,如何删除该空间,项目应根据其上部项目进行调整.
customGridAdapter = new CustomGridViewAdapter(getActivity(), busSeatModel, false, fareCategory, BusSeatLayout.this);
RtlGridLayoutManager gridLayoutManager = new RtlGridLayoutManager(getActivity(), busSeatModel.getMaxLowerColumn());
seatLayout.setLayoutManager(gridLayoutManager);
seatLayout.setAdapter(customGridAdapter);
Run Code Online (Sandbox Code Playgroud)
这是我的customGridAdapter onBindViewHolder
public class CustomGridViewAdapter extends RecyclerView.Adapter<CustomGridViewAdapter.MyViewHolder> {
Context context;
BusSeatModel busSeatModel;
HashMap<Integer, HashMap<Integer, BusSeatItemModel>> data = new HashMap<>();
LayoutInflater inflater;
boolean upper;
HashMap<Integer, BusSeatItemModel> seatLowerModels;
BusSeatItemModel lowerModel;
int maxColumn = 0;
int maxRow = 0;
BusSeatLayout busSeatLayout;
int fare;
public CustomGridViewAdapter(Context context, BusSeatModel busSeatModel, boolean upper, int fare, BusSeatLayout busSeatLayout) {
this.context = context;
this.busSeatModel = busSeatModel;
inflater = LayoutInflater.from(context);
this.fare = fare;
this.busSeatLayout = busSeatLayout;
this.upper = upper;
if (upper) {
data = busSeatModel.getBusSeatUpperModels();
maxColumn = busSeatModel.getMaxUpperColumn();
maxRow = busSeatModel.getMaxUpperRow();
} else {
data = busSeatModel.getBusSeatLowerModels();
maxColumn = busSeatModel.getMaxLowerColumn();
maxRow = busSeatModel.getMaxLowerRow();
}
}
@Override
public MyViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
View view = inflater.inflate(R.layout.seatrow_grid, parent, false);
MyViewHolder myViewHolder = new MyViewHolder(view);
return myViewHolder;
}
@Override
public void onBindViewHolder(MyViewHolder holder, int position) {
try {
int row = GetRow(position);
int column = GetCol(position);
Log.d(" Row Column ", "" + row + " " + column);
seatLowerModels = new HashMap<>();
if (data.containsKey(row)) {
seatLowerModels = data.get(row);
if (seatLowerModels.containsKey(column)) {
lowerModel = seatLowerModels.get(column);
Log.v(" same fare ", " model fare " + lowerModel.getBaseFare() + " category selected " + fare);
if (fare == -1) {
Log.v(" fare is all ", "++++ ");
holder.imageItem.setImageResource(lowerModel.getDrawableName(false));
} else {
Log.v(" fare is not all ", "");
if (lowerModel.getBaseFare() == fare) {
Log.v(" fare is same ", "");
holder.imageItem.setImageResource(lowerModel.getDrawableName(false));
} else {
Log.v(" fare is diff ", "");
holder.imageItem.setImageResource(lowerModel.getDrawableName(true));
}
}
holder.imageItem.setVisibility(View.VISIBLE);
}
}
} catch (Exception e) {
e.printStackTrace();
}
}
private int GetCol(int pos) {
int col = pos % (maxColumn);
return col;
}
private int GetRow(int pos) {
int row = pos / (maxColumn);
return row;
}
@Override
public int getItemCount() {
return maxColumn * maxRow;
}
public class MyViewHolder extends RecyclerView.ViewHolder {
ImageView imageItem;
public MyViewHolder(View itemView) {
super(itemView);
imageItem = (ImageView) itemView.findViewById(R.id.item_image);}
}
Run Code Online (Sandbox Code Playgroud)
}
这是recyclerview
<RelativeLayout
android:id="@+id/rlRecycler"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#ffffff"
android:gravity="center">
<android.support.v7.widget.RecyclerView
android:id="@+id/rvFareCategory"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:background="#ffffff"
android:paddingBottom="6dip"
android:paddingTop="8dip"></android.support.v7.widget.RecyclerView>
</RelativeLayout>
Run Code Online (Sandbox Code Playgroud)
和座位布局xml
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<ImageView
android:id="@+id/item_image"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@null"
android:padding="4dp"
android:visibility="invisible"></ImageView>
</RelativeLayout>
Run Code Online (Sandbox Code Playgroud)
当然,问题是由于元素的高度不同而引起的。您需要为元素分配不同的行跨度。我建议为较高的元素(左侧的元素)分配 2 的行跨度,为较小的元素分配 1 的行跨度。
我认为你可以用一个技巧来做到这一点,比如将网格布局管理器设置为水平方向并用于GridLayoutManager.setSpanSizeLookup(..)控制跨度(因为你现在是水平的,跨度将作用于行)。这可能需要您重新设计从支持数组获取元素的逻辑。恐怕(据我所知)另一种选择是实现您自己的自定义布局管理器。
| 归档时间: |
|
| 查看次数: |
956 次 |
| 最近记录: |