0
我想把一個ShapeDrawable對象放在TableLayout單元格內。正如文件here建議我創建一個自定義視圖mCustomView
,然後通過做ShapeDrawable和TableLayout
mRow.addView(mCustomView)
mTableLayout.addView(mRow)
一切都添加視圖到TableLayout工作正常,沒有錯誤,但不會顯示在所有的形狀。
代碼來創建我的繪製是
icon = new ShapeDrawable(new ArcShape(0, 360));
icon.setBounds(0, 0, 20, 20);
icon.getPaint().setColor(parseColor);