ViewGroup 모서리 둥글게
res -> drawable ->radius.xml
<?xml version="1.0" encoding="UTF-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="#99FFFFFF"/>
<corners android:radius="15dip"/>
<padding android:left="0dp" android:top="0dp" android:right="0dp" android:bottom="0dp" />
</shape>
main.xml
<TableLayout android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@drawable/com_rounded_corner"
android:padding="10dip"
android:orientation="vertical">
...
</TableLayout>