2017-05-07 20:16:41 +02:00
|
|
|
<?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="48dp"
|
|
|
|
android:layout_height="48dp"
|
|
|
|
android:layout_weight="1"
|
2018-11-18 15:29:35 +01:00
|
|
|
android:background="@drawable/bg_column_header"
|
2017-05-07 20:16:41 +02:00
|
|
|
android:gravity="center"
|
|
|
|
android:orientation="vertical"
|
|
|
|
>
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/ivIcon"
|
|
|
|
android:layout_marginTop="4dp"
|
|
|
|
android:layout_width="32dp"
|
|
|
|
android:layout_height="32dp"
|
|
|
|
tools:ignore="ContentDescription"
|
|
|
|
android:importantForAccessibility="no"
|
|
|
|
/>
|
|
|
|
|
|
|
|
<View
|
|
|
|
android:id="@+id/vAcctColor"
|
|
|
|
android:layout_width="32dp"
|
|
|
|
android:layout_height="3dp"
|
|
|
|
android:layout_marginTop="3dp"
|
|
|
|
/>
|
|
|
|
|
|
|
|
</LinearLayout>
|