蓝牙聊天程序
能够实现2个手机之间通过蓝牙进行聊天。 protected void onCreate(Bundle savedInstanceState) { // TODO Auto-generated method stub super.onCreate(savedInstanceState); setContentView(R.layout.main_activity); findViewById(); buttonListion(); mBluetoothAdapter=BluetoothAdapter.getDefaultAdapter(); if(mBluetoothAdapter==null) { Toast.makeText(context, "没有提供蓝牙通信",Toast.LENGTH_SHORT).show(); } }
用户评论