thread_hint.xml
1<?xml version="1.0" encoding="utf-8"?>
2<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
3 <corners
4 android:topLeftRadius="15dp"
5 android:topRightRadius="15dp"
6 android:bottomRightRadius="15dp"
7 android:bottomLeftRadius="15dp" />
8 <padding
9 android:bottom="2dp"
10 android:left="6dp"
11 android:right="6dp"
12 android:top="2dp" />
13 <stroke
14 android:width="1dp"
15 android:color="?attr/colorAccent" />
16</shape>