| <?xml version="1.0" encoding="utf-8"?> |
| <LinearLayout |
| android:id="@+id/ll_deposit_accounts" |
| xmlns:android="http://schemas.android.com/apk/res/android" |
| xmlns:app="http://schemas.android.com/apk/res-auto" |
| xmlns:tools="http://schemas.android.com/tools" |
| android:clickable="true" |
| android:foreground="?android:attr/selectableItemBackground" |
| android:layout_height="wrap_content" |
| android:layout_width="match_parent" |
| android:orientation="vertical"> |
| |
| <LinearLayout |
| android:layout_height="wrap_content" |
| android:layout_width="match_parent" |
| android:orientation="horizontal"> |
| |
| <androidx.appcompat.widget.AppCompatImageView |
| android:id="@+id/iv_status_indicator" |
| android:layout_height="match_parent" |
| android:layout_marginBottom="@dimen/default_margin" |
| android:layout_marginTop="@dimen/default_margin" |
| android:layout_width="@dimen/side_bar_width" |
| app:srcCompat="@drawable/round_corner"/> |
| |
| <LinearLayout |
| android:layout_height="wrap_content" |
| android:layout_weight="1" |
| android:layout_width="0dp" |
| android:orientation="vertical" |
| android:padding="@dimen/layout_padding_24dp"> |
| |
| <TextView |
| style="@style/Base.TextAppearance.AppCompat.Body1" |
| android:layout_height="match_parent" |
| android:layout_width="match_parent" |
| android:text="@string/account_identifier"/> |
| |
| <TextView |
| android:ellipsize="end" |
| android:id="@+id/tv_customer_account_identifier" |
| android:layout_height="wrap_content" |
| android:layout_width="wrap_content" |
| android:lines="1" |
| android:textColor="@color/black" |
| android:textSize="@dimen/text_medium" |
| tools:text="Deposit Identifier"/> |
| |
| <TextView |
| android:id="@+id/tv_deposit_product" |
| android:layout_height="wrap_content" |
| android:layout_width="wrap_content" |
| android:textColor="@color/gray_dark" |
| android:textSize="@dimen/text_small" |
| tools:text="Deposit Product"/> |
| |
| </LinearLayout> |
| |
| <TextView |
| android:id="@+id/tv_account_balance" |
| android:layout_gravity="center" |
| android:layout_height="wrap_content" |
| android:layout_marginEnd="@dimen/layout_padding_24dp" |
| android:layout_marginRight="@dimen/layout_padding_24dp" |
| android:layout_width="wrap_content" |
| android:textSize="@dimen/text_medium" |
| tools:text="Amount"/> |
| |
| </LinearLayout> |
| |
| <View |
| android:layout_width="match_parent" |
| android:layout_height="0.2dp" |
| android:background="#E7DFDF"/> |
| |
| </LinearLayout> |