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

47 lines
1.9 KiB
XML
Raw Normal View History

2019-03-25 12:43:43 +00:00
<?xml version="1.0" encoding="utf-8"?><!--
~ Copyright (c) 2019 Hemanth Savarala.
~
~ Licensed under the GNU General Public License v3
~
~ This is free software: you can redistribute it and/or modify it under
~ the terms of the GNU General Public License as published by
~ the Free Software Foundation either version 3 of the License, or (at your option) any later version.
~
~ This software is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
~ without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
~ See the GNU General Public License for more details.
-->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
2019-09-03 16:02:10 +00:00
xmlns:tools="http://schemas.android.com/tools"
2019-03-25 12:43:43 +00:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
2020-01-06 05:34:09 +00:00
android:background="?rectSelector"
2019-03-25 12:43:43 +00:00
android:gravity="center_vertical"
android:orientation="horizontal"
2019-11-21 17:35:27 +00:00
android:paddingStart="8dp"
android:paddingEnd="8dp"
2019-03-25 12:43:43 +00:00
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">
2019-09-28 17:52:49 +00:00
<androidx.appcompat.widget.AppCompatImageView
2019-03-25 12:43:43 +00:00
android:id="@+id/icon"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="0"
2019-12-08 14:35:03 +00:00
android:padding="12dp"
2019-12-01 11:28:57 +00:00
app:tint="?attr/colorControlNormal"
2020-07-19 21:00:30 +00:00
tools:srcCompat="@drawable/ic_folder" />
2019-03-25 12:43:43 +00:00
2019-09-28 17:52:49 +00:00
<com.google.android.material.textview.MaterialTextView
2019-03-25 12:43:43 +00:00
android:id="@+id/title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="@string/folders"
android:textAppearance="@style/TextViewNormal"
2019-12-01 15:27:01 +00:00
android:textColor="?android:attr/textColorPrimary"
2019-03-25 12:43:43 +00:00
android:textSize="16sp" />
</LinearLayout>