안녕하세요~
3개의 탭중에 가장 오른쪽의 3번째 탭을 눌렀을 경우에, 아래의 사진처럼 나오게 하고 싶은데.. 어떻게 해야 이렇게될까요? 오른쪽 부분만, 이렇게 따로 빼서 저렇게 만든뒤에 날짜들을 선택을 하고, 3번째 탭의 컨텐츠 부분으로 가게하고 싶은데 어떻게 해야할지 몰라서 글을 씁니다.
아래의 소스를 한번 첨부해 보았습니다. 조금 추가되는 부분은, 아래의 댓글에 좀 더 달아보았습니다.

<xml 파일입니다 >
<TabHost
android:id="@+id/tabhost"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<TabWidget
android:id="@android:id/tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content">
</TabWidget>
<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<ScrollView
android:id="@+id/tab1"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:id="@+id/First_Tab_imageView"
android:layout_width="match_parent"
android:background="@drawable/first_tab_image"
android:layout_height="350dp"
android:paddingTop="20dp"
android:paddingBottom="20dp" />