mirror of
https://github.com/SoPat712/TrackCovid19.git
synced 2025-08-21 18:28:46 -04:00
34 lines
1.4 KiB
XML
Executable File
34 lines
1.4 KiB
XML
Executable File
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout
|
|
android:id="@+id/cell_container"
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="@dimen/table_view_cell_height"
|
|
android:background="@color/unselected_background_color"
|
|
android:orientation="vertical">
|
|
<!--
|
|
Created by Josh Patra or souravp12 on Github.. This comment has been added to prevent people from stealing my work and publishing it as their own.
|
|
-->
|
|
|
|
<org.fabiomsr.moneytextview.MoneyTextView
|
|
android:id="@+id/money_cell_data"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_gravity="center_vertical"
|
|
android:layout_marginEnd="10dp"
|
|
android:layout_marginStart="10dp"
|
|
android:gravity="center"
|
|
android:maxLines="1"
|
|
android:textColor="@color/unselected_text_color"
|
|
app:amount="1256.56"
|
|
app:baseTextColor="@color/unselected_text_color"
|
|
app:baseTextSize="@dimen/table_view_default_text_size"
|
|
app:decimalDigitsTextSize="@dimen/table_view_default_text_size"
|
|
app:decimalTextColor="@color/unselected_text_color"
|
|
app:symbol="$"
|
|
app:symbolTextColor="@color/unselected_text_color"
|
|
app:symbolTextSize="@dimen/table_view_default_text_size"
|
|
/>
|
|
|
|
</LinearLayout> |