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:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:padding="12dp"
|
|
|
|
tools:ignore="NewApi,RtlSymmetry">
|
|
|
|
|
|
|
|
<TextView
|
2018-08-22 23:24:07 +05:30
|
|
|
android:id="@+id/title"
|
2018-12-04 21:04:26 +05:30
|
|
|
android:textStyle="bold"
|
2018-07-27 18:37:33 +05:30
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginBottom="12dp"
|
|
|
|
android:textColor="?android:attr/textColorPrimary"
|
|
|
|
android:text="@string/action_details"
|
|
|
|
android:textAppearance="@style/TextAppearance.AppCompat.Title"
|
|
|
|
tools:ignore="MissingPrefix" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/file_path"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:fontFamily="sans-serif"
|
|
|
|
android:textAppearance="?android:textAppearanceMedium"
|
|
|
|
android:textSize="16sp" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/file_name"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:fontFamily="sans-serif"
|
|
|
|
android:paddingTop="16dp"
|
2018-08-22 23:24:07 +05:30
|
|
|
android:textColor="?android:attr/textColorPrimary"
|
2018-07-27 18:37:33 +05:30
|
|
|
android:textAppearance="?android:textAppearanceMedium"
|
|
|
|
android:textSize="16sp" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/file_size"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:fontFamily="sans-serif"
|
|
|
|
android:paddingTop="16dp"
|
|
|
|
android:textAppearance="?android:textAppearanceMedium"
|
|
|
|
android:textSize="16sp" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/file_format"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:fontFamily="sans-serif"
|
|
|
|
android:paddingTop="16dp"
|
|
|
|
android:textAppearance="?android:textAppearanceMedium"
|
|
|
|
android:textSize="16sp" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/track_length"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:fontFamily="sans-serif"
|
|
|
|
android:paddingTop="16dp"
|
|
|
|
android:textAppearance="?android:textAppearanceMedium"
|
|
|
|
android:textSize="16sp" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/bitrate"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:fontFamily="sans-serif"
|
|
|
|
android:paddingTop="16dp"
|
|
|
|
android:textAppearance="?android:textAppearanceMedium"
|
|
|
|
android:textSize="16sp" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/sampling_rate"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:fontFamily="sans-serif"
|
|
|
|
android:paddingTop="16dp"
|
|
|
|
android:textAppearance="?android:textAppearanceMedium"
|
|
|
|
android:textSize="16sp" />
|
|
|
|
|
|
|
|
</LinearLayout>
|