You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
2.1 KiB
55 lines
2.1 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
|
|
|
<LinearLayout
|
|
android:id="@+id/toolbar"
|
|
android:orientation="horizontal"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="44dp"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent">
|
|
|
|
<ImageButton
|
|
android:id="@+id/closeButton"
|
|
android:src="@drawable/ic_close_green"
|
|
style="@style/PokerAnalyticsTheme.TransparentButton"
|
|
android:stateListAnimator="@null"
|
|
android:layout_width="44dp"
|
|
android:layout_height="44dp"/>
|
|
|
|
<!-- <com.google.android.material.button.MaterialButton-->
|
|
<!-- android:id="@+id/closeButton"-->
|
|
<!-- app:icon="@drawable/ic_close"-->
|
|
<!-- style="@style/PokerAnalyticsTheme.Button"-->
|
|
<!-- android:layout_width="44dp"-->
|
|
<!-- android:layout_height="44dp"-->
|
|
<!-- android:layout_marginStart="8dp"/>-->
|
|
|
|
</LinearLayout>
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/position_recycler"
|
|
android:layout_width="0dp"
|
|
android:layout_height="44dp"
|
|
android:layout_weight="1"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintTop_toBottomOf="@id/toolbar"
|
|
/>
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/action_recycler"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
app:layout_constraintTop_toBottomOf="@id/position_recycler"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
/>
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout> |