Billing xml with relevent strings created

pull/14/head
Jimmy Scott 14 years ago
parent eff157c9ab
commit ba2f828821

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 249 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 56 KiB

@ -0,0 +1,183 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<TextView
android:id="@+id/premium_title"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:textSize="24dip"
android:text="@string/premium_billing_title" />
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/premium_description_holder"
android:layout_width="wrap_content"
android:layout_height="0dip"
android:layout_weight="1"
android:background="@drawable/post_it"
android:orientation="vertical"
android:paddingRight="30dip"
android:paddingLeft="30dip"
android:paddingTop="30dip"
android:paddingBottom="70dip" >
<TextView
android:id="@+id/premium_description_title"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="16dip"
android:gravity="left"
android:text="@string/premium_description_header"
android:textColor="@color/dark_blue_theme_color"
android:textSize="24dip" />
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<ImageView
android:layout_height="15dip"
android:layout_width="15dip"
android:src="@drawable/icn_premium_checkmark"
android:layout_gravity="top|left"/>
<TextView
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_gravity="left"
android:text="@string/premium_description_1"
android:textSize="14dip"
android:layout_marginBottom="12dip"
android:textColor="@color/black"/>
</LinearLayout>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<ImageView
android:layout_height="15dip"
android:layout_width="15dip"
android:src="@drawable/icn_premium_checkmark"
android:layout_gravity="top|left"/>
<TextView
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_gravity="left"
android:text="@string/premium_description_2"
android:textSize="14dip"
android:layout_marginBottom="12dip"
android:textColor="@color/black"/>
</LinearLayout>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<ImageView
android:layout_height="15dip"
android:layout_width="15dip"
android:src="@drawable/icn_premium_checkmark"
android:layout_gravity="top|left"/>
<TextView
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_gravity="left"
android:text="@string/premium_description_3"
android:textSize="14dip"
android:layout_marginBottom="12dip"
android:textColor="@color/black"/>
</LinearLayout>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<ImageView
android:layout_height="15dip"
android:layout_width="15dip"
android:src="@drawable/icn_premium_checkmark"
android:layout_gravity="top|left"/>
<TextView
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_gravity="left"
android:text="@string/premium_description_4"
android:textSize="14dip"
android:layout_marginBottom="12dip"
android:textColor="@color/black"/>
</LinearLayout>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<ImageView
android:layout_height="15dip"
android:layout_width="15dip"
android:src="@drawable/icn_premium_checkmark"
android:layout_gravity="top|left"/>
<TextView
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_gravity="left"
android:text="@string/premium_description_5"
android:textSize="14dip"
android:layout_marginBottom="12dip"
android:textColor="@color/black"/>
</LinearLayout>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<ImageView
android:layout_height="15dip"
android:layout_width="15dip"
android:src="@drawable/icn_premium_checkmark"
android:layout_gravity="top|left"/>
<TextView
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_gravity="left"
android:text="@string/premium_description_6"
android:textSize="14dip"
android:layout_marginBottom="12dip"
android:textColor="@color/black"/>
</LinearLayout>
</LinearLayout>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<Button
android:id="@+id/premium_buy_month"
android:layout_width="fill_parent"
android:layout_height="50dip"
android:layout_marginLeft="15dip"
android:layout_marginRight="15dip"
android:layout_marginBottom="15dip"
android:layout_marginTop="0dip"
android:layout_weight="1"
android:background="@drawable/bluebutton"
android:text="@string/premium_buy_month"
android:gravity="center"/>
<Button
android:id="@+id/premium_buy_year"
android:layout_width="fill_parent"
android:layout_height="50dip"
android:layout_marginLeft="15dip"
android:layout_marginRight="15dip"
android:layout_marginBottom="15dip"
android:layout_marginTop="0dip"
android:layout_weight="1"
android:background="@drawable/bluebutton"
android:text="@string/premium_buy_year"
android:gravity="center" />
</LinearLayout>
</LinearLayout>

@ -42,6 +42,7 @@
<color name="widget_header_legacy_start">#fc1c2334</color> <color name="widget_header_legacy_start">#fc1c2334</color>
<color name="widget_header_legacy_end">#fc243455</color> <color name="widget_header_legacy_end">#fc243455</color>
<color name="widget_body_legacy">#fc1c1c1c</color> <color name="widget_body_legacy">#fc1c1c1c</color>
<color name="black">#000</color>
</resources> </resources>

@ -44,4 +44,14 @@
<string name="file_err_copy">Error copying file for attachment</string> <string name="file_err_copy">Error copying file for attachment</string>
<string name="file_err_download">Error downloading file</string> <string name="file_err_download">Error downloading file</string>
<string name="file_err_show">Sorry, the system does not yet support this type of file</string> <string name="file_err_show">Sorry, the system does not yet support this type of file</string>
<string name="premium_billing_title">Astrid Premium</string>
<string name="premium_buy_month">$4.99\n1 month</string>
<string name="premium_buy_year">$39.99\n1 year</string>
<string name="premium_description_header">Do more with Astrid!</string>
<string name="premium_description_1">Attach files to to-dos (pdfs, doc, ppt…)</string>
<string name="premium_description_2">Syncs files with astrid.com</string>
<string name="premium_description_3">Turn emails with attachments into tasks</string>
<string name="premium_description_4">Save voice notes at audio files</string>
<string name="premium_description_5">Preview upcoming features</string>
<string name="premium_description_6">Support the Astrid Team!</string>
</resources> </resources>

Loading…
Cancel
Save