Imageview with elevation shadow
Add this to your app build.gradle
dependencies {
...
implementation 'com.qhutch.elevationimageview:elevationimageview:1.0'
}
You will also need support renderscript, also in your build.gradle :
android {
...
defaultConfig {
...
renderscriptTargetApi 18
renderscriptSupportModeEnabled true
}
}
Use as any ImageView, set your image and add elevation (either with elevation attribute, or compatEvelation if your minSdk is below 21)
The clipShadow attribute is set to false by default, if true, it will clip the shadow to the View boundaries.
To set the elevation programmatically, you can use setElevation() and pass a value in pixels or setElevationDp() and pass a value in dp.
Pull requests are more than welcome.
- Email: quentin.menini.us@gmail.com
- Medium: https://medium.com/@qhutch
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.