Android之Intent&BroadcastReceiver
2010-05-31 14:46:00 来源:WEB开发网一、TestAndroid
package ext.owen.test;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
public class TestAndroid extends Activity implements View.OnClickListener{
String str = "ext.owen.test.NEW_BROADCAST";
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
Button btn = (Button)this.findViewById(R.id.btn);
btn.setOnClickListener(this);
}
public void onClick(View v) {
if(v.getId() == R.id.btn) {
Intent intent = new Intent(str);
// intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
this.sendBroadcast(intent);
}
}
}
二、TestBroadcastReceiver
package ext.owen.test;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
public class TestBroadcastReceiver extends BroadcastReceiver {
String str = "ext.owen.test.NEW_BROADCAST";
public void onReceive(Context context, Intent intent) {
String action = intent.getAction();
System.out.println("--------- > >action = " + action);
if(action.equals(str)) {
Intent in = new Intent(context, TestAndroid.class);
in.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
context.startActivity(in);
}
}
}
三、main.xml
< ?xml version="1.0" encoding="utf-8"? >
< LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
Tags:Android Intent BroadcastReceiver
编辑录入:coldstar [复制链接] [打 印]- ››Android 当修改一些代码时,使用什么编译命令可以最...
- ››Android 如何添加一个apk使模拟器和真机都编译进去...
- ››Android 修改Camera拍照的默认保存路径
- ››Android 如何修改默认输入法
- ››android开发中finish()和System.exit(0)的区别
- ››Android手势识别简单封装类
- ››android中查看项目数字证书的两种方法
- ››Android中获取IMEI码的办法
- ››android 相机报错 setParameters failed
- ››Android重启运用程序的代码
- ››Android为ListView的Item设置不同的布局
- ››android bitmap与base64字符串的互相转换
更多精彩
赞助商链接