aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/item_nav_drawer_account.xml
blob: 35405b82e47f2dcb87108a296ed3f1c0e4c50316 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?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="wrap_content"
    android:padding="16dp"
    android:background="?attr/selectableItemBackground"
    android:clickable="true"
    android:focusable="true">

    <pl.droidsonroids.gif.GifImageView
        android:id="@+id/profile_image_item_account"
        android:layout_width="24dp"
        android:layout_height="24dp"
        android:layout_marginEnd="16dp" />

    <TextView
        android:id="@+id/username_text_view_item_account"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginStart="16dp"
        android:layout_marginEnd="16dp"
        android:layout_gravity="center_vertical"
        android:textColor="@color/primaryTextColor"
        android:textSize="?attr/font_default" />

</LinearLayout>