2017-10-15 11:16:50 +03:00
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2018-04-11 16:37:28 +03:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:paddingLeft="6dp"
|
|
|
|
android:paddingStart="6dp"
|
|
|
|
android:paddingRight="8dp"
|
|
|
|
android:paddingEnd="8dp">
|
2017-10-15 11:16:50 +03:00
|
|
|
|
2018-04-11 16:37:28 +03:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/navigationItemIcon"
|
|
|
|
android:layout_width="44dp"
|
|
|
|
android:layout_height="44dp"
|
|
|
|
android:padding="10dp"
|
|
|
|
android:scaleType="center"
|
2018-08-26 12:53:34 +03:00
|
|
|
android:focusable="false"
|
2018-04-11 16:37:28 +03:00
|
|
|
android:src="@drawable/ic_folder_grey600_24dp" />
|
2017-10-15 11:16:50 +03:00
|
|
|
|
2018-04-11 16:37:28 +03:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/navigationItemCount"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
android:layout_alignParentEnd="true"
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:padding="8dp"
|
|
|
|
android:textAppearance="@style/NavigationItem" />
|
2017-10-15 11:16:50 +03:00
|
|
|
|
2018-04-11 16:37:28 +03:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/navigationItemLabel"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_toStartOf="@id/navigationItemCount"
|
|
|
|
android:layout_toLeftOf="@id/navigationItemCount"
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:layout_marginLeft="64dp"
|
|
|
|
android:layout_marginStart="64dp"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:lines="1"
|
|
|
|
android:textAppearance="@style/NavigationItem" />
|
2017-10-15 11:16:50 +03:00
|
|
|
|
|
|
|
</RelativeLayout>
|