안녕하십니까? 앱을 하나 만들고 있는데요.

리스트를 출력해주는 부분이 있습니다. 한데 일반 list로 출력을 하면 화면사이즈만큼만 스크롤이 되네요.

리스트부분이 양이 많은 경우 아래 위, 좌우.. 로 스크롤해서 봐야할텐데요.

sqlite editor보니 datagrid가 있던데요. apktool로 풀어서 레이아웃을 살펴보니

<LinearLayout android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent"
  xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:app="http://schemas.android.com/apk/res/com.speedsoftware.sqleditor">
    <com.speedsoftware.sqleditor.DataGrid android:id="@id/grid" android:background="@drawable/white" android:layout_width="fill_parent" android:layout_height="fill_parent" />
</LinearLayout>

위의 내용을 보니 DataGrid를 사용해서 리스트를 출력해서 상하 좌우가 가능하고 여러개의 내용을 출력할수있던데요.

첨부한 사진의 부분인데요. 안드로이드에는 datagrid가 기본적으로는 없는거 같네요.

고수님들의 지도편달 좀 부탁드립니다. datagrid를 어떻게 해야 사용할수있을까요..