Blame view
android/PromoterDemo/src/com/example/promoterdemo/MainActivity.java
782 Bytes
|
d1683fe9a
|
1 |
package com.example.promoterdemo; |
|
5c63a6443
|
2 |
import android.app.Activity; |
|
d1683fe9a
|
3 4 5 6 |
import android.os.Bundle; import android.view.View; import android.view.View.OnClickListener; import android.widget.TextView; |
|
f8e87ba3f
|
7 |
import com.gumptech.promoter.util.Constant; |
|
5c63a6443
|
8 |
import com.gumptech.promoter.Entrance; |
|
d1683fe9a
|
9 10 11 12 13 14 15 |
public class MainActivity extends Activity implements OnClickListener {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
TextView clickText=(TextView) findViewById(R.id.click_textview);
clickText.setOnClickListener(this);
|
|
d1683fe9a
|
16 17 18 19 20 |
}
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
|
|
a1fdd2e7b
|
21 |
Entrance.DoPromoter("1545402", "10022", "", "", this);
|
|
f8e87ba3f
|
22 |
|
|
5c63a6443
|
23 |
|
|
d1683fe9a
|
24 25 |
} } |