Cleanup and minor conflict resolution

pull/14/head
Sam Bosley 14 years ago
parent 6e8331ebd3
commit 73b6025c6b

@ -48,9 +48,8 @@
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"/>
style="@style/TextAppearance.Premium_Billing"/>
</LinearLayout>
<LinearLayout
android:layout_width="fill_parent"
@ -66,9 +65,8 @@
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"/>
style="@style/TextAppearance.Premium_Billing"/>
</LinearLayout>
<LinearLayout
android:layout_width="fill_parent"
@ -84,9 +82,8 @@
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"/>
style="@style/TextAppearance.Premium_Billing"/>
</LinearLayout>
<LinearLayout
android:layout_width="fill_parent"
@ -102,9 +99,8 @@
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"/>
style="@style/TextAppearance.Premium_Billing"/>
</LinearLayout>
<LinearLayout
android:layout_width="fill_parent"
@ -120,9 +116,8 @@
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"/>
style="@style/TextAppearance.Premium_Billing"/>
</LinearLayout>
<LinearLayout
android:layout_width="fill_parent"
@ -138,9 +133,8 @@
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"/>
style="@style/TextAppearance.Premium_Billing"/>
</LinearLayout>
</LinearLayout>

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

@ -437,4 +437,10 @@
<item name="android:layout_marginRight">0dip</item>
</style>
<!-- ========================================================= Premium == -->
<style name="TextAppearance.Premium_Billing">
<item name="android:textSize">14dip</item>
<item name="android:textColor">@android:color/black</item>
</style>
</resources>

@ -69,8 +69,8 @@ public class BillingActivity extends Activity {
}
private void setupButtons() {
buyMonth = (Button) findViewById(R.id.buy_month);
buyYear = (Button) findViewById(R.id.buy_year);
buyMonth = (Button) findViewById(R.id.premium_buy_month);
buyYear = (Button) findViewById(R.id.premium_buy_year);
buyMonth.setEnabled(false);
buyYear.setEnabled(false);

Loading…
Cancel
Save