Blame view
android/PromoterDemo/src/com/example/promoterdemo/MainActivity.java
874 Bytes
d1683fe9a
|
1 |
package com.example.promoterdemo; |
5c63a6443
|
2 |
import android.app.Activity; |
d1683fe9a
|
3 |
import android.os.Bundle; |
79b86efd3
|
4 |
import android.util.Log; |
d1683fe9a
|
5 6 7 |
import android.view.View; import android.view.View.OnClickListener; import android.widget.TextView; |
f8e87ba3f
|
8 |
import com.gumptech.promoter.util.Constant; |
5c63a6443
|
9 |
import com.gumptech.promoter.Entrance; |
d1683fe9a
|
10 11 12 13 14 15 16 |
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); |
79b86efd3
|
17 |
Log.d("MainActivity", "VERSION_CODE="+Constant.VERSION_CODE); |
d1683fe9a
|
18 19 20 21 22 |
} @Override public void onClick(View v) { // TODO Auto-generated method stub |
a1fdd2e7b
|
23 |
Entrance.DoPromoter("1545402", "10022", "", "", this); |
5c63a6443
|
24 |
|
d1683fe9a
|
25 26 |
} } |