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

34 lines
1.3 KiB
XML
Raw Normal View History

2018-07-27 13:07:33 +00:00
<?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 13:14:33 +00:00
android:background="?rectSelector"
2018-07-27 13:07:33 +00:00
android:gravity="center_vertical|start"
android:minHeight="@dimen/tab_height"
android:orientation="horizontal"
2019-10-01 18:15:06 +00:00
android:paddingStart="12dp"
2019-12-10 17:36:20 +00:00
android:paddingEnd="4dp">
2018-07-27 13:07:33 +00:00
2019-10-01 18:15:06 +00:00
<com.google.android.material.textview.MaterialTextView
2018-07-27 13:07:33 +00:00
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingEnd="8dp"
2020-08-13 17:48:49 +00:00
android:textAllCaps="false"
android:textAppearance="@style/TextViewNormal"
2018-07-27 13:07:33 +00:00
android:textColor="#fff"
tools:ignore="RtlSymmetry,UnusedAttribute"
tools:text="Storage"
tools:textColor="#000" />
2018-08-30 09:29:30 +00:00
<androidx.appcompat.widget.AppCompatImageView
2018-07-27 13:07:33 +00:00
android:layout_width="24dp"
android:layout_height="24dp"
android:scaleType="fitXY"
android:visibility="gone"
2020-07-19 21:00:30 +00:00
app:srcCompat="@drawable/ic_keyboard_arrow_right"
2020-01-07 13:14:33 +00:00
tools:tint="?android:attr/colorControlNormal"
2018-07-27 13:07:33 +00:00
tools:visibility="visible" />
</LinearLayout>