• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Search results

  1. P

    Doubts about BroadcastReceiver

    Hi I am using the following code private boolean statusUSB = false; private final BroadcastReceiver usbReceiver = new BroadcastReceiver() { public void onReceive(Context context, Intent intent) { final String action = intent.getAction(); if (action != null) {...
  2. P

    Apps Doubts with serial usb android

    I am using this example https://github.com/mik3y/usb-serial-for-android. to achieve a serial communication of an external device with the Android, the example works, the Android when detecting that an external device is connected to its USB port executes the: public View getView(int position...