- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我为 Wi-Fi 创建了一个 brodcastReceiver,一切正常,除了,当我午餐应用程序时,broadcastreceiver 开始直接扫描,我无法停止它,即使我离开应用。我试图从主要 Activity 中控制广播接收器,但似乎存在问题。谁能看看我的代码,如果可能的话,告诉我可能是什么问题。
提前谢谢你。
PS :当点击按钮时,toasts起作用,但对广播接收者没有影响。
我正在 brodcastreceiver 中使用午餐服务,它会对问题产生影响吗?
**EDIT**
这是我的 MainActivity
public class MainActivity extends Activity {
int newRssi;
List<String> listDebitDistance = new ArrayList<String>();
WifiManager wifi;
private final BroadcsatReceiverMnager broad = new BroadcsatReceiverMnager();
ArrayList<int[]> listCursorReçue = new ArrayList<int[]>();
IntentFilter rssiFilter = new IntentFilter(WifiManager.SCAN_RESULTS_AVAILABLE_ACTION);
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
/**
* This method enables the Broadcast receiver registered in the AndroidManifest file.
* @param view
*/
public void enableBroadcastReceiver(View view){
switch (view.getId()){
case R.id.button1 :
super.registerReceiver(broad, new IntentFilter("android.intent.action.BOOT_COMPLETED"));
this.registerReceiver(broad, rssiFilter);
WifiManager wifiMan=(WifiManager)MainActivity.this.getSystemService(Context.WIFI_SERVICE);
wifiMan.startScan();
Toast.makeText(this, "Enabled broadcast receiver", Toast.LENGTH_SHORT).show();
break;
}
}
/**
* This method disables the Broadcast receiver registered in the AndroidManifest file.
* @param view
*/
public void disableBroadcastReceiver(View view){
switch (view.getId()){
case R.id.button2 :
//this.unregisterReceiver(broad); //this gives the exception
unregisterReceiver(broad); //this methode gives the exception too
Toast.makeText(this, "Disabled broadcst receiver", Toast.LENGTH_SHORT).show();
break;
}
}
public void onPause() {
super.onPause();
this.unregisterReceiver(broad);
//S'il y a un appel l'app crash !!! a voir !!!!
}
/**
* Broadcast receiver to update
*/
public void onResume() {
super.onResume();
// BroadcsatReceiverMnager broad = new BroadcsatReceiverMnager();
//Note: Not using RSSI_CHANGED_ACTION because it never calls me back.
WifiManager wifiMan=(WifiManager)MainActivity.this.getSystemService(Context.WIFI_SERVICE);
wifiMan.startScan();
}
}
这是我的 BroadcsatReceiverMnager 类
public class BroadcsatReceiverMnager extends BroadcastReceiver {
int newRssi;
int rssi1 ;
int rssi2;
int rssi3 ;
int rssiOp1=0 ;
int rssiOp2 =0 ;
int rssiOp3=0 ;
WifiManager wifi;
@Override
public void onReceive(Context arg0, Intent arg1) {
Toast.makeText(arg0,"MyTag BroadcsatReceiverMnager "+ "onReceive", Toast.LENGTH_LONG).show();
wifi = (WifiManager)arg0.getSystemService(Context.WIFI_SERVICE);
if(arg1.getAction().equals(WifiManager.SCAN_RESULTS_AVAILABLE_ACTION )){//
List<ScanResult> results = wifi.getScanResults();
Toast.makeText(arg0, "results"+results, Toast.LENGTH_SHORT).show();
rssiOp1 = results.get(0).level;
rssiOp2 = results.get(1).level;
rssiOp3 = results.get(2).level;
}
WifiManager wifiMan=(WifiManager)arg0.getSystemService(Context.WIFI_SERVICE);
wifiMan.startScan();
int newRssi = wifiMan.getConnectionInfo().getRssi();
Toast.makeText(arg0, "BroadcsatReceiverMnager"+newRssi, Toast.LENGTH_SHORT).show();
}
}
最佳答案
如果你想控制你的接收者的注册和注销,根本不要在你的 list 中定义它。正如我在这个 answer 中所说的:
如果您在 list 中注册接收器,接收器的处理程序将在每次相应事件到来时启动。示例:每当您建立连接以向您显示通知时,facebook 的 Messenger 就会启动……或者当您连接以建议更新时,其他应用程序就会启动……换句话说,接收者始终处于注册状态。
在你的例子中,在你的 Activity 中定义接收者,在同一个 Activity 中注册和注销它。
/**
* the intent of communication with the Brodcast receiver
*/
IntentFilter intentFilter = new IntentFilter();
/**
* the BroadcastReceiver
*/
BroadcastReceiver yourBroadcastReceiver = new BroadcsatReceiverMnager ();
在你的 onCreat()
中:
// set the action
intentFilter.addAction("SCAN_RESULTS_AVAILABLE_ACTION");
注册它:
registerReceiver(yourBroadcastReceiver , intentFilter);
取消注册:
unregisterReceiver(yourBroadcastReceiver);
因此,在您的听众中:
/**
* This method enables the Broadcast receiver registered in the AndroidManifest file.
* @param view
*/
public void enableBroadcastReceiver(View view){
switch (view.getId()){
case R.id.button1 :
registerReceiver(yourBroadcastReceiver , intentFilter);
Toast.makeText(this, "Enabled broadcast receiver", Toast.LENGTH_SHORT).show();
break;
}
}
/**
* This method disables the Broadcast receiver registered in the AndroidManifest file.
* @param view
*/
public void disableBroadcastReceiver(View view){
switch (view.getId()){
case R.id.button2 :
unregisterReceiver(yourBroadcastReceiver);
Toast.makeText(this, "Disabled broadcst receiver", Toast.LENGTH_SHORT).show();
break;
}
}
您在评论中最后一个问题的答案:
1/您需要进行扫描以获取一些信息。
2/你只想在主要 Activity 中通过操作(通过 Intent 过滤器)来午餐扫描。
===> 您在此 Activity 中使用接收器:- 在 onResume() 中注册并在 onPause() 中取消注册- 在接收器的 onReceive() 中进行扫描(以及您想对它将返回的数据执行的操作)。
3/您想管理何时激活接收器,何时禁用它:接收器不仅取决于 Activity 的生命周期:===> 然后添加一个按钮来激活或禁用它(注册/注销)。
关于Android BroadcastReceiver : Unable to start and stop BroadcastReceiver, 手动,自动启动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23263163/
我刚刚注意到 align-self 属性的一些值,这是我以前从未见过的。什么是start、end、self-start、self-end,它们与有什么区别>flex-start 和 flex-end?
我见过程序员使用公式 mid = start + (end - start) / 2 而不是使用更简单的公式 mid = (start + end) / 2 用于查找数组或列表中的中间元素。 为什么他
我们已经设置了一个小型 AZURE VM(由 Microsoft 提供的普通 Windows 2012 R2 镜像),其中包含一个轻量级 DEMO 应用程序,该应用程序可以与 SQLExpress 和
我在笔记本电脑上安装了Xampp 3.2.1版,之前MySQL在它上面运行得很好,但突然MySQL停止运行,而阿帕奇和其他公司都在运行。当我点击开始MySQL时,它显示这个错误我使用Windows 1
我希望我能解释清楚。 我有自动生成的代码,我希望用 CSS 覆盖它。 这是我希望覆盖的代码示例: #u1150:hover #u1153-4 p {color: red} 重要提示:此代码中的“u”将
在我的 package.json 中,我有以下脚本 block : "scripts": { "start": "react-scripts start",
https://github.com/lodash/lodash/blob/3.7.0/lodash.src.js#L2781 此代码段 start = start == null 中的 +start
上下文 我一直在阅读有关如何将 TUMBLINGWINDOW 函数与 TIMSTAMP BY 子句一起使用的文档,但似乎找不到有关如何计算包含 TUMBLING WINDOW 和 TIMESTAMP
我正在使用 Grunt 运行 Protractor 端到端测试用例。我有以下三个任务(我使用的是 windows 7 机器) webdriver-stop webdriver-start Protra
我正在创建一个简单的Java程序,它具有在窗口生成器的帮助下构建的GUI。 GUI只包含一个按钮。 单击按钮后,启动一个线程,该线程将无限次打印到随机数,直到再次单击同一按钮将其停止为止。 这是我的代
我一直在摆弄创建一个运行渲染的线程,并且我遇到了这种实现它的方法: Class Main implements Runnable { private Thread thread; private bo
我如何在 StartButton 类中编写一个 touchesBegun 命令,它在场景中调用 start() 任何实例本身? 我知道......可能是 OOP 101。但今天我远远超出了我的范围。
关闭。这个问题需要更多 focused .它目前不接受答案。 想改进这个问题?更新问题,使其仅关注一个问题 editing this post . 8年前关闭。 Improve this questi
我的目标是运行多个进程并保存它们的 ProcessName和 Id供以后使用。这是我的代码 [System.Collections.ArrayList]$startedProcesses = @()
我在 8086 汇编方面没有太多经验,我想知道如果您不写起始标签 (start:) 和该标签的结尾,程序会发生什么 (end start)(围绕执行代码的标签)? 所以我的问题是这个标签是否是执行所必
我在 8086 汇编方面没有太多经验,我想知道如果您不写起始标签 (start:) 和该标签的结尾,程序会发生什么 (end start)(围绕执行代码的标签)? 所以我的问题是这个标签是否是执行所必
我想在另一个脚本的 Start() 之前从一个脚本运行 Start()。是否可以?您可以选择脚本的执行顺序吗? 最佳答案 我不太确定 Start() 但您可以配置 Awake 的脚本执行顺序,OnEn
我有一个来自 Unity 文档页面的示例程序,其中包含 IEnumerator Start() ,如下所示,但我想知道如何才能拥有正常的 void Start() > 在同一个脚本中? 我也尝试添加v
正如标题所说,“从机启动”和“从机启动”有什么区别?当我接受DBA面试时,他问了这个问题,我搜索了google但没有找到答案,有人知道吗? 最佳答案 没有区别.. Slave start; 已弃用,现
我有几十个未记录的表,文档说未记录的表在崩溃或不正常关机后会自动截断。 基于此,我需要在数据库启动后检查一些表,看它们是否为“空”并采取一些措施。 简而言之,我需要在数据库启动后立即执行一个过程。 最
我是一名优秀的程序员,十分优秀!