컨트롤 테이블 배치
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
android:orientation = "vertical"
android:layout_width = "fill_parent"
android:layout_height = "fill_parent"
xmlns:android = "http://schemas.android.com/apk/res/android">
<ListView
android:id = "@+id/ListDay"
android:layout_height = "500px"
android:layout_width = "fill_parent"
android:cacheColorHint = "#00000000"
></ListView>
<TableLayout
android:layout_width = "fill_parent"
android:layout_height = "wrap_content"
xmlns:android = "http://schemas.android.com/apk/res/android">
<TableRow>
<TextView android:text = " 시작 마감 " android:textSize = "10pt"></TextView>
<TextView android:text = "--/--/-- --:--:--" android:textSize = "10pt" android:id = "@+id/TextStart" ></TextView>
</TableRow>
<TableRow>
<TextView android:text = "" android:textSize = "10pt"></TextView>
<Button
android:id = "@+id/BtnStart"
android:layout_width = "fill_parent"
android:layout_height = "70px"
android:text = "시작 마감 선택"
></Button>
</TableRow>
<TableRow>
<TextView android:text = " 종료 마감 " android:textSize = "10pt"></TextView>
<TextView android:text = "--/--/-- --:--:--" android:textSize = "10pt" android:id = "@+id/TextEnd"></TextView>
</TableRow>
<TableRow>
<TextView android:text = "" android:textSize = "10pt"></TextView>
<Button
android:id = "@+id/BtnEnd"
android:layout_width = "fill_parent"
android:layout_height = "70px"
android:text = "종료 마감 선택"
></Button>
</TableRow>
</TableLayout>
</LinearLayout>