Skip to content

Instantly share code, notes, and snippets.

@BrayanMC
Created July 31, 2018 23:12
Show Gist options
  • Save BrayanMC/effb62b3ac82f61050d52f2a8a1bc25f to your computer and use it in GitHub Desktop.
Save BrayanMC/effb62b3ac82f61050d52f2a8a1bc25f to your computer and use it in GitHub Desktop.
don't show top border for views
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape android:shape="rectangle">
<stroke
android:width="2dp"
android:color="#d9e7f6" />
</shape>
</item>
<item
android:bottom="2dp"
android:left="2dp"
android:right="2dp">
<shape
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:shape="rectangle">
<solid android:color="@color/background_f5f9f9" />
</shape>
</item>
</layer-list>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment