21 lines
No EOL
723 B
XML
21 lines
No EOL
723 B
XML
<?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:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:paddingTop="4dp"
|
|
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> |