java - Android:为 recyclerView 项目添加边框和舍入

标签 java android xml android-recyclerview

我有一个 recyclerView 当前设置为在每个项目的底部添加阴影,间距效果很好。我想在每个项目周围添加一个细灰色边框,如果可能的话,还可以添加一个柔和的圆角。到目前为止的代码:

    public class VerticalSpaceItemDecorator extends RecyclerView.ItemDecoration {

    private final int verticalSpaceHeight;

    public VerticalSpaceItemDecorator(int verticalSpaceHeight) {

        this.verticalSpaceHeight = verticalSpaceHeight;
    }

    @Override
    public void getItemOffsets(Rect outRect,
                               View view,
                               RecyclerView parent,
                               RecyclerView.State state) {

        // 1. Determine whether to add a spacing decorator
        if (parent.getChildAdapterPosition(view) != parent.getAdapter().getItemCount() - 1) {

            // 2. Set the bottom offset to the specified height
            outRect.bottom = verticalSpaceHeight;
        }
    }
}

public class ShadowVerticalSpaceItemDecorator extends RecyclerView.ItemDecoration {

    private Drawable divider;

    public ShadowVerticalSpaceItemDecorator(Context context) {

        // Use the default style divider
        final TypedArray styledAttributes = context.obtainStyledAttributes(
                new int[] { android.R.attr.listDivider });
        this.divider = styledAttributes.getDrawable(0);
        styledAttributes.recycle();
    }

    public ShadowVerticalSpaceItemDecorator(Context context, int resId) {

        // Use a custom divider specified by a drawable
        this.divider = ContextCompat.getDrawable(context, resId);
    }

    @Override
    public void onDraw(Canvas c, RecyclerView parent, RecyclerView.State state) {

        // 1. Get the parent (RecyclerView) padding
        int left = parent.getPaddingLeft();
        int right = parent.getWidth() - parent.getPaddingRight();

        // 2. Iterate items of the RecyclerView
        for (int childIdx = 0; childIdx < parent.getChildCount(); childIdx++) {

            // 3. Get the item
            View item = parent.getChildAt(childIdx);

            // 4. Determine the item's top and bottom with the divider
            RecyclerView.LayoutParams params = (RecyclerView.LayoutParams) item.getLayoutParams();
            int top = item.getBottom() + params.bottomMargin;
            int bottom = top + divider.getIntrinsicHeight();

            // 5. Set the divider's bounds
            this.divider.setBounds(left, top, right, bottom);

            // 6. Draw the divider
            this.divider.draw(c);
        }
    }
}

recyclerView 项目的自定义布局:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">

<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/white"
android:orientation="vertical">
<ImageView
    android:id="@+id/imageView"
    android:layout_width="match_parent"
    android:layout_height="80dp"
    android:layout_alignParentLeft="true"
    android:layout_alignParentStart="true"
    android:layout_alignParentTop="true"
    android:paddingLeft="5dp"
    android:paddingRight="5dp"

    app:srcCompat="@mipmap/ic_launcher" />

<TextView
    android:id="@+id/textView_title"
    style="@style/AudioFileInfoOverlayText"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_alignBottom="@+id/imageView"
    android:layout_alignLeft="@+id/imageView"
    android:layout_alignParentLeft="true"
    android:layout_alignParentStart="true"
    android:layout_alignStart="@+id/imageView"
    android:layout_gravity="left"
    android:paddingLeft="5dp"
    android:paddingRight="5dp"
    android:text="TextView"
    android:textColor="@android:color/white"
    android:textSize="22sp" />

<TextView
    android:id="@+id/textView_info"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_alignLeft="@+id/imageView"
    android:layout_alignParentLeft="true"
    android:layout_alignParentStart="true"
    android:layout_alignStart="@+id/textView_title"
    android:layout_below="@+id/imageView"
    android:layout_marginTop="12dp"
    android:paddingLeft="5dp"
    android:paddingRight="5dp"
    android:text="TextView" />

<Button
    android:id="@+id/button_one"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentEnd="true"
    android:layout_alignParentRight="true"
    android:layout_below="@+id/textView_info"
    android:layout_marginBottom="5pt"
    android:layout_marginRight="5pt"
    android:background="@drawable/circle_button"
    android:text="One"
    android:textColor="@android:color/white" />

