您的位置:首页 > 移动开发 > Android开发

android-设置蓝牙的可见性

2011-08-02 23:39 405 查看

老规矩。右键取得图片地址,利用下载工具下载这个显示不出来的图片。后缀改为rar即可得到源代码项目。

package zhang.bluetooth;

import android.app.Activity;
import android.bluetooth.BluetoothAdapter;
import android.bluetooth.BluetoothDevice;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.content.IntentFilter;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;

public class bluetooth_02 extends Activity {
@Override
protected void onDestroy() {
// TODO Auto-generated method stub
unregisterReceiver(bluetoothReceiver);
super.onDestroy();
}
private Button set;
private Button scan;
private BluetoothReceiver bluetoothReceiver =null;
private BluetoothAdapter bluetoothAdapter=null;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
set=(Button)findViewById(R.id.set);
scan=(Button)findViewById(R.id.scan);

set.setOnClickListener(new setListener());
IntentFilter intentFilter = new IntentFilter(BluetoothDevice.ACTION_FOUND);
bluetoothReceiver = new BluetoothReceiver();
System.out.println(scan);
scan.setOnClickListener(new scanListener());

}
public class BluetoothReceiver extends BroadcastReceiver{
@Override
public void onReceive(Context context, Intent intent) {
// TODO Auto-generated method stub
String action =intent.getAction();
if(BluetoothDevice.ACTION_FOUND.equals(action)){
BluetoothDevice device=intent.getParcelableExtra(BluetoothDevice.EXTRA_DEVICE);
System.out.println(device.getAddress());
}
}
}
class setListener implements OnClickListener{
@Override
public void onClick(View arg0) {
// TODO Auto-generated method stub
Intent dis=new Intent(BluetoothAdapter.ACTION_REQUEST_DISCOVERABLE);
dis.putExtra(BluetoothAdapter.EXTRA_DISCOVERABLE_DURATION, 500);
startActivity(dis);
}
}
class scanListener implements OnClickListener{

@Override
public void onClick(View arg0) {
// TODO Auto-generated method stub
//与之前的类似
}
}
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: