|
|
|
|
@ -9,6 +9,8 @@ |
|
|
|
|
android:orientation="horizontal" |
|
|
|
|
android:layout_width="0dp" |
|
|
|
|
android:layout_height="wrap_content" |
|
|
|
|
android:layout_marginStart="8dp" |
|
|
|
|
android:layout_marginEnd="8dp" |
|
|
|
|
app:layout_constraintStart_toStartOf="parent" |
|
|
|
|
app:layout_constraintEnd_toEndOf="parent" |
|
|
|
|
app:layout_constraintTop_toTopOf="parent"> |
|
|
|
|
@ -17,10 +19,9 @@ |
|
|
|
|
android:id="@+id/closeButton" |
|
|
|
|
style="@style/PokerAnalyticsTheme.Button" |
|
|
|
|
app:icon="@drawable/ic_close" |
|
|
|
|
android:gravity="center" |
|
|
|
|
android:layout_width="44dp" |
|
|
|
|
android:layout_height="44dp" |
|
|
|
|
android:layout_weight="1" |
|
|
|
|
android:layout_marginStart="8dp"/> |
|
|
|
|
android:layout_height="44dp" /> |
|
|
|
|
|
|
|
|
|
<Space |
|
|
|
|
android:layout_width="wrap_content" |
|
|
|
|
@ -55,7 +56,8 @@ |
|
|
|
|
<androidx.recyclerview.widget.RecyclerView |
|
|
|
|
android:id="@+id/valueRecyclerView" |
|
|
|
|
android:layout_width="match_parent" |
|
|
|
|
android:layout_height="100dp" |
|
|
|
|
android:layout_height="wrap_content" |
|
|
|
|
android:layout_marginBottom="10dp" |
|
|
|
|
app:layout_constraintStart_toStartOf="parent" |
|
|
|
|
app:layout_constraintEnd_toEndOf="parent" |
|
|
|
|
app:layout_constraintBottom_toTopOf="@id/suitRecyclerView" |
|
|
|
|
@ -64,10 +66,12 @@ |
|
|
|
|
<androidx.recyclerview.widget.RecyclerView |
|
|
|
|
android:id="@+id/suitRecyclerView" |
|
|
|
|
android:layout_width="match_parent" |
|
|
|
|
android:layout_height="50dp" |
|
|
|
|
android:layout_height="wrap_content" |
|
|
|
|
android:layout_marginStart="50dp" |
|
|
|
|
android:layout_marginEnd="50dp" |
|
|
|
|
app:layout_constraintStart_toStartOf="parent" |
|
|
|
|
app:layout_constraintEnd_toStartOf="@id/backSpaceButton" |
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent" |
|
|
|
|
app:layout_constraintEnd_toStartOf="parent" |
|
|
|
|
app:layout_constraintBottom_toTopOf="@+id/backSpaceButton" |
|
|
|
|
/> |
|
|
|
|
|
|
|
|
|
<com.google.android.material.button.MaterialButton |
|
|
|
|
@ -76,6 +80,8 @@ |
|
|
|
|
android:text="@string/backspace" |
|
|
|
|
android:layout_width="50dp" |
|
|
|
|
android:layout_height="50dp" |
|
|
|
|
android:layout_marginEnd="8dp" |
|
|
|
|
android:textSize="20sp" |
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent" |
|
|
|
|
app:layout_constraintEnd_toEndOf="parent" |
|
|
|
|
/> |
|
|
|
|
|