PlayPlusRecharge

来源:互联网 发布:孙楠退赛汪涵救场 知乎 编辑:程序博客网 时间:2024/06/14 08:46
package com.soco.ppr;


import android.app.Activity;
import android.content.ComponentName;
import android.content.Intent;
import android.os.Bundle;
import android.os.Handler;
import android.os.Looper;
import android.os.Message;
import android.widget.Toast;


public class PlayPlusRecharge
{
  public static void recharge(Activity a)
  {
    if (a == null) {
      return;
    }
    Bundle bundle = a.getIntent().getExtras();


    if (bundle == null)
    {
      showPrompt(a, "请从游戏家平台中启动应用");
      return;
    }


    Intent intent = new Intent();
    ComponentName componentName = new ComponentName(a.getIntent().getExtras().getString("PACKAGE"), "com.socogame.ppc.recharge.Recharge");
    intent.setComponent(componentName);
    intent.setAction("android.intent.action.MAIN");
    intent.putExtras(bundle);


    a.startActivity(intent);
  }


  private static void showPrompt(Activity a, String str)
  {
    final Activity tmp = a;


    Handler handler = new Handler(Looper.getMainLooper())
    {
      public void handleMessage(Message msg)
      {
        Toast.makeText(tmp, (String)msg.obj, 1).show();
      }
    };
    Message msg = new Message();


    msg.obj = str;


    handler.sendMessage(msg);
  }
}
原创粉丝点击