mirror of
https://github.com/Michatec/Radio.git
synced 2026-06-05 03:12:15 +02:00
43 lines
1.4 KiB
XML
43 lines
1.4 KiB
XML
<?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="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical">
|
|
|
|
<android.widget.ProgressBar
|
|
android:id="@+id/download_progress_indicator"
|
|
style="?android:attr/progressBarStyleHorizontal"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:indeterminate="true"
|
|
android:visibility="gone" />
|
|
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical"
|
|
tools:context="com.michatec.radio.PlayerFragment">
|
|
|
|
<!-- STATION LIST -->
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/station_list"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginTop="2dp"
|
|
android:visibility="visible" />
|
|
|
|
<!-- ONBOARDING -->
|
|
<include
|
|
layout="@layout/element_onboarding"
|
|
android:visibility="gone" />
|
|
|
|
<!-- PLAYER SHEET -->
|
|
<include layout="@layout/bottom_sheet_playback_controls" />
|
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
|