最新消息:20210816 当前crifan.com域名已被污染,为防止失联,请关注(页面右下角的)公众号

【已解决】为何android中实现了Runnable的进程只运行了一次

Android crifan 5983浏览 0评论

【问题】

折腾:

【记录】Android中创建进程或线程去实现USB设备插入的状态检测

期间,遇到的问题是:

线程只运行了一次,没有重复运行。。

 

【解决过程】

1.参考:

https://developer.android.com/reference/java/lang/Thread.html

去加一下对应的权限:

1
2
3
4
@Override
public void run() {
    // Moves the current Thread into the background
    android.os.Process.setThreadPriority(android.os.Process.THREAD_PRIORITY_BACKGROUND);

看看是否有效果。。。

还是只运行一次。

2.参考:

Why does the thread run only once?

才明白:

run,就是task的主要的运行的函数:

所以,如果你不写while(1),while(true)之类的代码,

那当然只会执行一次了。。。。

3.所以去改为:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
@Override
public void run() {
    // Moves the current Thread into the background
    android.os.Process.setThreadPriority(android.os.Process.THREAD_PRIORITY_BACKGROUND);
 
    //0x0403 / 0x6001: FTDI FT232R UART
    final int ft232rUartVid = 0x0403; //1027
    final int ft232rUartPid = 0x6001; //24577
     
    boolean bNotFoundUsb = true;
    while(bNotFoundUsb)
    {
        //Toast.makeText(getApplicationContext(), "Begin check usb action", 1000).show();
        gLogger.debug("Begin check usb action");
 
        UsbManager manager = (UsbManager) getSystemService(Context.USB_SERVICE);
        HashMap<String, UsbDevice> deviceList = manager.getDeviceList();
        Iterator<UsbDevice> deviceIterator = deviceList.values().iterator();
        while(deviceIterator.hasNext()){
            UsbDevice device = deviceIterator.next();
            int usbVid = device.getVendorId();
            int usbPid = device.getProductId();
            if((usbVid == ft232rUartVid) && (usbPid ==ft232rUartPid) ){
                //Toast.makeText(getApplicationContext(), "Found Usb device: FT232R UART", Toast.LENGTH_LONG).show();
                //Toast.makeText(getApplicationContext(), "Now send message USB_ACTION_ATTACH to activity ", Toast.LENGTH_LONG).show();
                gLogger.debug("Found Usb device: FT232R UART");
                gLogger.debug("Now send message USB_ACTION_ATTACH to activit");
                 
                Message foundUsbDeviceAttachMsg =new Message();
                foundUsbDeviceAttachMsg.what=usb_action.USB_ACTION_ATTACH.getAction();
                mHandler.sendMessage(foundUsbDeviceAttachMsg);
                 
                bNotFoundUsb = false;
 
                break;
            }
            else
            {
                //Toast.makeText(getApplicationContext(), "Found USB VID="+usbVid+" PID=" + usbPid, Toast.LENGTH_LONG).show();
                gLogger.debug("Found USB VID="+usbVid+" PID=" + usbPid);
            }
        }//while(deviceIterator.hasNext()){
         
        try {
            int sleepTimeInMs = 200;
            gLogger.debug("Sleep milliseconds: " + sleepTimeInMs);
            Thread.sleep(sleepTimeInMs);
        } catch (InterruptedException e) {
            // TODO Auto-generated catch block
            //e.printStackTrace();
        }
         
    }//while(bNotFoundUsb)
}//public void run()

然后就可以正常,一直运行了。。。

 

【总结】

此处的thread的run,就类似于嵌入式系统中的main

如果你不写成死循环:

while(1)

while(true)

那么函数执行完了,则线程也就结束了。

当然就只执行一次了。

想要循环执行,则加上对应的

while(1)

while(true)

即可。

转载请注明:在路上 » 【已解决】为何android中实现了Runnable的进程只运行了一次

发表我的评论
取消评论

表情

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址
83 queries in 0.178 seconds, using 22.18MB memory