Journal/res/layout/fragment_main.xml

29 lines
970 B
XML
Raw Permalink Normal View History

2024-02-14 00:01:58 +02:00
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<Spinner
android:id="@+id/subjectSpinner"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1" />
<Spinner
android:id="@+id/groupSpinner"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1" />
</LinearLayout>
<com.inqbarna.tablefixheaders.TableFixHeaders
android:id="@+id/table"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</LinearLayout>