请问在android开发中怎样将蓝牙搜索的设备放在ListView中呢 5

请问在android开发中怎样将蓝牙搜索的设备放在ListView中呢求完整代码... 请问在android开发中怎样将蓝牙搜索的设备放在ListView中呢
求完整代码
展开
 我来答
cztong123321
2015-03-31
知道答主
回答量:6
采纳率:0%
帮助的人:7985
展开全部
public class DeviceListAdapter extends BaseAdapter {
private List<BluetoothDevice> mDeviceList;
private LayoutInflater mLayoutInflater;
private int mLayoutId;

private String pairInfo;

public DeviceListAdapter(Context context, List<BluetoothDevice> deviceList, int layoutId){
this.mDeviceList = deviceList;
this.mLayoutInflater = LayoutInflater.from(context);
this.mLayoutId = layoutId;
}
@Override
public int getCount() {
return mDeviceList.size();
}
@Override
public Object getItem(int position) {
return mDeviceList.get(position);
}
@Override
public long getItemId(int position) {
return mDeviceList.get(position).hashCode();
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
BluetoothDevice bluetoothDevice = mDeviceList.get(position);
Device device = null;
if(null == convertView){
device = new Device();
convertView = mLayoutInflater.inflate(mLayoutId, null);
device.mDeviceNameTV = (TextView) convertView.findViewById(R.id.deviceNameTV);
device.mIsPairTV = (TextView) convertView.findViewById(R.id.isPairTV);
device.mMacAddressTV = (TextView) convertView.findViewById(R.id.marAddressTV);

convertView.setTag(device);
}else {
device = (Device) convertView.getTag();
}
try {
device.mDeviceNameTV.setText(bluetoothDevice.getName());
} catch (Exception e) {
device.mDeviceNameTV.setText("null");
}
if(bluetoothDevice.getBondState() == BluetoothDevice.BOND_BONDED){
pairInfo = "已配对";
}else {
pairInfo = "未配对";
}
device.mIsPairTV.setText(pairInfo);
device.mMacAddressTV.setText(bluetoothDevice.getAddress());

return convertView;
}
}
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式