<Button
    android:id="@+id/button_two"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignLeft="@+id/imageView"
    android:layout_below="@+id/textView_info"
    android:layout_marginBottom="5pt"
    android:layout_marginLeft="5pt"
    android:background="@drawable/circle_button"
    android:backgroundTint="?android:attr/colorControlHighlight"
    android:text="Two"
    android:textColor="@android:color/white" />
</RelativeLayout>

</LinearLayout>

drop_shadow 代码:

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle">
    <size android:height="4dp" />
    <solid android:color="@color/darkGray" />
    <corners android:topLeftRadius="0dp" android:topRightRadius="0dp"
    android:bottomLeftRadius="5dp" android:bottomRightRadius="5dp"/>
</shape>

边框:

<?xml version="1.0" encoding="UTF-8"?>

<stroke android:width="3dp"
    android:color="@color/gray"
    />

<padding android:left="1dp"
    android:top="1dp"
    android:right="1dp"
    android:bottom="1dp"
    />

<corners android:bottomRightRadius="7dp"
    android:bottomLeftRadius="7dp"
    android:topLeftRadius="7dp"
    android:topRightRadius="7dp"/>

最佳答案

在名为 border.xml 的 Drawable 文件夹中创建 Xml

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle">
    <stroke android:color="@color/colorAccent" android:width="1dp"/>
    <corners android:radius="5dp" />
</shape>

然后在改变RelativeLayout的背景之后

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:orientation="vertical">


    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@drawable/border"
        android:orientation="vertical">
        <ImageView
            android:id="@+id/imageView"
            android:layout_width="match_parent"
            android:layout_height="80dp"
            android:layout_alignParentLeft="true"
            android:layout_alignParentStart="true"
            android:layout_alignParentTop="true"
            android:paddingLeft="5dp"
            android:paddingRight="5dp"

            app:srcCompat="@mipmap/ic_launcher" />

        <TextView
            android:id="@+id/textView_title"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_alignBottom="@+id/imageView"
            android:layout_alignLeft="@+id/imageView"
            android:layout_alignParentLeft="true"
            android:layout_alignParentStart="true"
            android:layout_alignStart="@+id/imageView"
            android:layout_gravity="left"
            android:paddingLeft="5dp"
            android:paddingRight="5dp"
            android:text="TextView"
            android:textColor="@android:color/white"
            android:textSize="22sp" />

        <TextView
            android:id="@+id/textView_info"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_alignLeft="@+id/imageView"
            android:layout_alignParentLeft="true"
            android:layout_alignParentStart="true"
            android:layout_alignStart="@+id/textView_title"
            android:layout_below="@+id/imageView"
            android:layout_marginTop="12dp"
            android:paddingLeft="5dp"
            android:paddingRight="5dp"
            android:text="TextView" />

        <Button
            android:id="@+id/button_one"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentEnd="true"
            android:layout_alignParentRight="true"
            android:layout_below="@+id/textView_info"
            android:layout_marginBottom="5pt"
            android:layout_marginRight="5pt"
            android:text="One"
            android:textColor="@android:color/white" />

        <Button
            android:id="@+id/button_two"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignLeft="@+id/imageView"
            android:layout_below="@+id/textView_info"
            android:layout_marginBottom="5pt"
            android:layout_marginLeft="5pt"
            android:backgroundTint="?android:attr/colorControlHighlight"
            android:text="Two"
            android:textColor="@android:color/white" />
    </RelativeLayout>

</LinearLayout>

如果你想加粗边框那么<stroke android:color="@color/colorAccent" android:width="5dp"/>

关于java - Android:为 recyclerView 项目添加边框和舍入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44498524/

相关文章:

Java 8 Streams : How to call once the Collection. stream() 方法并检索多个聚合值的数组

java - 如何启用 Websphere MQ 的客户端日志记录?

java Netbeans Web 服务 WSDL 客户端

android - ImageView 使应用程序崩溃

android - 保存在 SharedPreferences 中的用户设置在应用重新加载之间被删除或丢失

python - 使用 ElementTree 在 Python 中解析嵌套 XML 数据

java - jackson 将数组元素反序列化为特定字段

android - 在没有 SD 卡的情况下安装 Android 应用程序

java - 使用嵌套迭代器迭代两级结构

python - 使用python使用hadoop处理xml文件