Android項(xiàng)目中怎么添加分割線?相信很多沒有經(jīng)驗(yàn)的人對(duì)此束手無策,為此本文總結(jié)了問題出現(xiàn)的原因和解決方法,通過這篇文章希望你能解決這個(gè)問題。
創(chuàng)新互聯(lián)建站主營伊州網(wǎng)站建設(shè)的網(wǎng)絡(luò)公司,主營網(wǎng)站建設(shè)方案,成都App制作,伊州h5重慶小程序開發(fā)搭建,伊州網(wǎng)站營銷推廣歡迎伊州等地區(qū)企業(yè)咨詢效果:
Android中如何繪制四邊形
public class ColourLineView extends View{ public ColourLineView(Context context) { super(context, null); } public ColourLineView(Context context, AttributeSet attrs) { super(context, attrs, 0); } public ColourLineView(Context context, AttributeSet attrs, int defStyleAttr) { super(context, attrs, defStyleAttr); } @Override protected void onDraw(Canvas canvas) { super.onDraw(canvas); int width = getWidth(); int height = getHeight(); Path path = new Path(); canvas.save(); path.reset();//重置路徑 path.moveTo(width/2, 0);//左上點(diǎn) path.lineTo(0, height);//左下點(diǎn) path.lineTo(width-width/2, height);//右下點(diǎn) path.lineTo(width, 0);//右上點(diǎn) canvas.clipPath(path);//截取路徑所繪制的圖形 canvas.drawColor(Color.RED); path.reset();//重置路徑,準(zhǔn)備繪制第三種顏色的平行四邊形 canvas.restore(); } }