RetroMusicPlayer/app/src/main/res/layout-land/fragment_plain_player.xml

120 lines
5 KiB
XML
Raw Normal View History

2018-07-27 18:37:33 +05:30
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:clickable="true"
android:focusable="true">
2019-12-05 23:48:54 +05:30
<View
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="?attr/colorSurface" />
2018-07-27 18:37:33 +05:30
<include layout="@layout/shadow_statusbar_toolbar" />
<LinearLayout
2018-11-05 19:23:07 +05:30
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<FrameLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<include layout="@layout/status_bar" />
</FrameLayout>
2018-07-27 18:37:33 +05:30
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">
2018-07-27 18:37:33 +05:30
<code.name.monkey.retromusic.views.HeightFitSquareLayout
2018-07-27 18:37:33 +05:30
android:layout_width="match_parent"
android:layout_height="match_parent">
2018-07-27 18:37:33 +05:30
<androidx.fragment.app.FragmentContainerView
android:id="@+id/playerAlbumCoverFragment"
android:name="code.name.monkey.retromusic.fragments.player.PlayerAlbumCoverFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
2019-09-09 19:08:49 +05:30
tools:layout="@layout/fragment_album_cover" />
</code.name.monkey.retromusic.views.HeightFitSquareLayout>
2018-07-27 18:37:33 +05:30
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
2018-07-27 18:37:33 +05:30
2018-11-28 11:07:10 +05:30
<LinearLayout
2018-07-27 18:37:33 +05:30
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="0"
2021-09-16 18:29:31 +05:30
android:clickable="false"
android:orientation="vertical"
android:paddingStart="16dp"
android:paddingTop="8dp"
android:paddingEnd="16dp"
android:paddingBottom="16dp">
<com.google.android.material.textview.MaterialTextView
2019-10-26 13:41:08 +05:30
android:id="@+id/title"
2022-01-06 20:39:10 +05:30
android:layout_width="wrap_content"
2018-11-28 11:07:10 +05:30
android:layout_height="wrap_content"
2021-09-16 18:29:31 +05:30
android:clickable="true"
android:ellipsize="marquee"
android:focusable="true"
android:freezesText="true"
android:marqueeRepeatLimit="marquee_forever"
android:scrollHorizontally="true"
android:singleLine="true"
2019-10-04 16:28:28 +05:30
android:textAppearance="@style/TextViewHeadline6"
android:textStyle="bold"
tools:ignore="MissingPrefix"
tools:text="Title" />
<com.google.android.material.textview.MaterialTextView
2019-10-26 13:41:08 +05:30
android:id="@+id/text"
2022-01-06 20:39:10 +05:30
android:layout_width="wrap_content"
android:layout_height="wrap_content"
2021-09-16 18:29:31 +05:30
android:clickable="true"
android:ellipsize="end"
2021-09-16 18:29:31 +05:30
android:focusable="true"
android:maxLines="1"
2019-10-02 22:04:39 +05:30
android:paddingTop="8dp"
tools:text="Text" />
</LinearLayout>
2018-11-28 11:07:10 +05:30
<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1">
2018-11-28 11:07:10 +05:30
<androidx.fragment.app.FragmentContainerView
android:id="@+id/playbackControlsFragment"
android:name="code.name.monkey.retromusic.fragments.player.plain.PlainPlaybackControlsFragment"
2018-11-28 11:07:10 +05:30
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:layout="@layout/fragment_plain_controls_fragment" />
</FrameLayout>
2018-07-27 18:37:33 +05:30
<FrameLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="0">
<com.google.android.material.appbar.MaterialToolbar
android:id="@+id/playerToolbar"
style="@style/Toolbar"
2020-07-20 02:30:30 +05:30
android:navigationIcon="@drawable/ic_keyboard_arrow_down_black"
app:navigationIcon="@drawable/ic_keyboard_arrow_down_black" />
</FrameLayout>
2018-07-27 18:37:33 +05:30
</LinearLayout>
2018-07-27 18:37:33 +05:30
</LinearLayout>
</LinearLayout>
2018-07-27 18:37:33 +05:30
</FrameLayout>