gpt4 book ai didi

java - 以编程方式设置 imageview 前景渐变颜色

转载 作者:搜寻专家 更新时间:2023-11-01 08:33:05 25 4
gpt4 key购买 nike

我这里有 xml 渐变可绘制资源文件:

文件:fg_graidient

<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle" >
<gradient
android:type="linear"
android:centerX="0%"
android:startColor="#00020321"
android:centerColor="#F2000000"
android:endColor="#B2020321"
android:angle="45"/>
</shape>

我可以像下面这样的 imageview 前景:

<ImageView
android:id="@+id/backimg"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:scaleType="fitXY"
android:foreground="@drawable/fg_graidient"
/>

但是我想以编程方式为 imageview 设置这个可绘制的前景。可能吗?

最佳答案

以编程方式创建渐变形状

ShapeDrawable.ShaderFactory sf = new ShapeDrawable.ShaderFactory() {
@Override
public Shader resize(int width, int height) {
LinearGradient lg = new LinearGradient(0, 0, width, height,
new int[]{Color.GREEN, Color.GREEN, Color.WHITE, Color.WHITE},
new float[]{0,0.5f,.55f,1}, Shader.TileMode.REPEAT);
return lg;
}
};

PaintDrawable p=new PaintDrawable();
p.setShape(new RectShape());
p.setShaderFactory(sf);

使用

Button btn= (Button)findViewById(R.id.btn);
btn.setBackgroundDrawable((Drawable)p);

关于java - 以编程方式设置 imageview 前景渐变颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39071164/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com