add useful information to song details dialog

This commit is contained in:
dkanada 2020-08-29 15:37:08 +09:00
commit 5197af70a9
6 changed files with 132 additions and 20 deletions

View file

@ -50,6 +50,15 @@
android:textAppearance="?android:textAppearanceMedium"
android:textSize="16sp" />
<TextView
android:id="@+id/sample_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" />
<TextView
android:id="@+id/bit_rate"
android:layout_width="wrap_content"
@ -60,7 +69,16 @@
android:textSize="16sp" />
<TextView
android:id="@+id/sample_rate"
android:id="@+id/bit_depth"
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/channels"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:fontFamily="sans-serif"

View file

@ -63,13 +63,15 @@
<string name="album">Album</string>
<string name="label_details">Details</string>
<string name="label_file_name">File Name</string>
<string name="label_file_path">File Path</string>
<string name="label_file_path">Path</string>
<string name="label_file_name">Name</string>
<string name="label_file_size">Size</string>
<string name="label_file_format">Format</string>
<string name="label_track_length">Length</string>
<string name="label_bit_rate">Bit Rate</string>
<string name="label_sample_rate">Sample Rate</string>
<string name="label_bit_rate">Bit Rate</string>
<string name="label_bit_depth">Bit Depth</string>
<string name="label_channels">Channels</string>
<string name="battery_optimizations_title">Battery Optimizations</string>
<string name="battery_optimizations_message">Please disable battery optimizations for media playback while the screen is off.</string>