All checks were successful
continuous-integration/drone/push Build is passing
71 lines
3.1 KiB
XML
71 lines
3.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:visibility="visible"
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior">
|
|
|
|
<LinearLayout
|
|
android:id="@+id/left"
|
|
android:layout_width="0dp"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical"
|
|
android:weightSum="2"
|
|
app:layout_constraintEnd_toStartOf="@+id/right"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent">
|
|
|
|
<androidx.fragment.app.FragmentContainerView
|
|
android:id="@+id/teamNames"
|
|
android:name="me.zobrist.tichucounter.fragments.TeamNames"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
tools:layout="@layout/fragment_team_names" />
|
|
|
|
<androidx.fragment.app.FragmentContainerView
|
|
android:id="@+id/teamScores"
|
|
android:name="me.zobrist.tichucounter.fragments.TeamScores"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toBottomOf="@id/teamNames"
|
|
tools:layout="@layout/fragment_team_scores" />
|
|
|
|
<androidx.fragment.app.FragmentContainerView
|
|
android:id="@+id/scrollHistory"
|
|
android:name="me.zobrist.tichucounter.fragments.HistoryList"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginTop="16dp"
|
|
android:clickable="false"
|
|
tools:layout="@layout/fragment_history_list" />
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:id="@+id/right"
|
|
android:layout_width="0dp"
|
|
android:layout_height="match_parent"
|
|
android:gravity="bottom"
|
|
android:orientation="vertical"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintStart_toEndOf="@+id/left">
|
|
|
|
<androidx.fragment.app.FragmentContainerView
|
|
android:id="@+id/keyboard"
|
|
android:name="me.zobrist.tichucounter.fragments.Keyboard"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
tools:layout="@layout/fragment_keyboard" />
|
|
</LinearLayout>
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout> |