mirror of
https://github.com/zoriya/Opus.git
synced 2025-12-06 06:26:15 +00:00
104 lines
4.4 KiB
XML
104 lines
4.4 KiB
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<android.support.design.widget.CoordinatorLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:orientation="vertical"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:fitsSystemWindows="true">
|
|
<android.support.design.widget.AppBarLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="1080px"
|
|
android:fitsSystemWindows="true">
|
|
<android.support.design.widget.CollapsingToolbarLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:id="@+id/collapsingToolbar"
|
|
app:layout_scrollFlags="scroll|exitUntilCollapsed"
|
|
android:fitsSystemWindows="true">
|
|
<ImageView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
app:layout_collapseMode="parallax"
|
|
android:id="@+id/metadataArt"
|
|
android:background="@null"
|
|
android:fitsSystemWindows="true" />
|
|
<android.support.v7.widget.Toolbar
|
|
android:layout_width="match_parent"
|
|
android:id="@+id/backToolbar"
|
|
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
|
|
android:layout_height="?attr/actionBarSize"
|
|
app:layout_collapseMode="pin"/>
|
|
</android.support.design.widget.CollapsingToolbarLayout>
|
|
</android.support.design.widget.AppBarLayout>
|
|
<android.support.v4.widget.NestedScrollView
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:background="?android:colorBackground">
|
|
<android.support.v7.widget.CardView
|
|
android:layout_gravity="top"
|
|
android:id="@+id/metadataCardView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_margin="8dp" >
|
|
<LinearLayout
|
|
android:orientation="vertical"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content" >
|
|
<android.support.design.widget.TextInputLayout
|
|
android:layout_margin="8dp"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
<EditText
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:inputType="text"
|
|
android:hint="@string/title"
|
|
android:id="@+id/metadataTitle" />
|
|
</android.support.design.widget.TextInputLayout>
|
|
<android.support.design.widget.TextInputLayout
|
|
android:layout_margin="8dp"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
<EditText
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:inputType="text"
|
|
android:hint="@string/album"
|
|
android:id="@+id/metadataArtist" />
|
|
</android.support.design.widget.TextInputLayout>
|
|
<android.support.design.widget.TextInputLayout
|
|
android:layout_margin="8dp"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
<EditText
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:inputType="text"
|
|
android:hint="@string/album"
|
|
android:id="@+id/metadataAlbum" />
|
|
</android.support.design.widget.TextInputLayout>
|
|
<android.support.design.widget.TextInputLayout
|
|
android:layout_margin="8dp"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
<EditText
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:inputType="text"
|
|
android:hint="@string/youtubeid"
|
|
android:id="@+id/metadataYID" />
|
|
</android.support.design.widget.TextInputLayout>
|
|
</LinearLayout>
|
|
</android.support.v7.widget.CardView>
|
|
</android.support.v4.widget.NestedScrollView>
|
|
<android.support.design.widget.FloatingActionButton
|
|
android:id="@+id/metadataFAB"
|
|
android:layout_height="wrap_content"
|
|
android:layout_width="wrap_content"
|
|
android:layout_marginRight="15dp"
|
|
android:src="@drawable/done"
|
|
app:layout_anchor="@id/collapsingToolbar"
|
|
app:layout_anchorGravity="bottom|end" />
|
|
</android.support.design.widget.CoordinatorLayout> |