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.
 
 
poker-analytics/app/src/main/res/layout/row_hand_action_read.xml

47 lines
1.7 KiB

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="52dp">
<net.pokeranalytics.android.ui.view.PlayerImageView
android:id="@+id/player_image_rhar"
android:layout_marginStart="8dp"
android:layout_width="44dp"
android:layout_height="44dp"
android:background="@android:color/transparent" />
<androidx.appcompat.widget.AppCompatTextView
android:id="@+id/playersText"
style="@style/PokerAnalyticsTheme.TextView.RowTitle"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1.5"
android:layout_marginStart="8dp"
android:gravity="center_vertical"
tools:text="BB"
/>
<androidx.appcompat.widget.AppCompatTextView
android:id="@+id/actionText"
style="@style/PokerAnalyticsTheme.TextView.RowTitle"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:layout_marginStart="8dp"
android:gravity="center_vertical"
tools:text="raises"/>
<androidx.appcompat.widget.AppCompatTextView
android:id="@+id/amountText"
style="@style/PokerAnalyticsTheme.TextView.RowTitle"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:layout_marginStart="8dp"
android:layout_marginEnd="8dp"
android:gravity="end|center_vertical"
tools:text="120" />
</LinearLayout>