Skip to content

Instantly share code, notes, and snippets.

@alexzaitsev
Created February 13, 2017 12:29
Show Gist options
  • Save alexzaitsev/7e8f3044e91612c6e2d1d63bd4302992 to your computer and use it in GitHub Desktop.
Save alexzaitsev/7e8f3044e91612c6e2d1d63bd4302992 to your computer and use it in GitHub Desktop.
android manual shadow
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<gradient
android:angle="90"
android:endColor="#44000000"
android:startColor="@android:color/transparent" />
</shape>
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<View
android:layout_width="match_parent"
android:layout_height="4dp"
android:background="@drawable/shadow" />
</FrameLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment