mPaint.setcolor(getResources().getcolor(R.color.color2));
color.xml文件中的color2是
<color name="color2">#FF3C00</color>
现在我在应用以下颜色时遇到问题.
在我的应用程序中触摸它时使用画布绘制绘画,我想在画布上画出类似附加画面的东西.我能画它但它看起来像纯色(我的意思是完整的圆圈,但里面没有点点)
请帮我找到这个.
解决方法 你可以使用 BitmapShader实现那个..这是示例代码..尝试此代码,我希望它会工作..
Bitmap bitmap = BitmapFactory.decodeResource(mContext.getResources(),R.drawable.shader); //Initialize the BitmapShader with the Bitmap object and set the texture tile mode BitmapShader mBitmapShader = new BitmapShader(bitmap,Shader.TileMode.REPEAT,Shader.TileMode.REPEAT); fillPaint.setStyle(Paint.Style.FILL); //Assign the 'fillBMPshader' to this paint fillPaint.setShader(mBitmapShader); //Draw the fill of any shape you want,using the paint object.canvas.drawCircle(posX,posY,100,fillPaint);总结
以上是内存溢出为你收集整理的如何在Paint android应用程序中应用带点的笔刷颜色?全部内容,希望文章能够帮你解决如何在Paint android应用程序中应用带点的笔刷颜色?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)