How to draw a line in android

前端 未结 15 1758
野趣味
野趣味 2020-11-22 06:27

Can anybody tell how to draw a line in Android, perhaps with an example?

15条回答
  •  长情又很酷
    2020-11-22 07:11

    or if you just want a line

    TextView line = new TextView(this);
                line.setBackgroundResource(android.R.color.holo_red_dark);
                line.setHeight((int) Utility.convertDpToPixel(1,this));
    

提交回复
热议问题