ashu2121

Android - background color without Top Border Line

Jan 29th, 2016
28
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. <layer-list xmlns:android="http://schemas.android.com/apk/res/android">
  2. <item >
  3. <shape
  4. android:shape="rectangle">
  5. <solid android:color="#c7c7c7" />
  6. <corners android:radius="3dp"/>
  7. </shape>
  8. </item>
  9. <item android:right="1dp" android:left="1dp" android:bottom="1dp">
  10. <shape
  11. android:shape="rectangle">
  12. <solid android:color="@android:color/white"/>
  13. <corners android:radius="3dp"/>
  14. </shape>
  15. </item>
  16. </layer-list>
Add Comment
Please, Sign In to add comment