2
此代碼添加了一個紅色邊框到的LinearLayout:添加左側邊框顏色編程
ShapeDrawable sd = new ShapeDrawable();
sd.setShape(new RectShape());
sd.getPaint().setColor(Color.RED);
sd.getPaint().setStrokeWidth(1f);
sd.getPaint().setStyle(Style.STROKE);
linearLayout.setBackground(sd);
我需要一個紅色的行添加到佈局的左側。我怎樣才能以編程方式執行而不使用任何XML?
什麼做的伎倆是setLayerInset方法。 –