Skip to content

Instantly share code, notes, and snippets.

@AuraLoredana
Created April 5, 2017 19:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AuraLoredana/c099262bc284b9c22076dbf657ed008f to your computer and use it in GitHub Desktop.
Save AuraLoredana/c099262bc284b9c22076dbf657ed008f to your computer and use it in GitHub Desktop.
Values for the Quizz App
<resources>
<!-- Example customization of dimensions originally defined in res/values/dimens.xml
(such as screen margins) for screens with more than 820dp of available width. This
would include 7" and 10" devices in landscape (~960dp and ~1280dp respectively). -->
<dimen name="activity_horizontal_margin">64dp</dimen>
</resources>
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="colorPrimary">#FF4081</color>
<color name="colorPrimaryDark">#ff4081</color>
<color name="colorAccent">#FF4081</color>
</resources>
<resources>
<!-- Default screen margins, per the Android Design guidelines. -->
<dimen name="activity_horizontal_margin">16dp</dimen>
<dimen name="activity_vertical_margin">16dp</dimen>
</resources>
<?xml version="1.0" encoding="utf-8"?>
<resources>
<item name="textview1" type="id" />
<item name="action_settings" type="id" />
<item name="ig1" type="id" />
</resources>
<resources>
<string name="app_name">Quiz App</string>
<string name="pick_date" />
<string name="action_settings">Settings</string>
<string name="name" />
<string name="email" />
<string name="body" />
<string name="formbutton" />
</resources>
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.NoActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
</style>
</resources>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment