Advertisement
Guest User

Untitled

a guest
Apr 24th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.21 KB | None | 0 0
  1. <resources>
  2.  
  3. <!-- Base application theme. -->
  4. <style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
  5. <!-- Customize your theme here. -->
  6. <item name="colorPrimary">@color/colorPrimary</item>
  7. <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
  8. <item name="colorAccent">@color/colorAccent</item>
  9. </style>
  10.  
  11. <style name="AppTheme.AppBarOverlay" parent="ThemeOverlay.AppCompat.Dark.ActionBar"/>
  12. <style name="AppTheme.PopupOverlay" parent="ThemeOverlay.AppCompat.Light"/>
  13.  
  14. </resources>
  15.  
  16. <?xml version="1.0" encoding="utf-8"?>
  17. <manifest
  18. xmlns:android="http://schemas.android.com/apk/res/android"
  19. package="ir.applinkfinder.workoutsadvisor">
  20.  
  21. <application
  22. android:allowBackup="true"
  23. android:icon="@mipmap/ic_dumbell"
  24. android:label="@string/app_name"
  25. android:supportsRtl="true"
  26. android:theme="@style/AppTheme">
  27. <activity
  28. android:name=".FindWorkoutActivity"
  29. android:label="@string/app_name"
  30. android:theme="@style/AppTheme">
  31. <intent-filter>
  32. <action android:name="android.intent.action.MAIN"/>
  33.  
  34. <category android:name="android.intent.category.LAUNCHER"/>
  35. </intent-filter>
  36. </activity>
  37. </application>
  38.  
  39. </manifest>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement