1、上极光推送官网 创建应用 获取appKey 以及 应用包名
2、下载
3、使用上图中的查看文档 按照步骤 先做 build.gradle 中的东西 依赖自己加
4、清单文件中 复制相应的代码
5、从下载下来的压缩包中 找出src 复制java类 以及 布局中的第二个按钮
(注意复制MyApplication以后 要在清单文件中 注册 name)
6.MainActivity中代码如下 对应的添加东西
public class MainActivity extends AppCompatActivity implements View.OnClickListener{ //46ee72dcef476d62f878d21a private Button mStopPush; private Button mResumePush; public static boolean isForeground = false; public static final String MESSAGE_RECEIVED_ACTION = "com.example.jpushdemo.MESSAGE_RECEIVED_ACTION"; public static final String KEY_TITLE = "title"; public static final String KEY_MESSAGE = "message"; public static final String KEY_EXTRAS = "extras"; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); mStopPush = (Button)findViewById(R.id.stopPush); mStopPush.setOnClickListener(this); mResumePush = (Button)findViewById(R.id.resumePush); mResumePush.setOnClickListener(this); android.support.v7.app.ActionBar supportActionBar = getSupportActionBar(); supportActionBar.setDisplayHomeAsUpEnabled(true); supportActionBar.setHomeButtonEnabled(true); } @Override public void onClick(View v) { switch (v.getId()) { case R.id.stopPush: JPushInterface.stopPush(getApplicationContext()); break; case R.id.resumePush: JPushInterface.resumePush(getApplicationContext()); break; } } }