當前位置:首頁 » 安卓系統 » android刪除線

android刪除線

發布時間: 2023-03-04 22:42:31

A. 如何改變在Android中刪除線的顏色

I think this is not possible for simple textview so you have to do the following:-
1.Create a custom TextView by extending View class
2.Declare this custom textview inside XML layout same like we do for TextView.
And at last write an onDraw() method like following.

@Override
protected void onDraw(Canvas canvas) {
Paint paint = new Paint();
paint.setColor(strikeThroughColor);
paint.setStyle(Paint.Style.FILL);
paint.setStrikeThruText(true);
paint.setStrokeWidth(strikeThroughWidth);
paint.setFlags(Paint.ANTI_ALIAS_FLAG);
super.onDraw(canvas);
float width = getWidth();
float heigh = getHeight();
canvas.drawLine(width/10, heigh/10, (width-width/10),(heigh-heigh/10), paint);
}

熱點內容
壓縮系數z 發布:2025-05-09 21:01:51 瀏覽:652
雙開助手緩存的文件在哪 發布:2025-05-09 21:01:41 瀏覽:525
酒仙腳本 發布:2025-05-09 21:00:40 瀏覽:905
牙髓存儲 發布:2025-05-09 20:50:22 瀏覽:433
安卓如何看自己去過哪裡 發布:2025-05-09 20:37:23 瀏覽:695
電腦怎麼製作手機版的我的世界伺服器 發布:2025-05-09 20:36:45 瀏覽:533
免流腳本破解 發布:2025-05-09 20:33:49 瀏覽:182
微信圖書館源碼 發布:2025-05-09 20:31:40 瀏覽:955
ucos的配置文件有哪些 發布:2025-05-09 20:25:01 瀏覽:481
租用伺服器如何測速 發布:2025-05-09 20:03:39 瀏覽:791