如何使用卡片更改水平回收视图中第一个完整可见项目的边距(底部为20 dp)?我只能获得第一个完整可见项的索引,但不能获得对视图的任何引用。
mRecyclerView.setOnScrollListener(new RecyclerView.OnScrollListener() {
@Override
public void onScrolled(RecyclerView recyclerView, int dx, int dy) {
super.onScrolled(recyclerView, dx, dy);
firstVisibleItem = lm.findFirstCompletelyVisibleItemPosition();
View view= mRecyclerView.getChildAt(firstVisibleItem);
RelativeLayout.LayoutParams lp= new RelativeLayout.LayoutParams(300, 150);
lp.setMargins(0, 0, 0, 20);
view.setLayoutParams(lp);
}
});
答案 0 :(得分:2)
假设view
包含您要更改边距的视图的引用,您可以使用以下内容将底部边距设置为20像素:
LinearLayout.LayoutParams lp = new LinearLayout.LayoutParams(LinearLayout.LayoutParams.MATCH_PARENT,
LinearLayout.LayoutParams.WRAP_CONTENT);
lp.setMargins(0, 0, 0, 20);
view.setLayoutParams(lp);
请注意,这会将底部边距更改为20像素而不是20dp。您需要将20dp值转换为像素。 Converting pixels to dp将是一个了解如何进行转化的好地方。
您可能还需要更改LinearLayout.LayoutParams构造函数的高度和宽度参数以满足您的需要。
如果问题是获得对视图的引用,发布一些代码会有所帮助。
<强> 编辑/更新 强> 代码有所帮助。我不认为您正在设置对所需视图的访问权限。这是另一种方法:
mRecyclerView.setOnScrollListener(new RecyclerView.OnScrollListener() {
@Override
public void onScrolled(RecyclerView recyclerView, int dx, int dy) {
super.onScrolled(recyclerView, dx, dy);
// Find the adapter position of the first fully visible item
// May return RecyclerView.NO_POSITION that is not handled here.
firstVisibleItem = lm.findFirstCompletelyVisibleItemPosition();
// Find the corresponding view holder for this position.
// MyViewHolder should already be defined (just don't know the name).
MyViewHolder vh = (MyViewHolder) mRecyclerView
.findViewHolderForAdapterPosition(firstVisibleItem);
// Get the layout parameters from the top-level item of this view.
// This could also be another view captured within the view holder.
RecyclerView.LayoutParams lp = (RecyclerView.LayoutParams) vh.itemView.getLayoutParams();
// Make our changes and set them.
lp.setMargins(0, 0, 0, 50);
vh.itemView.setLayoutParams(lp);
}
});
答案 1 :(得分:0)
首先,如果您要更改RecyclerView中的布局或非常特定的项目,您可能无法正确设计布局。你可能最想做一些事情:
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingBottom="20dp"/>
<android.support.v7.widget.RecyclerView
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
</LinearLayout>
如果您仍想使用RecyclerView,则应覆盖onBindViewHolder。在此方法中,您可以根据ViewHolder的位置进行区分,并为View设置不同的布局。
@Override
public void onBindViewHolder(ViewHolder holder,
@SuppressLint("RecyclerView") final int position) {
}