Good day. Such a question: how to make a dotted line, so much so that there is a line with points that are round, and not rectangles. There is: 
This is the XML code:
<?xml version="1.0" encoding="utf-8"?> <layer-list xmlns:android="http://schemas.android.com/apk/res/android"> <item> <shape> <stroke android:color="#C7B299" android:dashWidth="10px" android:dashGap="5px" android:width="2dp"/> </shape> </item> <item android:bottom="3dp" android:left="0px"> <shape android:shape="rectangle"> <solid android:color="#FFFFFF" /> </shape> </item> </layer-list> 