当RecyclerView位于对话框上时,不显示分隔符
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了当RecyclerView位于对话框上时,不显示分隔符相关的知识,希望对你有一定的参考价值。
对于Fragment中的RecyclerView和Dialog
中的另一个RecyclerView,我使用了完全相同的代码。
myAdapter = MyAdapter();
var lm = LinearLayoutManager(this.context)
myRecyclerView.layoutManager = lm;
myRecyclerView.adapter = myAdapter;
var line = DividerItemDecoration(this.context, lm.orientation);
myRecyclerView.addItemDecoration(line);
奇怪的是,分隔线显示在片段中,但未显示在对话框中。这是一个已知的问题吗?或者我做错了什么?我只是想在项目之间展示内置的黑线分隔线。
我在自定义Dialog的构造函数中调用了上面的代码。
class MyDialogue:Dialog
{
constructor(context: Context?) : super(context)
{
setContentView(R.layout.my_dialogue);
window.setLayout(
ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.MATCH_PARENT);
//That code above.
}
补充:似乎默认行使用android.R.attr.listDivider
。我只是不明白为什么RecyclerView没有在Dialog中得到它。作为一种解决方法,我手动将drawable设置为装饰器,现在我可以看到默认的分隔符。代码如下。但为什么我要这样做呢?
val a = context!!.theme.obtainStyledAttributes(
R.style.AppTheme, intArrayOf(android.R.attr.listDivider));
val attributeResourceId = a.getResourceId(0, 0)
val drawable = context.getDrawable(attributeResourceId)
line.setDrawable(drawable);
a.recycle();
答案
使用以下代码
Create DividerItemDecoration.java as below:
public class DividerItemDecoration extends RecyclerView.ItemDecoration {
private Drawable mDivider;
public DividerItemDecoration(Context context) {
mDivider = context.getResources().getDrawable(R.drawable.linedivider);
}
@Override
public void onDrawOver(Canvas c, RecyclerView parent, RecyclerView.State state) {
int left = parent.getPaddingLeft();
int right = parent.getWidth() - parent.getPaddingRight();
int childCount = parent.getChildCount();
for (int i = 0; i < childCount; i++) {
View child = parent.getChildAt(i);
RecyclerView.LayoutParams params = (RecyclerView.LayoutParams) child.getLayoutParams();
int top = child.getBottom() + params.bottomMargin;
int bottom = top + mDivider.getIntrinsicHeight();
mDivider.setBounds(left, top, right, bottom);
mDivider.draw(c);
}
}
}
在drawable中有一个shape linedivider.xml,如下所示:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<size
android:width="1dp"
android:height="1dp" />
<solid android:color="@color/colorline" />
</shape>
colors.xml中的颜色:
<color name="colorline">#9f9f9f</color>
使用DividerItemDecoration.java:
myRecyclerView.addItemDecoration(new DividerItemDecoration(this));
以上是关于当RecyclerView位于对话框上时,不显示分隔符的主要内容,如果未能解决你的问题,请参考以下文章
当按钮位于 UITableViewCell 上时,为啥 UIButton showsTouchWhenHighlighted 不起作用?
Android:在recyclerview下方显示按钮,但始终在屏幕上
在 recyclerview 项目上单击 show recyclerview data custom in toDialog Box