can anyone provide me a full program in Android for bluetooth transfer between 2 devices?
I have tried their tutorial here: http://developer.android.com/guide/topics/wireless/bluetooth.html but it doesn't help me much since i am still at the discovery phase and the devices are unable to see each other... I would like to see a program top to buttom, the easiest possible one (i have also tried to look into the chat example but it's too complicated);
This was my previous code, which was not discovering anything:
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
context = this;
serviceStarted = false;
mBluetoothAdapter = BluetoothAdapter.getDefaultAdapter();
devices = new ArrayList<String> ();
mReceiver = null;
ActivityHelper.initialize(this);
enter = (Button) findViewById(R.id.enter);
enter.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
// at the first click
if (serviceStarted == false) {
if (mBluetoothAdapter == null) {
// Device does not support Bluetooth
Toast t = Toast.makeText(context, "Bluetooth not supported by the device", Toast.LENGTH_SHORT);
t.setGravity(Gravity.CENTER, 0, 60);
t.show();
return ; // exit
}
devices.clear(); // an empty list of devices, for completion soon
// makes itself discoverable (and automatically enables bluetooth)
Intent discoverableIntent = new Intent(BluetoothAdapter.ACTION_REQUEST_DISCOVERABLE);
discoverableIntent.putExtra(BluetoothAdapter.EXTRA_DISCOVERABLE_DURATION, 30);
startActivityForResult(discoverableIntent, res1);
boolean disc = mBluetoothAdapter.startDiscovery();
if (disc)
Log.d("geo", "Discovery started");
else
Log.d("geo", "Discovery not started");
// discovers other devices into "devices"
mReceiver = new BroadcastReceiver() {
public void onReceive(Context context, Intent intent) {
String action = intent.getAction();
// When discovery finds a device
if (BluetoothDevice.ACTION_FOUND.equals(action)) {
// Get the BluetoothDevice object from the Intent
BluetoothDevice device = intent.getParcelableExtra(BluetoothDevice.EXTRA_DEVICE);
// Add the name and address
devices.add(device.getAddress().toString());
Log.d("geo", "added: " + device.getAddress().toString());
}
}
};
// Register the BroadcastReceiver
IntentFilter filter = new IntentFilter(BluetoothDevice.ACTION_FOUND);
registerReceiver(mReceiver, filter); // Don't forget to unregister during onDestroy
Log.d("geo", "found: " + devices.size());
serviceStarted = true;
/*
Toast t = Toast.makeText(context, "Exchange process started", Toast.LENGTH_SHORT);
t.setGravity(Gravity.CENTER, 0, 60);
t.show();*/
enter.setBackgroundResource(R.drawable.logo_button_pressed);
// before connecting with a device, MUST : cancelDiscover() - for battery issue
}
else {
// disables bluetooth
mBluetoothAdapter.cancelDiscovery();
if (mBluetoothAdapter.isEnabled())
mBluetoothAdapter.disable();
serviceStarted = false;
Toast t = Toast.makeText(context, "Exchange process stopped", Toast.LENGTH_SHORT);
t.setGravity(Gravity.CENTER, 0, 60);
t.show();
enter.setBackgroundResource(R.drawable.logo_button);
}
}
});
// other parts of the method
}