mirror of
https://github.com/nextcloud/android.git
synced 2024-11-24 06:05:42 +03:00
29 lines
No EOL
974 B
XML
29 lines
No EOL
974 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/main_audio_view"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:orientation="vertical">
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:text="Now playing:"
|
|
android:textSize="25sp"
|
|
android:textStyle="bold"
|
|
/>
|
|
<TextView
|
|
android:id="@+id/now_playing_text"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="20dip"
|
|
android:layout_marginLeft="10dip"
|
|
android:layout_marginRight="10dip"
|
|
android:layout_gravity="center"
|
|
android:text="Now playing.."
|
|
android:textSize="16sp"
|
|
android:textStyle="italic"
|
|
/>
|
|
</LinearLayout> |