I have the follow TextView tag in my Activity layout
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:elevation="25dp"
android:text="TEST TEST TEST"
android:padding="15dp"
android:layout_margin="120dp"
android:translationZ="5dp"
android:background="#FFFFFF" />
The shadow from the elevation is appearing in Android Studio's render of the activity, but when I run the app on my KitKat phone (Galaxy S4), the shadow is nonexistent. Is this a common problem?