안녕하세요.
제가 현재, 바로 아래의 사진과 같은 레이아웃을 만들기 위해서 고민을 하고 있는데,
Tab1 아래의 부분에 View부분을 양쪽으로 나눠서 한쪽 한쪽씩 리스트뷰를 넣을 생각인데 , 어떻게 제 소스에
서 바꾸어 주어야 할지 고민입니다 ㅠ . <tab1의 컨텐츠 부분은 주석처리를 해 보았습니다>
주석의 내용은 눈에 띄게 아래와 같이 해놓았습니다.
<!-- 이부분 -->
2번째 사진은 제가 현재까지 진행을 한 부분입니다.
ㅈ지역별과 특별관 아래 쪽에, 선호 영화관 부터 시작해서, 서울 인천/경기, 대전/충청/세종..
등등 일렬로 리스트뷰로 넣어야 할텐데 어떻게 넣어야할지 ㅠ ㅠ 도움좀 부탁드립니다.
리스트뷰 관련 예제들을 찾아보았는데 제가 만든 탭 호스트 소스에 어떻게 적용을 시켜야할지 어렵네요..
소스가 추가되는 부분은, 아래의 댓글부분에 이어서 달아보았습니다.

@@

[xml소스]
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_location"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context="ex.real_project.Location">
<RelativeLayout
android:id="@+id/Location_Toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<ImageView
android:id="@+id/Location_Date_and_Seat_Image"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:layout_marginBottom="3dp"
android:layout_marginLeft="3dp"
android:background="@drawable/before_image" />
<TextView
android:id="@+id/Location_TextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="영화관 선택"
android:textSize="30dp"
android:textStyle="bold"
android:layout_marginTop="10dp"
android:layout_centerHorizontal="true" />