Start discovery activity automatically when no devices available (#33)

This commit is contained in:
cpfeiffer 2015-05-06 22:59:31 +02:00
parent 0629d6aa5d
commit 0c039b8a46
1 changed files with 7 additions and 1 deletions

View File

@ -110,7 +110,13 @@ public class ControlCenter extends Activity {
startIntent.setAction(BluetoothCommunicationService.ACTION_START);
startService(startIntent);
requestDeviceInfo();
if (deviceList.isEmpty()) {
// start discovery when no devices are present
startActivity(new Intent(this, DiscoveryActivity.class));
} else {
requestDeviceInfo();
}
}
/**