项目作者: armcha

项目描述 :
ColoredShadowImageView allows you to create a beautiful shadow around the image based on corresponding area colors.
高级语言: Kotlin
项目地址: git://github.com/armcha/ColoredShadowImageView.git
创建时间: 2018-02-26T15:03:04Z
项目社区:https://github.com/armcha/ColoredShadowImageView

开源协议:Apache License 2.0

下载


ColoredShadowImageView

ColoredShadowImageView allows you to create a beautiful shadow around the image based on corresponding area colors.


Download sample apk

The current minSDK version is API level 16.

Download :arrow_down:


Gradle:

  1. implementation 'com.github.armcha:ColoredShadowImageView:1.1.0'

Setup and usage

  1. You also need to add RenderScript to your app module. Add these lines to the defaultConfig block of your build.gradle.

    1. renderscriptTargetApi YOUR_TARGET_SDK_VERSION
    2. renderscriptSupportModeEnabled true
  2. Static image

    1. <io.github.armcha.coloredshadow.ShadowImageView
    2. android:id="@+id/shadowImage"
    3. android:layout_width="300dp"
    4. android:layout_height="400dp"
    5. android:src="@drawable/android"></io.github.armcha.coloredshadow.ShadowImageView>

    Or

  1. findViewById<ShadowImageView>(R.id.shadowImage).apply {
  2. setImageResource(R.drawable.android)
  3. }
  1. If you are using Glide, use it in this way.
    Glide transformations are also supported.
    Now we have some limitations for Glide transitions.
  1. //shadowView.radiusOffset = 0.4f
  2. //shadowView.shadowColor = ContextCompat.getColor(context,R.color.green)
  3. GlideApp.with(itemView.context)
  4. .load(item.imageUrl)
  5. .placeholder(R.drawable.place_holder)
  6. .error(R.drawable.place_holder)
  7. //.transform(CircleCrop())
  8. .into(object : ViewTarget<ImageView, Drawable>(shadowView) {
  9. override fun onLoadStarted(placeholder: Drawable?) {
  10. super.onLoadStarted(placeholder)
  11. shadowView.setImageDrawable(placeholder, withShadow = false)
  12. }
  13. override fun onLoadCleared(placeholder: Drawable?) {
  14. super.onLoadCleared(placeholder)
  15. shadowView.setImageDrawable(placeholder, withShadow = false)
  16. }
  17. override fun onLoadFailed(errorDrawable: Drawable?) {
  18. super.onLoadFailed(errorDrawable)
  19. shadowView.setImageDrawable(errorDrawable, withShadow = false)
  20. }
  21. override fun onResourceReady(resource: Drawable, transition: Transition<in Drawable>?) {
  22. shadowView.setImageDrawable(resource)
  23. }
  24. })

Customizations

You can change shadow radius.
Default radius is 0.5. You can change it between 0 and 1. (0 < radius ≤ 1)

  1. shadowImageView.radiusOffset = 0.4f
  2. shadowImageView.setImageResource(R.drawable.android)

You can also change the shadow color

  1. shadowImageView.shadowColor = ContextCompat.getColor(context,R.color.green) //or Color.RED
  2. shadowImageView.setImageResource(R.drawable.android)

or from xml

  1. app:radiusOffset="0.6"
  2. app:shadowColor="@color/colorAccent"

Current limitations: :triangular_flag_on_post:

  • You can’t use the library when setting width or height to WRAP_CONTENT

Add proguard rules if necessary:

  1. -keep class android.support.v8.renderscript.** { *; }

Contact :book:

Pull requests are more than welcome.

:arrow_forward: Email: chatikyana@gmail.com

:arrow_forward: Medium: @chatikyan"">https://medium.com/@chatikyan

:arrow_forward: Twitter: https://twitter.com/ArmanChatikyan

:arrow_forward: Facebook: https://web.facebook.com/chatikyana

:arrow_forward: Google +: https://plus.google.com/+ArmanChatikyan

:arrow_forward: Website: https://armcha.github.io/

License

  1. ColoredShadowImageView
  2. Copyright (c) 2018 Arman Chatikyan (https://github.com/armcha/ColoredShadowImageView).
  3. Licensed under the Apache License, Version 2.0 (the "License");
  4. you may not use this file except in compliance with the License.
  5. You may obtain a copy of the License at
  6. http://www.apache.org/licenses/LICENSE-2.0
  7. Unless required by applicable law or agreed to in writing, software
  8. distributed under the License is distributed on an "AS IS" BASIS,
  9. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  10. See the License for the specific language governing permissions and
  11. limitations under the License.