59 lines
No EOL
2.3 KiB
XML
59 lines
No EOL
2.3 KiB
XML
<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:clickable="true"
|
|
android:focusable="false"
|
|
android:orientation="horizontal"
|
|
android:baselineAligned="false">
|
|
|
|
<RelativeLayout 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:layout_weight="1">
|
|
|
|
<fragment
|
|
android:id="@+id/playing_info_fragment"
|
|
class="com.kabouzeid.gramophone.ui.fragments.PlayingInfoFragment"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="72dp"
|
|
android:layout_above="@+id/playback_controls_fragment"
|
|
tools:layout="@layout/fragment_player_album_cover" />
|
|
|
|
<fragment
|
|
android:id="@+id/playback_controls_fragment"
|
|
class="com.kabouzeid.gramophone.ui.fragments.PlaybackControlsFragment"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentBottom="true"
|
|
tools:layout="@layout/fragment_playback_controls" />
|
|
|
|
<include layout="@layout/shadow_statusbar_actionbar" />
|
|
|
|
<View
|
|
android:id="@+id/player_status_bar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="@dimen/status_bar_padding"
|
|
android:background="@android:color/transparent"
|
|
android:elevation="@dimen/toolbar_elevation"
|
|
tools:ignore="UnusedAttribute" />
|
|
|
|
<android.support.v7.widget.Toolbar
|
|
android:id="@+id/player_toolbar"
|
|
style="@style/Toolbar"
|
|
android:layout_below="@id/player_status_bar"
|
|
android:background="@android:color/transparent"
|
|
tools:ignore="UnusedAttribute" />
|
|
|
|
</RelativeLayout>
|
|
|
|
<fragment
|
|
android:id="@+id/player_album_cover_fragment"
|
|
class="com.kabouzeid.gramophone.ui.fragments.PlayerAlbumCoverFragment"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="1"
|
|
tools:layout="@layout/fragment_player_album_cover" />
|
|
|
|
</LinearLayout> |