I have a list. And I want to add a background like round corner to it. So the list is like a big card view. How can I implement this just like Google Translate.
The rounded background can scroll as the listview does. So The shape.xml solution does not works here.
use this xml
<?xml version="1.0" encoding="UTF-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="@color/color_white"/>
<stroke android:width="3dp"
android:color="@color/grey_ask"
/>
<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"/>
</shape>
increase the *Radius values for more roundness. add this as backgound to your recylerview
android:background="@drawable/nameofxml"
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With