我有一个调用广播接收器的Activity。广播接收器等待并收听GPS。当监听器获得新点时,我想将该新点发送给Activity。如何将数据从广播接收器发送到活动?
我的Activity中需要一个侦听器,等待来自Broadcast Receiver的响应。我怎么能这样做?
答案 0 :(得分:22)
您可以通过活动致电接收器。如果您不想在活动中添加接收器的逻辑,则可以使用抽象接收器。
你抽象接收者:
public abstract class SmsReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
//Add you receiver logic here
...
...
onNewPosition();
}
protected abstract void onNewPosition();
}
在您的活动中:
public class MyActivity extends Activity {
private smsReceiver smsReceiver;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.map_one_position);
smsReceiver = new smsReceiver() {
// this code is call asyncrously from the receiver
@Override
protected void onNewPosition() {
//Add your activty logic here
}
};
IntentFilter intentFilter = new IntentFilter("android.provider.Telephony.SMS_RECEIVED");
intentFilter.setPriority(999);
this.registerReceiver(smsReceiver, intentFilter);
}
@Override
protected void onPause() {
super.onPause();
this.unregisterReceiver(this.smsReceiver);
}
}
我希望它能帮到你......
答案 1 :(得分:4)
我为我的接收器定义了一个监听器并在活动中使用它,它现在运行得很好。以后有可能发生任何问题吗?
public interface OnNewLocationListener {
public abstract void onNewLocationReceived(Location location);
}
在我的接收器类中,它被命名为ReceiverPositioningAlarm:
// listener ----------------------------------------------------
static ArrayList<OnNewLocationListener> arrOnNewLocationListener =
new ArrayList<OnNewLocationListener>();
// Allows the user to set an Listener and react to the event
public static void setOnNewLocationListener(
OnNewLocationListener listener) {
arrOnNewLocationListener.add(listener);
}
public static void clearOnNewLocationListener(
OnNewLocationListener listener) {
arrOnNewLocationListener.remove(listener);
}
// This function is called after the new point received
private static void OnNewLocationReceived(Location location) {
// Check if the Listener was set, otherwise we'll get an Exception when
// we try to call it
if (arrOnNewLocationListener != null) {
// Only trigger the event, when we have any listener
for (int i = arrOnNewLocationListener.size() - 1; i >= 0; i--) {
arrOnNewLocationListener.get(i).onNewLocationReceived(
location);
}
}
}
并在我的一个活动的方法中:
OnNewLocationListener onNewLocationListener = new OnNewLocationListener() {
@Override
public void onNewLocationReceived(Location location) {
// do something
// then stop listening
ReceiverPositioningAlarm.clearOnNewLocationListener(this);
}
};
// start listening for new location
ReceiverPositioningAlarm.setOnNewLocationListener(
onNewLocationListener);
答案 2 :(得分:3)
您可以通过以下几种方式进行操作并考虑几个因素。
你可以轮询,这意味着每次使用Handler再次检查 或计时器以查看信息是否已到达。
您可以将广播接收器注册为活动的内部类别,然后您可以在您的活动中调用方法。
考虑到一些考虑因素,BroadCastReciver主要用作监听器,而不是notider这样的内部类,在我看来,最好的做法是与Activities一起使用,对于Services,你可以将它用作独立类并在Manifest中注册它.XML ... 现在您必须记住,在广播广播时,由于方向更改或暂停您的应用的事件,您的活动可能处于非活动状态,因此您可能会错过该活动。我不是听系统事件,而是听我自己的事件,所以我使用粘性广播来防止这个问题。
答案 3 :(得分:0)
只需要在活动中实现广播接收器。使用活动的上下文注册接收者。