RetroMusicPlayer/app/src/main/res/layout/bread_crumb.xml

33 lines
1.2 KiB
XML
Raw Normal View History

2018-07-27 18:37:33 +05:30
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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:layout_width="match_parent"
android:layout_height="match_parent"
2020-01-07 18:44:33 +05:30
android:background="?rectSelector"
2018-07-27 18:37:33 +05:30
android:gravity="center_vertical|start"
android:minHeight="@dimen/tab_height"
android:orientation="horizontal"
2019-10-01 23:45:06 +05:30
android:paddingStart="12dp"
2019-12-10 23:06:20 +05:30
android:paddingEnd="4dp">
2018-07-27 18:37:33 +05:30
2019-10-01 23:45:06 +05:30
<com.google.android.material.textview.MaterialTextView
2018-07-27 18:37:33 +05:30
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingEnd="8dp"
android:textAllCaps="true"
android:textColor="#fff"
tools:ignore="RtlSymmetry,UnusedAttribute"
tools:text="Storage"
tools:textColor="#000" />
2018-08-30 14:59:30 +05:30
<androidx.appcompat.widget.AppCompatImageView
2018-07-27 18:37:33 +05:30
android:layout_width="24dp"
android:layout_height="24dp"
android:scaleType="fitXY"
android:visibility="gone"
app:srcCompat="@drawable/ic_keyboard_arrow_right_white_24dp"
2020-01-07 18:44:33 +05:30
tools:tint="?android:attr/colorControlNormal"
2018-07-27 18:37:33 +05:30
tools:visibility="visible" />
</LinearLayout>