I might give you some help but I will not explain all the thing to you. You have to search a little.
If you don't understand something, Google it or search it on google dev website :)
There is a broadcast here BluetoothAdapter.ACTION_STATE_CHANGED
Register that broadcast and look at the documentation to know what in the BroadcastReceiver will tell you if the bluetooth is ON or OFF.
Please don't forget to unregister your receiver when your activity is paused / destroyed.
Because the broadcast will not tell you on each first launch of the activity if the Bluetooth is ON/OFF (because it is only fired when Bluetooth state changed!), you might want to look at this solution to check the Bluetooth connection state on the fly
How to check if bluetooth is enabled programmatically?