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

87 lines
3.4 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:tools="http://schemas.android.com/tools"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
tools:ignore="NewApi,RtlSymmetry">
<com.google.android.material.textview.MaterialTextView
2018-12-06 10:23:03 +00:00
android:id="@+id/filePath"
2018-07-27 13:07:33 +00:00
android:layout_width="wrap_content"
android:layout_height="wrap_content"
2019-03-18 17:46:52 +00:00
android:paddingStart="16dp"
2020-07-19 14:39:04 +00:00
android:paddingTop="16dp"
2021-09-16 12:59:31 +00:00
android:paddingEnd="16dp"
android:textAppearance="@style/TextViewNormal"
2019-12-06 17:13:09 +00:00
android:textColor="?android:attr/textColorPrimary"
2018-07-27 13:07:33 +00:00
android:textSize="16sp" />
<com.google.android.material.textview.MaterialTextView
2018-12-06 10:23:03 +00:00
android:id="@+id/fileName"
2018-07-27 13:07:33 +00:00
android:layout_width="wrap_content"
android:layout_height="wrap_content"
2019-03-18 17:46:52 +00:00
android:paddingStart="16dp"
2018-07-27 13:07:33 +00:00
android:paddingTop="16dp"
2019-03-18 17:46:52 +00:00
android:paddingEnd="16dp"
android:textAppearance="@style/TextViewNormal"
2019-12-06 17:13:09 +00:00
android:textColor="?android:attr/textColorPrimary"
2018-07-27 13:07:33 +00:00
android:textSize="16sp" />
<com.google.android.material.textview.MaterialTextView
2018-12-06 10:23:03 +00:00
android:id="@+id/fileSize"
2018-07-27 13:07:33 +00:00
android:layout_width="wrap_content"
android:layout_height="wrap_content"
2019-03-18 17:46:52 +00:00
android:paddingStart="16dp"
2018-07-27 13:07:33 +00:00
android:paddingTop="16dp"
2019-03-18 17:46:52 +00:00
android:paddingEnd="16dp"
android:textAppearance="@style/TextViewNormal"
2019-12-06 17:13:09 +00:00
android:textColor="?android:attr/textColorPrimary"
2018-07-27 13:07:33 +00:00
android:textSize="16sp" />
<com.google.android.material.textview.MaterialTextView
2018-12-06 10:23:03 +00:00
android:id="@+id/fileFormat"
2018-07-27 13:07:33 +00:00
android:layout_width="wrap_content"
android:layout_height="wrap_content"
2019-03-18 17:46:52 +00:00
android:paddingStart="16dp"
2018-07-27 13:07:33 +00:00
android:paddingTop="16dp"
2019-03-18 17:46:52 +00:00
android:paddingEnd="16dp"
android:textAppearance="@style/TextViewNormal"
2019-12-06 17:13:09 +00:00
android:textColor="?android:attr/textColorPrimary"
2018-07-27 13:07:33 +00:00
android:textSize="16sp" />
<com.google.android.material.textview.MaterialTextView
2018-12-06 10:23:03 +00:00
android:id="@+id/trackLength"
2018-07-27 13:07:33 +00:00
android:layout_width="wrap_content"
android:layout_height="wrap_content"
2019-03-18 17:46:52 +00:00
android:paddingStart="16dp"
2018-07-27 13:07:33 +00:00
android:paddingTop="16dp"
2019-03-18 17:46:52 +00:00
android:paddingEnd="16dp"
2019-09-29 08:57:27 +00:00
android:textAppearance="@style/TextViewNormal"
2019-12-06 17:13:09 +00:00
android:textColor="?android:attr/textColorPrimary"
2018-07-27 13:07:33 +00:00
android:textSize="16sp" />
<com.google.android.material.textview.MaterialTextView
2018-07-27 13:07:33 +00:00
android:id="@+id/bitrate"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
2019-03-18 17:46:52 +00:00
android:paddingStart="16dp"
2018-07-27 13:07:33 +00:00
android:paddingTop="16dp"
2019-03-18 17:46:52 +00:00
android:paddingEnd="16dp"
android:textAppearance="@style/TextViewNormal"
2019-12-06 17:13:09 +00:00
android:textColor="?android:attr/textColorPrimary"
2018-07-27 13:07:33 +00:00
android:textSize="16sp" />
<com.google.android.material.textview.MaterialTextView
2018-12-06 10:23:03 +00:00
android:id="@+id/samplingRate"
2018-07-27 13:07:33 +00:00
android:layout_width="wrap_content"
android:layout_height="wrap_content"
2019-03-18 17:46:52 +00:00
android:paddingStart="16dp"
2018-07-27 13:07:33 +00:00
android:paddingTop="16dp"
2019-03-18 17:46:52 +00:00
android:paddingEnd="16dp"
android:paddingBottom="16dp"
android:textAppearance="@style/TextViewNormal"
2019-12-06 17:13:09 +00:00
android:textColor="?android:attr/textColorPrimary"
2018-07-27 13:07:33 +00:00
android:textSize="16sp" />
</LinearLayout>