Merge pull request #3 from dkunin-me/promo-dialog-fixes

Promo dialog fixes
This commit is contained in:
deathbaba 2013-09-09 10:13:24 -07:00
commit 73713a0d88
3 changed files with 26 additions and 22 deletions

View file

@ -43,33 +43,27 @@
android:layout_weight="0"
android:gravity="center"
android:text="@string/mwm_should_be_installed"
android:textColor="@android:color/black"/>
<Button
android:id="@+id/btn_lite"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginBottom="10dp"
android:layout_marginTop="10dp"
android:layout_weight="1"
android:background="@drawable/btn_gray_selector"
android:padding="6dp"
android:text="@string/down_lite"
android:textColor="@android:color/white"
android:textStyle="bold" />
android:textColor="@android:color/black" />
<Button
android:id="@+id/btn_pro"
style="@style/promoButton"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="10dp"
android:layout_marginBottom="10dp"
android:layout_weight="1"
android:background="@drawable/btn_green_selector"
android:text="@string/down_pro" />
<Button
android:id="@+id/btn_lite"
style="@style/promoButton"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="@drawable/btn_gray_selector"
android:padding="6dp"
android:text="@string/down_pro"
android:textColor="@android:color/white"
android:textStyle="bold"/>
android:text="@string/down_lite" />
</LinearLayout>
</ScrollView>

View file

@ -1,9 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="mwm_should_be_installed"><b><font fgcolor="#FF66CC33">MapsWithMe</font></b> app should be installed to view the map.</string>
<string name="mwm_should_be_installed">Offline maps are required to proceed. We have partnered with MapsWithMe to provide you with offline maps of the entire world.\nTo continue please download the app:</string>
<string name="down_lite">Download MapsWithMe Lite (free)</string>
<string name="down_pro">Download MapsWithMe Pro</string>
<string name="url_pro">http://mapswith.me/api_pro</string>
<string name="url_lite">http://mapswith.me/api_lite</string>
<string name="url_pro">http://mapswith.me/get</string>
<string name="url_lite">http://mapswith.me/app</string>
</resources>

10
lib/res/values/styles.xml Normal file
View file

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:android="http://schemas.android.com/apk/res/android">
<style name="promoButton" parent="android:Widget.Button">
<item name="android:layout_marginBottom">10dp</item>
<item name="android:layout_marginTop">10dp</item>
<item name="android:padding">6dp</item>
<item name="android:textColor">@android:color/white</item>
<item name="android:textStyle">bold</item>
</style>
</resources>