mirror of
https://github.com/ethauvin/android-about-box.git
synced 2025-04-26 02:57:12 -07:00
Added AboutBox library source code. Implemented IAnalytic and IDialog interfaces for custom usage.
This commit is contained in:
parent
8a88eb2217
commit
8b28ebfb79
56 changed files with 1296 additions and 0 deletions
6
library/src/main/res/values/colors.xml
Normal file
6
library/src/main/res/values/colors.xml
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<color name="colorAccent">#FF4081</color>
|
||||
<color name="colorPrimary">#3F51B5</color>
|
||||
<color name="colorPrimaryDark">#303F9F</color>
|
||||
</resources>
|
15
library/src/main/res/values/strings.xml
Normal file
15
library/src/main/res/values/strings.xml
Normal file
|
@ -0,0 +1,15 @@
|
|||
<resources>
|
||||
<string name="app_name">AboutBox</string>
|
||||
<string name="leave_review">Leave Review</string>
|
||||
<string name="contact_support">Contact Support</string>
|
||||
<string name="try_other_apps">Try Other Apps</string>
|
||||
<string name="version">Version</string>
|
||||
<string name="facebook_label">Facebook</string>
|
||||
<string name="twitter_label">Twitter</string>
|
||||
<string name="web_label">Web</string>
|
||||
<string name="acknowledgment">Acknowledgment</string>
|
||||
<string name="privacy_policy">Privacy Policy</string>
|
||||
<string name="about_screen_title">About</string>
|
||||
<string name="share">Share</string>
|
||||
|
||||
</resources>
|
9
library/src/main/res/values/styles.xml
Normal file
9
library/src/main/res/values/styles.xml
Normal file
|
@ -0,0 +1,9 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
|
||||
<style name="AppTheme.MaterialAboutActivity" parent="Theme.Mal" >
|
||||
<item name="colorPrimary">@color/colorPrimary</item>
|
||||
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
|
||||
<item name="colorAccent">@color/colorAccent</item>
|
||||
</style>
|
||||
</resources>
|
Loading…
Add table
Add a link
Reference in a new issue