File tree 2 files changed +16
-0
lines changed
src/com/blundell/tutorial/simpleinappbillingv3/ui/base
2 files changed +16
-0
lines changed Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" utf-8" ?>
2
+ <LinearLayout xmlns : android =" http://schemas.android.com/apk/res/android"
3
+ android : layout_width =" match_parent"
4
+ android : layout_height =" match_parent"
5
+ android : gravity =" center"
6
+ android : orientation =" vertical" >
7
+
8
+ <ProgressBar
9
+ android : id =" @+id/progressBar1"
10
+ style =" ?android:attr/progressBarStyleLarge"
11
+ android : layout_width =" wrap_content"
12
+ android : layout_height =" wrap_content" />
13
+
14
+ </LinearLayout >
Original file line number Diff line number Diff line change 7
7
import com .android .vending .billing .util .IabHelper .OnIabPurchaseFinishedListener ;
8
8
import com .android .vending .billing .util .IabHelper .OnIabSetupFinishedListener ;
9
9
import com .blundell .tutorial .simpleinappbillingv3 .AppProperties ;
10
+ import com .blundell .tutorial .simpleinappbillingv3 .R ;
10
11
import com .blundell .tutorial .simpleinappbillingv3 .domain .items .Passport ;
11
12
import com .blundell .tutorial .simpleinappbillingv3 .util .Log ;
12
13
@@ -29,6 +30,7 @@ public abstract class PurchaseActivity extends BlundellActivity implements OnIab
29
30
@ Override
30
31
protected void onCreate (Bundle savedInstanceState ) {
31
32
super .onCreate (savedInstanceState );
33
+ setContentView (R .layout .activity_purchase );
32
34
setResult (RESULT_CANCELED );
33
35
34
36
billingHelper = new IabHelper (this , AppProperties .BASE_64_KEY );
You can’t perform that action at this time.
0 commit comments