diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index 12899427..43d833f1 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -1,7 +1,8 @@ - + @@ -134,6 +135,10 @@ android:label="@string/action_settings" /> + + diff --git a/app/src/main/java/com/kabouzeid/gramophone/dialogs/AboutDialog.java b/app/src/main/java/com/kabouzeid/gramophone/dialogs/AboutDialog.java deleted file mode 100644 index f34cff06..00000000 --- a/app/src/main/java/com/kabouzeid/gramophone/dialogs/AboutDialog.java +++ /dev/null @@ -1,65 +0,0 @@ -package com.kabouzeid.gramophone.dialogs; - -import android.app.Dialog; -import android.content.Context; -import android.content.pm.PackageManager; -import android.os.Bundle; -import android.support.annotation.NonNull; -import android.text.TextUtils; - -import com.afollestad.materialdialogs.MaterialDialog; -import com.kabouzeid.gramophone.R; - -/** - * @author Karim Abou Zeid (kabouzeid), Aidan Follestad (afollestad) - */ -public class AboutDialog extends LeakDetectDialogFragment { - - private static String getCurrentVersionName(@NonNull final Context context) { - String versionName; - try { - versionName = context.getPackageManager().getPackageInfo(context.getPackageName(), 0).versionName; - } catch (PackageManager.NameNotFoundException e) { - return "Unknown"; - } - return versionName; - } - - @NonNull - @Override - public Dialog onCreateDialog(Bundle savedInstanceState) { - return new MaterialDialog.Builder(getActivity()) - .title(getActivity().getResources().getString(R.string.app_name) + " " + getCurrentVersionName(getActivity())) - .iconRes(R.drawable.ic_launcher) - .content(TextUtils.concat(getActivity().getResources().getText(R.string.credits_1), - " ", - getActivity().getResources().getText(R.string.karim_abou_zeid), - ".\n", - getActivity().getResources().getText(R.string.karim_abou_zeid_links), - "\n\n", - getActivity().getResources().getText(R.string.special_thanks_to), - " ", - getActivity().getResources().getText(R.string.aidan_follestad), - ".\n\n", - getActivity().getResources().getText(R.string.credits_3), - " ", - getActivity().getResources().getText(R.string.cookicons), - ".\n\n", - getActivity().getResources().getText(R.string.play_store_illustration_by), - " ", - getActivity().getResources().getText(R.string.maarten_corpel), - "." - ) - ) - .positiveText(android.R.string.ok) - .neutralText(R.string.changelog) - .callback(new MaterialDialog.ButtonCallback() { - @Override - public void onNeutral(MaterialDialog dialog) { - super.onNeutral(dialog); - ChangelogDialog.create().show(getActivity().getSupportFragmentManager(), "CHANGE_LOG_DIALOG"); - } - }) - .build(); - } -} diff --git a/app/src/main/java/com/kabouzeid/gramophone/ui/activities/AboutActivity.java b/app/src/main/java/com/kabouzeid/gramophone/ui/activities/AboutActivity.java new file mode 100644 index 00000000..a64414c0 --- /dev/null +++ b/app/src/main/java/com/kabouzeid/gramophone/ui/activities/AboutActivity.java @@ -0,0 +1,58 @@ +package com.kabouzeid.gramophone.ui.activities; + +import android.content.Context; +import android.content.pm.PackageManager; +import android.os.Bundle; +import android.support.annotation.NonNull; +import android.support.v7.widget.Toolbar; +import android.view.MenuItem; + +import com.kabouzeid.gramophone.R; +import com.kabouzeid.gramophone.ui.activities.base.AbsBaseActivity; + +import butterknife.Bind; +import butterknife.ButterKnife; + +/** + * @author Karim Abou Zeid (kabouzeid) + */ +public class AboutActivity extends AbsBaseActivity { + @Bind(R.id.toolbar) + Toolbar toolbar; + + @Override + protected void onCreate(Bundle savedInstanceState) { + super.onCreate(savedInstanceState); + setContentView(R.layout.activity_about); + setStatusBarTransparent(); + ButterKnife.bind(this); + + toolbar.setBackgroundColor(getThemeColorPrimary()); + setSupportActionBar(toolbar); + //noinspection ConstantConditions + getSupportActionBar().setDisplayHomeAsUpEnabled(true); + + if (shouldColorNavigationBar()) + setNavigationBarThemeColor(); + setStatusBarThemeColor(); + } + + @Override + public boolean onOptionsItemSelected(@NonNull MenuItem item) { + if (item.getItemId() == android.R.id.home) { + onBackPressed(); + return true; + } + return super.onOptionsItemSelected(item); + } + + private static String getCurrentVersionName(@NonNull final Context context) { + String versionName; + try { + versionName = context.getPackageManager().getPackageInfo(context.getPackageName(), 0).versionName; + } catch (PackageManager.NameNotFoundException e) { + return "Unknown"; + } + return versionName; + } +} diff --git a/app/src/main/java/com/kabouzeid/gramophone/ui/activities/MainActivity.java b/app/src/main/java/com/kabouzeid/gramophone/ui/activities/MainActivity.java index 9cd44e0b..8fbb6d46 100644 --- a/app/src/main/java/com/kabouzeid/gramophone/ui/activities/MainActivity.java +++ b/app/src/main/java/com/kabouzeid/gramophone/ui/activities/MainActivity.java @@ -49,7 +49,6 @@ import com.anjlab.android.iab.v3.TransactionDetails; import com.kabouzeid.gramophone.App; import com.kabouzeid.gramophone.R; import com.kabouzeid.gramophone.adapter.PagerAdapter; -import com.kabouzeid.gramophone.dialogs.AboutDialog; import com.kabouzeid.gramophone.dialogs.ChangelogDialog; import com.kabouzeid.gramophone.dialogs.CreatePlaylistDialog; import com.kabouzeid.gramophone.dialogs.SleepTimerDialog; @@ -254,7 +253,7 @@ public class MainActivity extends AbsSlidingMusicPanelActivity new Handler().postDelayed(new Runnable() { @Override public void run() { - new AboutDialog().show(getSupportFragmentManager(), "ABOUT_DIALOG"); + startActivity(new Intent(MainActivity.this, AboutActivity.class)); } }, 300); break; diff --git a/app/src/main/res/drawable-hdpi/ic_attach_money_white_24dp.png b/app/src/main/res/drawable-hdpi/ic_attach_money_white_24dp.png new file mode 100644 index 00000000..7a60257e Binary files /dev/null and b/app/src/main/res/drawable-hdpi/ic_attach_money_white_24dp.png differ diff --git a/app/src/main/res/drawable-hdpi/ic_bug_report_white_24dp.png b/app/src/main/res/drawable-hdpi/ic_bug_report_white_24dp.png new file mode 100644 index 00000000..ce6a4ba1 Binary files /dev/null and b/app/src/main/res/drawable-hdpi/ic_bug_report_white_24dp.png differ diff --git a/app/src/main/res/drawable-hdpi/ic_flag_white_24dp.png b/app/src/main/res/drawable-hdpi/ic_flag_white_24dp.png new file mode 100644 index 00000000..3876b03c Binary files /dev/null and b/app/src/main/res/drawable-hdpi/ic_flag_white_24dp.png differ diff --git a/app/src/main/res/drawable-hdpi/ic_github_circle_white_24dp.png b/app/src/main/res/drawable-hdpi/ic_github_circle_white_24dp.png new file mode 100644 index 00000000..ce905000 Binary files /dev/null and b/app/src/main/res/drawable-hdpi/ic_github_circle_white_24dp.png differ diff --git a/app/src/main/res/drawable-hdpi/ic_google_plus_box_white_24dp.png b/app/src/main/res/drawable-hdpi/ic_google_plus_box_white_24dp.png new file mode 100644 index 00000000..f5c05cd8 Binary files /dev/null and b/app/src/main/res/drawable-hdpi/ic_google_plus_box_white_24dp.png differ diff --git a/app/src/main/res/drawable-hdpi/ic_info_outline_white_24dp.png b/app/src/main/res/drawable-hdpi/ic_info_outline_white_24dp.png new file mode 100644 index 00000000..0932c17c Binary files /dev/null and b/app/src/main/res/drawable-hdpi/ic_info_outline_white_24dp.png differ diff --git a/app/src/main/res/drawable-hdpi/ic_twitter_box_white_24dp.png b/app/src/main/res/drawable-hdpi/ic_twitter_box_white_24dp.png new file mode 100644 index 00000000..55c1cfe1 Binary files /dev/null and b/app/src/main/res/drawable-hdpi/ic_twitter_box_white_24dp.png differ diff --git a/app/src/main/res/drawable-hdpi/ic_web_white_24dp.png b/app/src/main/res/drawable-hdpi/ic_web_white_24dp.png new file mode 100644 index 00000000..5c3aa950 Binary files /dev/null and b/app/src/main/res/drawable-hdpi/ic_web_white_24dp.png differ diff --git a/app/src/main/res/drawable-mdpi/ic_attach_money_white_24dp.png b/app/src/main/res/drawable-mdpi/ic_attach_money_white_24dp.png new file mode 100644 index 00000000..bd77896a Binary files /dev/null and b/app/src/main/res/drawable-mdpi/ic_attach_money_white_24dp.png differ diff --git a/app/src/main/res/drawable-mdpi/ic_bug_report_white_24dp.png b/app/src/main/res/drawable-mdpi/ic_bug_report_white_24dp.png new file mode 100644 index 00000000..2bbb4e29 Binary files /dev/null and b/app/src/main/res/drawable-mdpi/ic_bug_report_white_24dp.png differ diff --git a/app/src/main/res/drawable-mdpi/ic_flag_white_24dp.png b/app/src/main/res/drawable-mdpi/ic_flag_white_24dp.png new file mode 100644 index 00000000..7af6a1fe Binary files /dev/null and b/app/src/main/res/drawable-mdpi/ic_flag_white_24dp.png differ diff --git a/app/src/main/res/drawable-mdpi/ic_github_circle_white_24dp.png b/app/src/main/res/drawable-mdpi/ic_github_circle_white_24dp.png new file mode 100644 index 00000000..ca168c1c Binary files /dev/null and b/app/src/main/res/drawable-mdpi/ic_github_circle_white_24dp.png differ diff --git a/app/src/main/res/drawable-mdpi/ic_google_plus_box_white_24dp.png b/app/src/main/res/drawable-mdpi/ic_google_plus_box_white_24dp.png new file mode 100644 index 00000000..d9c9ec68 Binary files /dev/null and b/app/src/main/res/drawable-mdpi/ic_google_plus_box_white_24dp.png differ diff --git a/app/src/main/res/drawable-mdpi/ic_info_outline_white_24dp.png b/app/src/main/res/drawable-mdpi/ic_info_outline_white_24dp.png new file mode 100644 index 00000000..03cf044b Binary files /dev/null and b/app/src/main/res/drawable-mdpi/ic_info_outline_white_24dp.png differ diff --git a/app/src/main/res/drawable-mdpi/ic_twitter_box_white_24dp.png b/app/src/main/res/drawable-mdpi/ic_twitter_box_white_24dp.png new file mode 100644 index 00000000..e306dc50 Binary files /dev/null and b/app/src/main/res/drawable-mdpi/ic_twitter_box_white_24dp.png differ diff --git a/app/src/main/res/drawable-mdpi/ic_web_white_24dp.png b/app/src/main/res/drawable-mdpi/ic_web_white_24dp.png new file mode 100644 index 00000000..3f044475 Binary files /dev/null and b/app/src/main/res/drawable-mdpi/ic_web_white_24dp.png differ diff --git a/app/src/main/res/drawable-xhdpi/ic_attach_money_white_24dp.png b/app/src/main/res/drawable-xhdpi/ic_attach_money_white_24dp.png new file mode 100644 index 00000000..1cf4a924 Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/ic_attach_money_white_24dp.png differ diff --git a/app/src/main/res/drawable-xhdpi/ic_bug_report_white_24dp.png b/app/src/main/res/drawable-xhdpi/ic_bug_report_white_24dp.png new file mode 100644 index 00000000..5ce17aab Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/ic_bug_report_white_24dp.png differ diff --git a/app/src/main/res/drawable-xhdpi/ic_flag_white_24dp.png b/app/src/main/res/drawable-xhdpi/ic_flag_white_24dp.png new file mode 100644 index 00000000..f9f15612 Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/ic_flag_white_24dp.png differ diff --git a/app/src/main/res/drawable-xhdpi/ic_github_circle_white_24dp.png b/app/src/main/res/drawable-xhdpi/ic_github_circle_white_24dp.png new file mode 100644 index 00000000..4574c68f Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/ic_github_circle_white_24dp.png differ diff --git a/app/src/main/res/drawable-xhdpi/ic_google_plus_box_white_24dp.png b/app/src/main/res/drawable-xhdpi/ic_google_plus_box_white_24dp.png new file mode 100644 index 00000000..8dd45150 Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/ic_google_plus_box_white_24dp.png differ diff --git a/app/src/main/res/drawable-xhdpi/ic_info_outline_white_24dp.png b/app/src/main/res/drawable-xhdpi/ic_info_outline_white_24dp.png new file mode 100644 index 00000000..33ec308a Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/ic_info_outline_white_24dp.png differ diff --git a/app/src/main/res/drawable-xhdpi/ic_twitter_box_white_24dp.png b/app/src/main/res/drawable-xhdpi/ic_twitter_box_white_24dp.png new file mode 100644 index 00000000..f1bdeee0 Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/ic_twitter_box_white_24dp.png differ diff --git a/app/src/main/res/drawable-xhdpi/ic_web_white_24dp.png b/app/src/main/res/drawable-xhdpi/ic_web_white_24dp.png new file mode 100644 index 00000000..95c16843 Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/ic_web_white_24dp.png differ diff --git a/app/src/main/res/drawable-xxhdpi/ic_attach_money_white_24dp.png b/app/src/main/res/drawable-xxhdpi/ic_attach_money_white_24dp.png new file mode 100644 index 00000000..8b77603b Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/ic_attach_money_white_24dp.png differ diff --git a/app/src/main/res/drawable-xxhdpi/ic_bug_report_white_24dp.png b/app/src/main/res/drawable-xxhdpi/ic_bug_report_white_24dp.png new file mode 100644 index 00000000..b98a7e9c Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/ic_bug_report_white_24dp.png differ diff --git a/app/src/main/res/drawable-xxhdpi/ic_flag_white_24dp.png b/app/src/main/res/drawable-xxhdpi/ic_flag_white_24dp.png new file mode 100644 index 00000000..26935301 Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/ic_flag_white_24dp.png differ diff --git a/app/src/main/res/drawable-xxhdpi/ic_github_circle_white_24dp.png b/app/src/main/res/drawable-xxhdpi/ic_github_circle_white_24dp.png new file mode 100644 index 00000000..05bccca0 Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/ic_github_circle_white_24dp.png differ diff --git a/app/src/main/res/drawable-xxhdpi/ic_google_plus_box_white_24dp.png b/app/src/main/res/drawable-xxhdpi/ic_google_plus_box_white_24dp.png new file mode 100644 index 00000000..b6b6a813 Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/ic_google_plus_box_white_24dp.png differ diff --git a/app/src/main/res/drawable-xxhdpi/ic_info_outline_white_24dp.png b/app/src/main/res/drawable-xxhdpi/ic_info_outline_white_24dp.png new file mode 100644 index 00000000..f8e64ad7 Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/ic_info_outline_white_24dp.png differ diff --git a/app/src/main/res/drawable-xxhdpi/ic_twitter_box_white_24dp.png b/app/src/main/res/drawable-xxhdpi/ic_twitter_box_white_24dp.png new file mode 100644 index 00000000..c6e831b0 Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/ic_twitter_box_white_24dp.png differ diff --git a/app/src/main/res/drawable-xxhdpi/ic_web_white_24dp.png b/app/src/main/res/drawable-xxhdpi/ic_web_white_24dp.png new file mode 100644 index 00000000..15fa5d96 Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/ic_web_white_24dp.png differ diff --git a/app/src/main/res/drawable-xxxhdpi/ic_attach_money_white_24dp.png b/app/src/main/res/drawable-xxxhdpi/ic_attach_money_white_24dp.png new file mode 100644 index 00000000..57de5bb8 Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/ic_attach_money_white_24dp.png differ diff --git a/app/src/main/res/drawable-xxxhdpi/ic_bug_report_white_24dp.png b/app/src/main/res/drawable-xxxhdpi/ic_bug_report_white_24dp.png new file mode 100644 index 00000000..5d714c56 Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/ic_bug_report_white_24dp.png differ diff --git a/app/src/main/res/drawable-xxxhdpi/ic_flag_white_24dp.png b/app/src/main/res/drawable-xxxhdpi/ic_flag_white_24dp.png new file mode 100644 index 00000000..6c57703c Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/ic_flag_white_24dp.png differ diff --git a/app/src/main/res/drawable-xxxhdpi/ic_github_circle_white_24dp.png b/app/src/main/res/drawable-xxxhdpi/ic_github_circle_white_24dp.png new file mode 100644 index 00000000..096f5413 Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/ic_github_circle_white_24dp.png differ diff --git a/app/src/main/res/drawable-xxxhdpi/ic_google_plus_box_white_24dp.png b/app/src/main/res/drawable-xxxhdpi/ic_google_plus_box_white_24dp.png new file mode 100644 index 00000000..3e1d2f71 Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/ic_google_plus_box_white_24dp.png differ diff --git a/app/src/main/res/drawable-xxxhdpi/ic_info_outline_white_24dp.png b/app/src/main/res/drawable-xxxhdpi/ic_info_outline_white_24dp.png new file mode 100644 index 00000000..cb42f367 Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/ic_info_outline_white_24dp.png differ diff --git a/app/src/main/res/drawable-xxxhdpi/ic_twitter_box_white_24dp.png b/app/src/main/res/drawable-xxxhdpi/ic_twitter_box_white_24dp.png new file mode 100644 index 00000000..5b08d1c1 Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/ic_twitter_box_white_24dp.png differ diff --git a/app/src/main/res/drawable-xxxhdpi/ic_web_white_24dp.png b/app/src/main/res/drawable-xxxhdpi/ic_web_white_24dp.png new file mode 100644 index 00000000..d3837be4 Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/ic_web_white_24dp.png differ diff --git a/app/src/main/res/layout/activity_about.xml b/app/src/main/res/layout/activity_about.xml index 7d8aacaf..fcf0b1af 100644 --- a/app/src/main/res/layout/activity_about.xml +++ b/app/src/main/res/layout/activity_about.xml @@ -1,81 +1,52 @@ - + android:layout_height="match_parent" + android:orientation="vertical" + tools:context=".ui.activities.AboutActivity"> - + + + + + android:clipToPadding="false" + android:isScrollContainer="true"> - - - + android:orientation="vertical" + android:padding="16dp"> - + + + android:layout_marginTop="16dp" /> - + - + - + - + - - - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/app/src/main/res/layout/activity_playlist_detail.xml b/app/src/main/res/layout/activity_playlist_detail.xml index 01c5f3dd..d94b68c7 100644 --- a/app/src/main/res/layout/activity_playlist_detail.xml +++ b/app/src/main/res/layout/activity_playlist_detail.xml @@ -11,7 +11,6 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/app/src/main/res/layout/card_author.xml b/app/src/main/res/layout/card_author.xml new file mode 100644 index 00000000..c3d55323 --- /dev/null +++ b/app/src/main/res/layout/card_author.xml @@ -0,0 +1,190 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/app/src/main/res/layout/card_special_thanks.xml b/app/src/main/res/layout/card_special_thanks.xml new file mode 100644 index 00000000..82e1c3f7 --- /dev/null +++ b/app/src/main/res/layout/card_special_thanks.xml @@ -0,0 +1,245 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/app/src/main/res/layout/card_support_development.xml b/app/src/main/res/layout/card_support_development.xml new file mode 100644 index 00000000..4d3ad5af --- /dev/null +++ b/app/src/main/res/layout/card_support_development.xml @@ -0,0 +1,197 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/app/src/main/res/layout/item_grid_card_horizontal.xml b/app/src/main/res/layout/item_grid_card_horizontal.xml index 0f8dae89..0e971ccc 100644 --- a/app/src/main/res/layout/item_grid_card_horizontal.xml +++ b/app/src/main/res/layout/item_grid_card_horizontal.xml @@ -6,8 +6,7 @@ android:layout_marginEnd="8dp" android:layout_marginRight="8dp" android:foreground="?rect_selector" - app:cardBackgroundColor="?cardBackgroundColor" - app:elevation="@dimen/card_elevation"> + app:cardBackgroundColor="?cardBackgroundColor"> diff --git a/app/src/main/res/values/colors.xml b/app/src/main/res/values/colors.xml index 021cff8e..61c330aa 100644 --- a/app/src/main/res/values/colors.xml +++ b/app/src/main/res/values/colors.xml @@ -1,12 +1,11 @@ - - @color/cardview_light_background - @color/grey_700 + #ff4081 + #3f51b5 - - @color/cardview_dark_background - @color/grey_900 + #616161 + #424242 + #212121 \ No newline at end of file diff --git a/app/src/main/res/values/donottranslate.xml b/app/src/main/res/values/donottranslate.xml index da7bfd08..37c52cbe 100644 --- a/app/src/main/res/values/donottranslate.xml +++ b/app/src/main/res/values/donottranslate.xml @@ -1,11 +1,18 @@ Phonograph - Cookicons - Karim Abou Zeid - Google+   Twitter - Aidan Follestad - Maarten Corpel + + Karim Abou Zeid + Aidan Follestad + Maarten Corpel + Michael Cook (Cookicons) + Aleksandar Tešić + + Aachen, Germany + + Google Plus + Twitter + GitHub donation_1 diff --git a/app/src/main/res/values/materialcolors.xml b/app/src/main/res/values/materialcolors.xml deleted file mode 100644 index 8607a11e..00000000 --- a/app/src/main/res/values/materialcolors.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - #ff4081 - #3f51b5 - - #616161 - #424242 - #212121 - - \ No newline at end of file diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml index 3ba872ae..8a5934de 100644 --- a/app/src/main/res/values/strings.xml +++ b/app/src/main/res/values/strings.xml @@ -52,8 +52,6 @@ Go to album Playing queue Save as playlist - Icon by - "Phonograph is a completely free material designed music player by" No results Update artist image Artist image updated. @@ -178,4 +176,24 @@ Support development Thank you! Play Store illustration by + Version + Application + Author + Add to Google Plus circles + Follow on Twitter + Fork on GitHub + Visit website + Report bugs + Report bugs or request new features. + Join the Google Plus community + If you need help or have questions, the Phonograph community on Google Plus is a good place to go. + Translate + Help translating Phonograph to your native language. + Donate + If you think I deserve to get paid for my work, you can leave me a few dollars here. + For the theme engine and some other great stuff. + For the pretty material app icon. + For making the Play Store illustration and the empty album cover. + For helping me with the design. + Website diff --git a/app/src/main/res/values/styles_parents.xml b/app/src/main/res/values/styles_parents.xml index 56f760fa..af03a3be 100644 --- a/app/src/main/res/values/styles_parents.xml +++ b/app/src/main/res/values/styles_parents.xml @@ -8,15 +8,14 @@ true - @color/music_controller_container_color_dark - + @color/cardview_dark_background @drawable/round_selector_dark @drawable/rect_selector_dark @color/cardview_dark_background - @color/default_bar_color_dark + @color/grey_900 @color/md_divider_white @color/secondary_text_default_material_dark @@ -37,14 +36,14 @@ false - @color/music_controller_container_color + @color/cardview_light_background @drawable/round_selector @drawable/rect_selector @color/cardview_light_background - @color/default_bar_color + @color/grey_700 @color/md_divider_black @color/secondary_text_default_material_light