Posts

Showing posts from 2016

Connect Mobile through Bluetooth Program

Image
Connect Mobile through Bluetooth Program Hello friends, I have searched through out the internet and I found that tutorials on Bluetooth is hardly available. There are tutorials on Bluetooth and that is very hard to understand. This tutorial will help to you to create an android app that can connect to any Mobile device through Bluetooth. And here we go... Follow below steps: 1) In the " MainActivity.cs " file write below code, Include "Bluetooth" header file as " using Android.Bluetooth; " MainActivity.cs file     If you see above code, I have created an abject of class "Receiver". This class is created in the next step.   2) To Listen the Bluetooth connection add " Receiver.cs " file as shown below, Receiver.cs file   3) Now here comes the exciting part of searching the nearby Bluetooth devices and connecting to it. Create another file called " SearchDevice.cs " as shown below, SearchDevice.cs...