本文整理汇总了Java中com.bmob.pay.tool.BmobPay.init方法的典型用法代码示例。如果您正苦于以下问题:Java BmobPay.init方法的具体用法?Java BmobPay.init怎么用?Java BmobPay.init使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.bmob.pay.tool.BmobPay
的用法示例。
在下文中一共展示了BmobPay.init方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: onCreate
import com.bmob.pay.tool.BmobPay; //导入方法依赖的package包/类
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.about_us);
submit = (Button) findViewById(R.id.submit);//six
updatebtn = (Button) findViewById(R.id.update);
pay = (Button) findViewById(R.id.buttononemonth);//one
pay.setOnClickListener(this);
submit.setOnClickListener(this);
updatebtn.setOnClickListener(this);
username = getIntent().getStringExtra("username");
mContext=this;
BmobPay.init(this, APPID);
sharedPre = getSharedPreferences("config",MODE_PRIVATE);
editor = sharedPre.edit();
price_onemonth=8.0;
price_sixmonth=30.0;
text_one = "拨号授权-一月(8元)";
text_six = "拨号授权-半年(30元)";
//get product name and price
init();
}
示例2: onCreate
import com.bmob.pay.tool.BmobPay; //导入方法依赖的package包/类
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
if (savedInstanceState == null) {
initData();
}
// 接受消息推送 广播 数据 处理相应逻辑
if (BROAD_RECEIVER_ACTION.equals(getIntent().getAction())) {
Bundle bundle = getIntent().getBundleExtra(PushBroadcastReceiver.BROAD_DATA_KEY);
String title = bundle.getString("title");
Log.i(BROAD_RECEIVER_ACTION, title);
}
// 第三方SDK初始化
AVInstallation.getCurrentInstallation().saveInBackground();
PushService.setDefaultPushCallback(this, MainActivity_.class);
FeedbackAgent agent = new FeedbackAgent(this);
agent.sync();
UmengUpdateAgent.update(this);
BmobPay.init(this, Constants.BMOB_APPLICATION_ID);
}
示例3: onCreate
import com.bmob.pay.tool.BmobPay; //导入方法依赖的package包/类
@Override
protected void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
L.e("width:" + ScreenUtils.getScreenHeight(this));
requestWindowFeature(Window.FEATURE_NO_TITLE);
setContentView(R.layout.activity_main);
String currentUserId = UserServiceImpl.getCurrentUserId(this);
if (currentUserId == null || "".equals(currentUserId))//是第一次启动应用
{
gotoGuideActivity();
}
else
{
gotoLoginUI();
}
MyApplication.getInstance().addActivity(this);
BmobPay.init(this, "d846b201d115d30761c967d88ebd773b");//bmob支付组件
}