0

I want my app to look like this :

enter image description here

What I have: enter image description here

Any help would be deeply appreciated!

hysabone.com
  • 2,959
  • 2
  • 15
  • 26
  • https://github.com/rohitksingh/Notely/commit/0f3fc929dac28911cc0f3c494155d15a4c79a45c check this out see if it helps you. give a thumps up if it is helpful. – Rohit Singh Feb 08 '18 at 11:56

2 Answers2

2

You need to change color primary and color primary dark in style.xml where your app theme color code was written

    <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
    <item name="colorPrimary">@color/colorPrimary</item>
    <item name="colorPrimaryDark">@color/colorPrimary</item>
    <item name="colorAccent">@color/colorPrimary</item>

pooja majoka
  • 136
  • 4
  • Thanks for the reply man but I have applied a PNG image as the background and it has a gradient effect in it so it's not a clean look. – hysabone.com Feb 08 '18 at 11:56
1

change from colorPrimaryDark to colorPrimary to all the item in style.xml file.

<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
        <item name="colorPrimary">@color/colorPrimary</item>
        <item name="colorPrimaryDark">@color/colorPrimary</item>
        <item name="colorAccent">@color/colorPrimary</item>
</style>
Yashaswi N P
  • 896
  • 8
  • 15