안녕하세요
LinearLayout을 이용하시려면 눈속임 방식으로 각 TextView를 배치하시면 되겠구요
RelativeLayout으로 하시는게 더 깔끔합니다.
수고하세요!
<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="300dp"
    android:orientation="horizontal">
    <TextView
        android:layout_width="0dp"
        android:layout_height="250dp"
        android:layout_weight="1"/>
    <TextView
        android:layout_width="0dp"
        android:layout_height="250dp"
        android:layout_weight="1"/>
    <TextView
        android:layout_width="0dp"
        android:layout_height="250dp"
        android:layout_weight="1"/>
    <TextView
        android:layout_width="0dp"
        android:layout_height="250dp"
        android:layout_weight="1"/>
    <TextView
        android:layout_width="0dp"
        android:layout_height="250dp"
        android:layout_weight="1"/>
	
</LinearLayout>