Moodl/app/src/main/res/layout/custom_row.xml
Tanguy Herbron 28c7d39466 Fisrt push
Initial push
-HitBTC synchronisation
-Quick charts
-Detailed/Quick view
2018-01-28 21:56:58 +01:00

53 lines
2.0 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical">
<TextView
android:id="@+id/currencyName"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:gravity="center_vertical|center_horizontal"
android:text="Sample text"
android:textColor="@color/mainTextViewColor"
android:textSize="15dp" />
<TextView
android:id="@+id/currencySymbol"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:gravity="center_vertical|center_horizontal"
android:text="Sample text"
android:textColor="@color/secondaryTextViewColor"
android:textSize="12dp" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="end">
<ImageView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:src="@drawable/ic_chevron_right_black_24dp"/>
</LinearLayout>
</LinearLayout>
<View
android:layout_width="match_parent"
android:layout_height="2dp"
android:background="@color/separationLine"
/>
</LinearLayout>