我正在LinearGradient
对象上使用Canvas
创建渐变。我通过在我的主布局XML中包含该类来使用此渐变。
生成渐变的代码是:
public class BackgroundGradient extends View{
private Resources res;
private int [] colors;
private float [] pos;
private Paint paint;
private Shader shader;
public BackgroundGradient(Context context) {
// TODO Auto-generated constructor stub
super(context);
init();
}
public BackgroundGradient(Context context, AttributeSet attrs) {
// TODO Auto-generated constructor stub
super(context,attrs);
init();
}
public BackgroundGradient(Context context, AttributeSet attrs, int defStyle) {
// TODO Auto-generated constructor stub
super(context,attrs,defStyle);
init();
}
private void init() {
paint = new Paint();
res = getResources();
colors = new int[10];
pos = new float[10];
int[] c = { //array of colors };
float[] p = { //positions };
for (int i = 0; i < 8; i++) {
colors[i] = c[i];
pos[i] = p[i];
}
}
@Override
protected void onDraw(Canvas canvas) {
// TODO Auto-generated method stub
super.onDraw(canvas);
shader = new LinearGradient(0,getHeight(),getWidth(), 0, colors, pos, Shader.TileMode.CLAMP);
paint.setShader(shader);
canvas.rotate(20, 0, getHeight());
canvas.drawPaint(paint);
}
}
因此,以上是我在activity_main.xml
内FrameLayout
中包含的文件。
activity_main.xml中:
<FrameLayout
android:id="@+id/content_frame"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<include layout="@layout/bg_gradient" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="5dp"
android:background="#000"
android:orientation="horizontal">
<TextView android:id="@+id/pager_strip"
android:layout_width="100dp"
android:layout_height="5dp"
android:background="@color/mu_blue_6"/>
</LinearLayout>
<!-- other views -->
</FrameLayout>
bg_gradient.xml :
<?xml version="1.0" encoding="utf-8"?>
<merge xmlns:android="http://schemas.android.com/apk/res/android">
<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent" >
<!--
<Button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textColor="#000000"
android:text="This is button" /> -->
<in.mubpack.b2o.ui.BackgroundGradient
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</FrameLayout>
</merge>
我无法弄清楚为什么渐变在某些Android设备中可见而在其他设备中不可见。任何人都可以帮助我吗?
答案 0 :(得分:0)
好的,我想我想通了。对我的代码进行了大量调试。看来我在colors
中使用的pos
和LinearGradient
数组已初始化为10个元素,而我只使用了8个元素。不知道为什么只有当我开始测试冰淇淋三明治时才出现这个问题,但现在它已经解决了。我对代码所做的更改:
colors = new int[8];
pos = new float[8];