안드로이드/고급
[PAAD] 4장 리소스 드로어블 (링크_참고자료)
success17
2011. 8. 14. 15:38
XML을 이용하는 방법
Shape Drawable
- http://developer.android.com/guide/topics/resources/drawable-resource.html#Shape
shape를 이용하여 layout 꾸미기
- http://blog.naver.com/onamt?Redirect=Log&logNo=70080207217
[android]Divider 값 0으로 주기 와 비슷한 눈속임 ^^
- http://blackzaket.blog.me/80113145052
Source 코드에서 제어하는 예제
ShapeDrawable shapeDrawable = new ShapeDrawable();
Paint paint = shapeDrawable.getPaint();
paint.setStyle(Paint.Style.STROKE);
paint.setStrokeWidth(1);
paint.setColor(Color.BLACK);
findViewById(R.id.myView).setBackgroundDrawable(shapeDrawable);