2018-08-30 09:29:30 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2018-11-05 13:53:07 +00:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2018-08-30 09:29:30 +00:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2018-09-09 19:44:46 +00:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2018-08-30 09:29:30 +00:00
|
|
|
android:layout_width="match_parent"
|
2018-11-05 13:53:07 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical"
|
|
|
|
tools:ignore="MissingPrefix">
|
2018-08-30 09:29:30 +00:00
|
|
|
|
2018-09-09 19:44:46 +00:00
|
|
|
<LinearLayout
|
2018-12-04 15:34:26 +00:00
|
|
|
android:id="@+id/userInfoContainer"
|
2018-08-30 09:29:30 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2018-11-05 13:53:07 +00:00
|
|
|
android:orientation="horizontal"
|
2018-12-04 15:34:26 +00:00
|
|
|
android:paddingStart="16dp"
|
2018-11-05 13:53:07 +00:00
|
|
|
android:paddingTop="16dp"
|
2018-12-04 15:34:26 +00:00
|
|
|
android:paddingEnd="16dp"
|
2018-11-05 13:53:07 +00:00
|
|
|
android:paddingBottom="16dp">
|
2018-09-09 19:44:46 +00:00
|
|
|
|
2018-11-05 13:53:07 +00:00
|
|
|
<code.name.monkey.retromusic.views.CircularImageView
|
2018-12-04 15:34:26 +00:00
|
|
|
android:id="@+id/userImage"
|
2018-11-05 13:53:07 +00:00
|
|
|
android:layout_width="48dp"
|
|
|
|
android:layout_height="48dp"
|
|
|
|
android:layout_weight="0"
|
|
|
|
app:civ_border="false" />
|
|
|
|
|
|
|
|
<LinearLayout
|
2018-09-09 19:44:46 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2018-11-28 05:37:10 +00:00
|
|
|
android:layout_gravity="center_vertical"
|
2018-12-04 15:34:26 +00:00
|
|
|
android:layout_weight="1"
|
2018-11-28 05:37:10 +00:00
|
|
|
android:gravity="center_vertical"
|
2018-12-04 15:34:26 +00:00
|
|
|
android:orientation="vertical"
|
|
|
|
android:paddingStart="12dp"
|
|
|
|
android:paddingEnd="12dp">
|
2018-11-05 13:53:07 +00:00
|
|
|
|
|
|
|
<code.name.monkey.appthemehelper.common.views.ATEPrimaryTextView
|
2018-12-04 15:34:26 +00:00
|
|
|
android:id="@+id/titleWelcome"
|
2018-11-05 13:53:07 +00:00
|
|
|
style="@style/SubTitleTextAppearance"
|
2018-12-04 15:34:26 +00:00
|
|
|
android:padding="0dp" />
|
2018-11-05 13:53:07 +00:00
|
|
|
|
|
|
|
<code.name.monkey.appthemehelper.common.views.ATESecondaryTextView
|
|
|
|
android:id="@+id/text"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:alpha="0.75"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:text="@string/lets_play_something" />
|
2018-09-09 19:44:46 +00:00
|
|
|
|
2018-11-05 13:53:07 +00:00
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<code.name.monkey.retromusic.views.IconImageView
|
2018-12-04 15:34:26 +00:00
|
|
|
android:id="@+id/actionSettings"
|
2018-11-05 13:53:07 +00:00
|
|
|
android:layout_width="wrap_content"
|
2018-09-23 10:04:43 +00:00
|
|
|
android:layout_height="wrap_content"
|
2018-11-05 13:53:07 +00:00
|
|
|
android:background="?roundSelector"
|
2018-09-23 10:04:43 +00:00
|
|
|
android:gravity="center_vertical"
|
2018-11-05 13:53:07 +00:00
|
|
|
android:padding="12dp"
|
2018-09-23 10:04:43 +00:00
|
|
|
android:textAllCaps="false"
|
2018-11-05 13:53:07 +00:00
|
|
|
app:srcCompat="@drawable/ic_settings_white_24dp" />
|
|
|
|
</LinearLayout>
|
2018-12-12 21:02:14 +00:00
|
|
|
|
|
|
|
<code.name.monkey.retromusic.views.MaterialButtonTextColor
|
|
|
|
android:id="@+id/actionFolders"
|
|
|
|
style="@style/Widget.MaterialComponents.Button.TextButton.Icon"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:text="@string/folders"
|
|
|
|
android:textAllCaps="false"
|
|
|
|
android:textColor="?android:attr/textColorPrimary"
|
|
|
|
app:icon="@drawable/ic_folder_white_24dp"
|
|
|
|
app:iconPadding="12dp"
|
|
|
|
app:iconTint="?iconColor"
|
|
|
|
app:rippleColor="?iconColor" />
|
|
|
|
|
|
|
|
<code.name.monkey.retromusic.views.MaterialButtonTextColor
|
|
|
|
android:id="@+id/actionEqualizer"
|
|
|
|
style="@style/Widget.MaterialComponents.Button.TextButton.Icon"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:text="@string/equalizer"
|
|
|
|
android:textAllCaps="false"
|
|
|
|
android:textColor="?android:attr/textColorPrimary"
|
|
|
|
app:icon="@drawable/ic_equalizer_white_24dp"
|
|
|
|
app:iconPadding="12dp"
|
|
|
|
app:iconTint="?iconColor"
|
|
|
|
app:rippleColor="?iconColor" />
|
|
|
|
|
2018-12-04 15:34:26 +00:00
|
|
|
<code.name.monkey.retromusic.views.MaterialButtonTextColor
|
|
|
|
android:id="@+id/actionSleepTimer"
|
2018-11-05 13:53:07 +00:00
|
|
|
style="@style/Widget.MaterialComponents.Button.TextButton.Icon"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:text="@string/action_sleep_timer"
|
|
|
|
android:textAllCaps="false"
|
|
|
|
android:textColor="?android:attr/textColorPrimary"
|
|
|
|
app:icon="@drawable/ic_timer_white_24dp"
|
|
|
|
app:iconPadding="12dp"
|
|
|
|
app:iconTint="?iconColor"
|
|
|
|
app:rippleColor="?iconColor" />
|
2018-09-09 19:44:46 +00:00
|
|
|
|
2018-12-12 21:02:14 +00:00
|
|
|
<code.name.monkey.retromusic.views.MaterialButtonTextColor
|
|
|
|
android:id="@+id/actionShare"
|
|
|
|
style="@style/Widget.MaterialComponents.Button.TextButton.Icon"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:text="@string/action_share"
|
|
|
|
android:textAllCaps="false"
|
|
|
|
android:textColor="?android:attr/textColorPrimary"
|
|
|
|
app:icon="@drawable/ic_share_white_24dp"
|
|
|
|
app:iconPadding="12dp"
|
|
|
|
app:iconTint="?iconColor"
|
|
|
|
app:rippleColor="?iconColor" />
|
|
|
|
|
|
|
|
<code.name.monkey.retromusic.views.MaterialButtonTextColor
|
|
|
|
android:id="@+id/actionBugReport"
|
|
|
|
style="@style/Widget.MaterialComponents.Button.TextButton.Icon"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:text="@string/report_bug"
|
|
|
|
android:textAllCaps="false"
|
|
|
|
android:textColor="?android:attr/textColorPrimary"
|
|
|
|
app:icon="@drawable/ic_bug_report_white_24dp"
|
|
|
|
app:iconPadding="12dp"
|
|
|
|
app:iconTint="?iconColor"
|
|
|
|
app:rippleColor="?iconColor" />
|
|
|
|
|
2018-12-04 15:34:26 +00:00
|
|
|
<code.name.monkey.retromusic.views.MaterialButtonTextColor
|
|
|
|
android:id="@+id/actionAbout"
|
2018-11-05 13:53:07 +00:00
|
|
|
style="@style/Widget.MaterialComponents.Button.TextButton.Icon"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:text="@string/action_about"
|
|
|
|
android:textAllCaps="false"
|
|
|
|
android:textColor="?android:attr/textColorPrimary"
|
|
|
|
app:icon="@drawable/ic_help_white_24dp"
|
|
|
|
app:iconPadding="12dp"
|
|
|
|
app:iconTint="?iconColor"
|
|
|
|
app:rippleColor="?iconColor" />
|
2018-09-09 19:44:46 +00:00
|
|
|
|
2018-12-04 15:34:26 +00:00
|
|
|
<code.name.monkey.retromusic.views.MaterialButtonTextColor
|
|
|
|
android:id="@+id/actionRate"
|
2018-11-05 13:53:07 +00:00
|
|
|
style="@style/Widget.MaterialComponents.Button.TextButton.Icon"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:text="@string/rate_app"
|
|
|
|
android:textAllCaps="false"
|
|
|
|
android:textColor="?android:attr/textColorPrimary"
|
|
|
|
app:icon="@drawable/ic_star_white_24dp"
|
|
|
|
app:iconPadding="12dp"
|
|
|
|
app:iconTint="?iconColor"
|
|
|
|
app:rippleColor="?iconColor" />
|
2018-09-09 19:44:46 +00:00
|
|
|
|
2018-12-12 21:02:14 +00:00
|
|
|
<code.name.monkey.retromusic.views.MaterialButtonTextColor
|
|
|
|
android:id="@+id/actionBuyPro"
|
|
|
|
style="@style/Widget.MaterialComponents.Button.TextButton.Icon"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:text="@string/buy_pro"
|
|
|
|
android:textAllCaps="false"
|
|
|
|
android:textColor="?android:attr/textColorPrimary"
|
|
|
|
app:icon="@drawable/ic_card_giftcard_white_24dp"
|
|
|
|
app:iconPadding="12dp"
|
|
|
|
app:iconTint="?iconColor"
|
|
|
|
app:rippleColor="?iconColor" />
|
2018-08-30 09:29:30 +00:00
|
|
|
|
2018-11-05 13:53:07 +00:00
|
|
|
</LinearLayout>
|