监听短信+应用安装

package com.example.text017_send;

import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;

public class MainActivity extends Activity {

 @Override
 protected void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.activity_main);
 }
 public void send(View v){
  Intent intent = new Intent();
  intent.setAction("com.phoneix.broadcast");
  intent.putExtra("key", "Hello");
  sendBroadcast(intent);
 }
}

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="${relativePackage}.${activityClass}" >

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="发送广播"
        android:onClick="send" />

</RelativeLayout>

package com.example.text18;

扫描二维码关注公众号,回复: 1024327 查看本文章

import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.util.Log;

//接收自定的广播接收者
public class CustomReceiver extends BroadcastReceiver{

 @Override
 public void onReceive(Context context, Intent intent) {
  Log.e("TAG", "收到自定义的广播了"+intent.getStringExtra("key"));
 }
 

}

猜你喜欢

转载自www.cnblogs.com/feng8026/p/9088205.html