我见过新闻共和国Android应用程序。它真的很棒的应用程序。根据我的观点,开发团队在他们的应用程序中应用了独特的渐变叠加,并提供了很好的图像输出。 这是图像加载前imageView的截图:
有关于如何获得相同的想法吗?
答案 0 :(得分:1)
我建议使用渐变创建可绘制资源。然后在您的XML中,在View
的顶部添加ImageView
,并将可绘制资源设置为View
背景。您的可绘制资源将是这样的:
<?xml version="1.0" encoding="utf-8"?>
<shape
xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<gradient
android:startColor="#FF000000"
android:centerColor="#88000000"
android:endColor="#00000000"
android:angle="90"/>
</shape>