2018-11-26 18:26:20 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2018-12-18 13:55:04 +00:00
|
|
|
<LinearLayout
|
2018-11-26 18:26:20 +00:00
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2018-12-18 13:55:04 +00:00
|
|
|
android:layout_width="match_parent"
|
2018-11-26 18:26:20 +00:00
|
|
|
android:layout_height="wrap_content"
|
2018-12-14 02:53:38 +00:00
|
|
|
android:paddingTop="4dp"
|
2018-12-18 13:55:04 +00:00
|
|
|
android:paddingBottom="4dp">
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/tvSymbol"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
tools:text="123.45"/>
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/tvAmount"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
|
|
|
tools:text="BTS"
|
|
|
|
android:textAlignment="viewEnd"/>
|
|
|
|
</LinearLayout>
|