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.
58 lines
2.1 KiB
58 lines
2.1 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="wrap_content"
|
|
android:gravity="center_vertical"
|
|
android:layout_marginTop="2dp"
|
|
android:layout_marginBottom="2dp">
|
|
|
|
<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" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="32dp"
|
|
android:id="@+id/action_container"
|
|
android:layout_marginStart="8dp"
|
|
android:orientation="horizontal">
|
|
|
|
<androidx.appcompat.widget.AppCompatTextView
|
|
android:id="@+id/playersText"
|
|
style="@style/PokerAnalyticsTheme.TextView.RowTitle"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
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="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginStart="6dp"
|
|
android:gravity="center_vertical"
|
|
tools:text="raises"/>
|
|
|
|
<androidx.appcompat.widget.AppCompatTextView
|
|
android:id="@+id/amountText"
|
|
style="@style/PokerAnalyticsTheme.TextView.RowTitle"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginStart="6dp"
|
|
android:layout_marginEnd="8dp"
|
|
android:gravity="end|center_vertical"
|
|
tools:text="120" />
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</LinearLayout> |