PlayerAndroid/app/src/main/res/layout/activity_song_tag_editor.xml

275 lines
12 KiB
XML
Raw Normal View History

2018-08-30 09:29:30 +00:00
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
2018-07-27 13:07:33 +00:00
xmlns:app="http://schemas.android.com/apk/res-auto"
2018-08-22 17:54:07 +00:00
xmlns:tools="http://schemas.android.com/tools"
2018-07-27 13:07:33 +00:00
android:layout_width="match_parent"
android:layout_height="match_parent"
android:focusable="true"
android:focusableInTouchMode="true">
2018-08-30 09:29:30 +00:00
<com.google.android.material.appbar.AppBarLayout
2018-12-06 10:23:03 +00:00
android:id="@+id/appBarLayout"
2018-07-27 13:07:33 +00:00
android:layout_width="match_parent"
2018-08-22 17:54:07 +00:00
android:layout_height="wrap_content"
android:elevation="0dp"
app:elevation="0dp">
2018-07-27 13:07:33 +00:00
2018-09-09 19:44:46 +00:00
<com.google.android.material.appbar.CollapsingToolbarLayout
2018-12-06 10:23:03 +00:00
android:id="@+id/collapsingToolbarLayout"
2018-07-27 13:07:33 +00:00
android:layout_width="match_parent"
2018-08-22 17:54:07 +00:00
android:layout_height="wrap_content"
2018-09-09 19:44:46 +00:00
app:layout_scrollFlags="scroll|enterAlwaysCollapsed"
app:titleEnabled="false">
2018-08-22 17:54:07 +00:00
2018-09-09 19:44:46 +00:00
<FrameLayout
2018-12-06 10:23:03 +00:00
android:id="@+id/imageContainer"
2018-09-09 19:44:46 +00:00
android:layout_width="wrap_content"
android:layout_height="wrap_content">
2018-07-27 13:07:33 +00:00
2018-12-06 10:23:03 +00:00
<androidx.appcompat.widget.AppCompatImageView
android:id="@+id/editorImage"
2018-08-22 17:54:07 +00:00
android:layout_width="wrap_content"
2018-09-09 19:44:46 +00:00
android:layout_height="wrap_content"
android:visibility="gone" />
</FrameLayout>
2018-08-22 17:54:07 +00:00
<code.name.monkey.appthemehelper.common.views.ATEToolbar
2018-09-09 19:44:46 +00:00
android:id="@+id/toolbar"
2018-12-04 15:34:26 +00:00
style="@style/Toolbar"
2018-09-09 19:44:46 +00:00
app:navigationIcon="@drawable/ic_keyboard_backspace_black_24dp"
2019-06-04 05:58:34 +00:00
app:title="@string/action_tag_editor"
tools:ignore="UnusedAttribute" />
2018-09-09 19:44:46 +00:00
</com.google.android.material.appbar.CollapsingToolbarLayout>
2018-08-30 09:29:30 +00:00
</com.google.android.material.appbar.AppBarLayout>
2018-07-27 13:07:33 +00:00
2018-08-30 09:29:30 +00:00
<androidx.core.widget.NestedScrollView
2018-07-27 13:07:33 +00:00
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<LinearLayout
android:id="@+id/editables"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="16dp">
2018-08-30 09:29:30 +00:00
<com.google.android.material.textfield.TextInputLayout
2019-03-18 17:46:52 +00:00
android:id="@+id/songTextContainer"
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox"
2018-07-27 13:07:33 +00:00
android:layout_width="match_parent"
android:layout_height="wrap_content">
2018-07-27 13:07:33 +00:00
2019-07-30 20:20:01 +00:00
<com.google.android.material.textfield.TextInputEditText
2018-12-06 10:23:03 +00:00
android:id="@+id/songText"
2018-07-27 13:07:33 +00:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="@string/song"
android:inputType="text|textCapWords"
android:maxLines="1"
2019-03-25 12:43:43 +00:00
tools:text="@string/song" />
2018-08-30 09:29:30 +00:00
</com.google.android.material.textfield.TextInputLayout>
2018-07-27 13:07:33 +00:00
2018-08-30 09:29:30 +00:00
<com.google.android.material.textfield.TextInputLayout
2019-03-18 17:46:52 +00:00
android:id="@+id/albumTextContainer"
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox"
2018-07-27 13:07:33 +00:00
android:layout_width="match_parent"
2019-03-18 17:46:52 +00:00
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
app:hintEnabled="true">
2019-07-30 20:20:01 +00:00
<com.google.android.material.textfield.TextInputEditText
2018-12-06 10:23:03 +00:00
android:id="@+id/albumText"
2018-07-27 13:07:33 +00:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="@string/album"
android:inputType="text|textCapWords"
2019-03-25 12:43:43 +00:00
android:maxLines="1" />
2018-08-30 09:29:30 +00:00
</com.google.android.material.textfield.TextInputLayout>
2018-07-27 13:07:33 +00:00
2018-08-30 09:29:30 +00:00
<com.google.android.material.textfield.TextInputLayout
2019-03-25 12:43:43 +00:00
android:id="@+id/artistContainer"
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox"
2018-07-27 13:07:33 +00:00
android:layout_width="match_parent"
2019-03-18 17:46:52 +00:00
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
app:hintEnabled="true">
2018-07-27 13:07:33 +00:00
2018-12-06 10:23:03 +00:00
<com.google.android.material.textfield.TextInputEditText
android:id="@+id/artistText"
2018-07-27 13:07:33 +00:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:gravity="center_vertical"
android:hint="@string/artist"
android:inputType="text|textCapWords"
2019-03-25 12:43:43 +00:00
android:maxLines="1" />
2018-07-27 13:07:33 +00:00
2018-08-30 09:29:30 +00:00
</com.google.android.material.textfield.TextInputLayout>
2018-07-27 13:07:33 +00:00
2018-08-30 09:29:30 +00:00
<com.google.android.material.textfield.TextInputLayout
2019-03-25 12:43:43 +00:00
android:id="@+id/albumArtistContainer"
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox"
2018-07-27 13:07:33 +00:00
android:layout_width="match_parent"
2019-03-18 17:46:52 +00:00
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
app:hintEnabled="true">
2018-07-27 13:07:33 +00:00
2018-12-06 10:23:03 +00:00
<com.google.android.material.textfield.TextInputEditText
android:id="@+id/albumArtistText"
2018-07-27 13:07:33 +00:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:gravity="center_vertical"
android:hint="@string/album_artist"
android:inputType="text|textCapWords"
2019-03-25 12:43:43 +00:00
android:maxLines="1" />
2018-07-27 13:07:33 +00:00
2018-08-30 09:29:30 +00:00
</com.google.android.material.textfield.TextInputLayout>
2018-07-27 13:07:33 +00:00
<com.google.android.material.textfield.TextInputLayout
2019-03-25 12:43:43 +00:00
android:id="@+id/composerContainer"
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox"
android:layout_width="match_parent"
2019-03-18 17:46:52 +00:00
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
app:hintEnabled="true">
<com.google.android.material.textfield.TextInputEditText
android:id="@+id/songComposerText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:gravity="center_vertical"
android:hint="@string/composer"
android:inputType="text|textCapWords"
2019-03-25 12:43:43 +00:00
android:maxLines="1" />
</com.google.android.material.textfield.TextInputLayout>
2018-11-05 13:53:07 +00:00
2018-07-27 13:07:33 +00:00
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
2018-08-30 09:29:30 +00:00
<com.google.android.material.textfield.TextInputLayout
2019-03-25 12:43:43 +00:00
android:id="@+id/genreContainer"
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox"
2018-07-27 13:07:33 +00:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
2019-03-18 17:46:52 +00:00
android:layout_marginTop="8dp"
android:layout_weight="1"
app:hintEnabled="true">
2018-07-27 13:07:33 +00:00
2018-12-06 10:23:03 +00:00
<com.google.android.material.textfield.TextInputEditText
android:id="@+id/genreText"
2018-07-27 13:07:33 +00:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:gravity="center_vertical"
android:hint="@string/genre"
2019-03-25 12:43:43 +00:00
android:maxLines="1" />
2018-07-27 13:07:33 +00:00
2018-08-30 09:29:30 +00:00
</com.google.android.material.textfield.TextInputLayout>
2018-07-27 13:07:33 +00:00
2018-08-30 09:29:30 +00:00
<com.google.android.material.textfield.TextInputLayout
2019-03-25 12:43:43 +00:00
android:id="@+id/yearContainer"
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox"
2018-07-27 13:07:33 +00:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
2019-03-18 17:46:52 +00:00
android:layout_marginStart="8dp"
android:layout_marginTop="8dp"
android:layout_weight="1"
app:hintEnabled="true">
2018-07-27 13:07:33 +00:00
2018-12-06 10:23:03 +00:00
<com.google.android.material.textfield.TextInputEditText
android:id="@+id/yearText"
2018-07-27 13:07:33 +00:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:gravity="center_vertical"
android:hint="@string/year"
android:inputType="text|number"
2019-03-25 12:43:43 +00:00
android:maxLines="1" />
2018-07-27 13:07:33 +00:00
2018-08-30 09:29:30 +00:00
</com.google.android.material.textfield.TextInputLayout>
2018-07-27 13:07:33 +00:00
</LinearLayout>
2018-08-30 09:29:30 +00:00
<com.google.android.material.textfield.TextInputLayout
2019-03-25 12:43:43 +00:00
android:id="@+id/trackNumberContainer"
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox"
2018-07-27 13:07:33 +00:00
android:layout_width="match_parent"
2019-03-18 17:46:52 +00:00
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
app:hintEnabled="true">
2018-07-27 13:07:33 +00:00
2018-12-06 10:23:03 +00:00
<com.google.android.material.textfield.TextInputEditText
android:id="@+id/trackNumberText"
2018-07-27 13:07:33 +00:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:gravity="center_vertical"
android:hint="@string/track_hint"
android:inputType="text|number"
2019-03-25 12:43:43 +00:00
android:maxLines="1" />
2018-07-27 13:07:33 +00:00
2018-08-30 09:29:30 +00:00
</com.google.android.material.textfield.TextInputLayout>
2018-07-27 13:07:33 +00:00
2018-08-30 09:29:30 +00:00
<com.google.android.material.textfield.TextInputLayout
2019-03-25 12:43:43 +00:00
android:id="@+id/lyricsContainer"
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox"
2018-07-27 13:07:33 +00:00
android:layout_width="match_parent"
2019-03-18 17:46:52 +00:00
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
app:hintEnabled="true">
2018-07-27 13:07:33 +00:00
2018-12-06 10:23:03 +00:00
<com.google.android.material.textfield.TextInputEditText
android:id="@+id/lyricsText"
2018-07-27 13:07:33 +00:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:gravity="center_vertical"
android:hint="@string/lyrics"
2019-03-25 12:43:43 +00:00
android:inputType="textMultiLine" />
2018-07-27 13:07:33 +00:00
2018-08-30 09:29:30 +00:00
</com.google.android.material.textfield.TextInputLayout>
2019-08-01 08:27:05 +00:00
<Space
android:layout_width="match_parent"
android:layout_height="52dp" />
2018-07-27 13:07:33 +00:00
</LinearLayout>
2018-08-30 09:29:30 +00:00
</androidx.core.widget.NestedScrollView>
2018-07-27 13:07:33 +00:00
2019-08-01 08:27:05 +00:00
<com.google.android.material.button.MaterialButton
2019-03-25 12:43:43 +00:00
android:id="@+id/saveTags"
2019-08-01 08:27:05 +00:00
android:layout_width="wrap_content"
2018-07-27 13:07:33 +00:00
android:layout_height="wrap_content"
2019-08-01 08:27:05 +00:00
android:layout_gravity="bottom|center_horizontal"
2019-03-25 12:43:43 +00:00
android:layout_margin="16dp"
android:gravity="center"
2019-08-01 08:27:05 +00:00
android:paddingStart="32dp"
android:paddingTop="12dp"
android:paddingEnd="32dp"
android:paddingBottom="12dp"
2019-03-25 12:43:43 +00:00
android:text="@string/save"
2019-08-01 08:27:05 +00:00
app:cornerRadius="25dp"
2019-03-25 12:43:43 +00:00
app:icon="@drawable/ic_save_white_24dp"
2019-08-01 08:27:05 +00:00
app:iconGravity="textStart"
tools:backgroundTint="@color/md_red_400" />
2018-07-27 13:07:33 +00:00
<ProgressBar
android:id="@+id/progressBar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:visibility="gone" />
2018-08-30 09:29:30 +00:00
</androidx.coordinatorlayout.widget.CoordinatorLayout>
2018-07-27 13:07:33 +00:00