첨부파일의 달력처럼 레이아웃을 만들고자 합니다.

렐러티브 레이아웃 안에 리니어 만들어서

아래쪽에 마진 주면 나올까요??

그리고 표를 만드는것도 설명 가능하시면 부탁드립니다.


현재 레이아웃 XML입니다.


<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"

    android:layout_width="match_parent"

    android:layout_height="match_parent"

    android:background="#FFE4E1"

    android:orientation="vertical" >


    <LinearLayout

        android:id="@+id/selectmonth"

        android:layout_width="match_parent"

        android:layout_height="wrap_content"

        android:background="#828282"

        android:gravity="center_horizontal|center_vertical"

        android:orientation="horizontal"

        android:padding="5dp" >


        <Button

            android:id="@+id/btn_calendar_prevmonth"

            android:layout_width="wrap_content"

            android:layout_height="wrap_content"

            android:layout_marginLeft="10px" />


        <TextView

            android:id="@+id/CalendarMonthTxt"

            android:layout_width="wrap_content"

            android:layout_height="wrap_content"

            android:layout_weight="90"

            android:gravity="center"

            android:text=""

            android:textColor="#FFFFFF"

            android:textSize="22dip"

            android:textStyle="bold" />


        <Button

            android:id="@+id/btn_calendar_nextmonth"

            android:layout_width="wrap_content"

            android:layout_height="wrap_content"

            android:layout_marginRight="10px" />


    <TableLayout

        android:id="@+id/tl_calendar_monthly"

        android:layout_width="fill_parent"

        android:layout_height="fill_parent"

        android:background="#FFE4E1"

        android:orientation="horizontal"

        android:shrinkColumns="true"

        android:stretchColumns="true" >

    </TableLayout>


</RelativeLayout>