<LinearLayout
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<TableLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:stretchColumns="*" >
<TableRow>
<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="2.2"
android:background="#BDBDBD"
android:gravity="center"
android:text="test1"
android:textColor="#000000" />
<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1.5"
android:background="#BDBDBD"
android:gravity="center"
android:text="test2"
android:textColor="#000000" />
<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1.5"
android:background="#BDBDBD"
android:gravity="center"
android:text="test3"
android:textColor="#000000" />
<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="5"
android:background="#BDBDBD"
android:gravity="center"
android:text="test4"
android:textColor="#000000" />
</TableRow>
<View
android:layout_width="match_parent"
android:layout_height="0.8dp"
android:background="#000000" >
</View>
</TableLayout>
<ListView
android:id="@+id/cash_point_list"
android:layout_width="match_parent"
android:layout_height="100dp" >
</ListView>
</LinearLayout>
제가 알기로 리스트뷰에 일정이상 데이터가 잡히면 스크롤로 표시되면서 볼수있다고 알고있습니다만..
저렇게 일정한 크기를 주고 데이터를 집어넣으니 스크롤은 안보이고 데이터가 짤려서 표시가 되네요
혹시 다른방법이 있나요?