Added new IntroActivity.
This commit is contained in:
parent
fe8d6e14aa
commit
f4680fdb44
11 changed files with 293 additions and 107 deletions
42
app/src/main/res/layout/fragment_intro_slide.xml
Normal file
42
app/src/main/res/layout/fragment_intro_slide.xml
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
<?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="wrap_content"
|
||||
android:layout_gravity="center"
|
||||
android:gravity="center"
|
||||
android:orientation="vertical"
|
||||
android:padding="@dimen/mi_baseline">
|
||||
|
||||
<TextView
|
||||
android:id="@id/mi_title"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_margin="@dimen/mi_baseline"
|
||||
android:fontFamily="sans-serif-light"
|
||||
android:gravity="center"
|
||||
android:textAppearance="@style/TextAppearance.AppCompat.Display1"
|
||||
tools:ignore="UnusedAttribute"
|
||||
tools:text="Lorem ipsum" />
|
||||
|
||||
<TextView
|
||||
android:id="@id/mi_description"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_margin="@dimen/mi_baseline"
|
||||
android:gravity="center"
|
||||
android:textAppearance="@style/TextAppearance.AppCompat.Body1"
|
||||
tools:text="Lorem ipsum dolor sit amet, consectetur, adipisci velit, …" />
|
||||
|
||||
<ImageView
|
||||
android:id="@id/mi_image"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center"
|
||||
android:layout_margin="@dimen/mi_baseline"
|
||||
android:gravity="center"
|
||||
tools:ignore="ContentDescription"
|
||||
android:paddingBottom="@dimen/mi_pager_margin_bottom"
|
||||
tools:src="@drawable/tutorial_queue_swipe_up" />
|
||||
|
||||
</LinearLayout>
|
||||
|
|
@ -231,7 +231,7 @@
|
|||
<string name="label_storage">Storage</string>
|
||||
<string name="open_playing_queue_instruction">Swipe the card in the now playing screen up to reveal the full playing queue.</string>
|
||||
<string name="rearrange_playing_queue_instruction">Rearrange the playing queue by dragging a song from its track number.</string>
|
||||
<string name="storage_permission_explaination">The storage permission is required for Phonograph to read your music library.</string>
|
||||
<string name="storage_permission_explaination">Phonograph will now ask you to grant the storage permission. The permission is required in order to read your music library.</string>
|
||||
<string name="library">Library</string>
|
||||
<string name="folders">Folders</string>
|
||||
<string name="saved_playlist_to">Saved playlist to %s.</string>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue