2021-04-06 13:03:33 -03:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2022-08-09 13:29:04 -03:00
|
|
|
tools:viewBindingIgnore="true"
|
2021-04-06 13:03:33 -03:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:paddingTop="8dp"
|
|
|
|
android:paddingBottom="8dp">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/confirm_payment_line_item_description"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:ellipsize="middle"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:textAlignment="viewStart"
|
|
|
|
android:textAppearance="@style/TextAppearance.Signal.Body1"
|
|
|
|
tools:text="To 0x0d54654684684684" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/confirm_payment_line_item_value"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:textAlignment="viewEnd"
|
|
|
|
android:textAppearance="@style/TextAppearance.Signal.Body1"
|
|
|
|
android:textColor="@color/signal_text_secondary"
|
|
|
|
tools:text="200MOB" />
|
|
|
|
|
|
|
|
</LinearLayout>
|