Implemented Shuffle feature #22, removed track cover from table #21, and started created the Settings Activity #14

This commit is contained in:
amazing-username
2019-03-03 17:55:37 -05:00
parent c6c89a61d9
commit f9b2573785
18 changed files with 607 additions and 24 deletions
+10 -2
View File
@@ -2,6 +2,8 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.mear">
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
@@ -9,6 +11,14 @@
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity
android:name=".SettingsActivity"
android:label="@string/title_activity_settings"
android:parentActivityName=".MainActivity">
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value="com.example.mear.MainActivity"/>
</activity>
<activity
android:name=".MainActivity"
android:label="@string/title_activity_main"
@@ -21,6 +31,4 @@
</activity>
</application>
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
</manifest>