在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → android wifi和蓝牙例程

android wifi和蓝牙例程

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:15.97M
  • 下载次数:22
  • 浏览次数:109
  • 发布时间:2020-08-18
  • 实例类别:一般编程问题
  • 发 布 人:robot666
  • 文件格式:.rar
  • 所需积分:2
 

实例介绍

【实例简介】
里面有11个例程,wifi和蓝牙的操作基本里面都有,希望可以帮到大家
【实例截图】
【核心代码】
wifi蓝牙
└── wifi蓝牙
├── Bluetooth
│   ├── AndroidManifest.xml
│   ├── bin
│   │   ├── AndroidManifest.xml
│   │   ├── classes
│   │   │   └── com
│   │   │   └── forward
│   │   │   └── bluetooth
│   │   │   ├── AddDeleteSensorsActivity$1.class
│   │   │   ├── AddDeleteSensorsActivity$2.class
│   │   │   ├── AddDeleteSensorsActivity.class
│   │   │   ├── bluetooth
│   │   │   │   ├── BluetoothCommService$AcceptThread.class
│   │   │   │   ├── BluetoothCommService$ConnectedThread.class
│   │   │   │   ├── BluetoothCommService$ConnectThread.class
│   │   │   │   ├── BluetoothCommService.class
│   │   │   │   ├── BluetoothEnvironment.class
│   │   │   │   ├── ConstantsBluetooth.class
│   │   │   │   ├── data
│   │   │   │   │   ├── Datagram.class
│   │   │   │   │   └── DataTypeConverter.class
│   │   │   │   ├── ScanBTDeviceActivity$1.class
│   │   │   │   ├── ScanBTDeviceActivity$2.class
│   │   │   │   ├── ScanBTDeviceActivity$3.class
│   │   │   │   └── ScanBTDeviceActivity.class
│   │   │   ├── BuildConfig.class
│   │   │   ├── ConstantsEwins.class
│   │   │   ├── DirectionPointerView.class
│   │   │   ├── MainActivity$1.class
│   │   │   ├── MainActivity$2.class
│   │   │   ├── MainActivity.class
│   │   │   ├── R$anim.class
│   │   │   ├── R$attr.class
│   │   │   ├── R$dimen.class
│   │   │   ├── R$drawable.class
│   │   │   ├── R$id.class
│   │   │   ├── R$layout.class
│   │   │   ├── R$menu.class
│   │   │   ├── R$string.class
│   │   │   ├── R$style.class
│   │   │   └── R.class
│   │   ├── classes.dex
│   │   ├── dexedLibs
│   │   │   └── android-support-v4-60b99d582500a30dc0f731209f4d7723.jar
│   │   ├── Ewins.apk
│   │   ├── jarlist.cache
│   │   ├── res
│   │   │   └── crunch
│   │   │   ├── drawable-hdpi
│   │   │   │   ├── background1.png
│   │   │   │   ├── background2.png
│   │   │   │   ├── background3.png
│   │   │   │   ├── blank.png
│   │   │   │   ├── bluetooth_off.png
│   │   │   │   ├── bluetooth_on.png
│   │   │   │   ├── direction_arrow180.png
│   │   │   │   ├── direction_arrow200.png
│   │   │   │   ├── humidity_panel.png
│   │   │   │   ├── humidity_pilar.png
│   │   │   │   ├── ic_launcher.png
│   │   │   │   ├── pressure_panel.png
│   │   │   │   ├── pressure_pointer.png
│   │   │   │   ├── speed100.png
│   │   │   │   ├── speed150.png
│   │   │   │   ├── speed200.png
│   │   │   │   ├── speed300.png
│   │   │   │   ├── temperature_panel.png
│   │   │   │   └── temperature_pilar.png
│   │   │   ├── drawable-mdpi
│   │   │   │   └── ic_launcher.png
│   │   │   ├── drawable-xhdpi
│   │   │   │   └── ic_launcher.png
│   │   │   └── drawable-xxhdpi
│   │   │   └── ic_launcher.png
│   │   └── resources.ap_
│   ├── gen
│   │   └── com
│   │   └── forward
│   │   └── bluetooth
│   │   ├── BuildConfig.java
│   │   └── R.java
│   ├── ic_launcher-web.png
│   ├── libs
│   │   └── android-support-v4.jar
│   ├── proguard-project.txt
│   ├── project.properties
│   ├── res
│   │   ├── anim
│   │   │   ├── direction.xml
│   │   │   └── speed.xml
│   │   ├── drawable-hdpi
│   │   │   ├── background1.png
│   │   │   ├── background2.png
│   │   │   ├── background3.png
│   │   │   ├── blank.png
│   │   │   ├── bluetooth_off.png
│   │   │   ├── bluetooth_on.png
│   │   │   ├── direction_arrow180.png
│   │   │   ├── direction_arrow200.png
│   │   │   ├── humidity_panel.png
│   │   │   ├── humidity_pilar.png
│   │   │   ├── ic_launcher.png
│   │   │   ├── pressure_panel.png
│   │   │   ├── pressure_pointer.png
│   │   │   ├── speed100.png
│   │   │   ├── speed150.png
│   │   │   ├── speed200.png
│   │   │   ├── speed300.png
│   │   │   ├── temperature_panel.png
│   │   │   └── temperature_pilar.png
│   │   ├── drawable-mdpi
│   │   │   └── ic_launcher.png
│   │   ├── drawable-xhdpi
│   │   │   └── ic_launcher.png
│   │   ├── drawable-xxhdpi
│   │   │   └── ic_launcher.png
│   │   ├── layout
│   │   │   ├── activity_main.xml
│   │   │   ├── adddeletesensors.xml
│   │   │   └── device_list.xml
│   │   ├── menu
│   │   │   └── main.xml
│   │   ├── values
│   │   │   ├── bluetooth.xml
│   │   │   ├── dimens.xml
│   │   │   ├── strings.xml
│   │   │   └── styles.xml
│   │   ├── values-sw600dp
│   │   │   └── dimens.xml
│   │   ├── values-sw720dp-land
│   │   │   └── dimens.xml
│   │   ├── values-v11
│   │   │   └── styles.xml
│   │   └── values-v14
│   │   └── styles.xml
│   └── src
│   └── com
│   └── forward
│   └── bluetooth
│   ├── AddDeleteSensorsActivity.java
│   ├── bluetooth
│   │   ├── BluetoothCommService.java
│   │   ├── BluetoothEnvironment.java
│   │   ├── ConstantsBluetooth.java
│   │   ├── data
│   │   │   ├── Datagram.java
│   │   │   └── DataTypeConverter.java
│   │   └── ScanBTDeviceActivity.java
│   ├── ConstantsEwins.java
│   ├── DirectionPointerView.java
│   └── MainActivity.java
├── Bluetooth4_3
│   └── Bluetooth4_3
│   ├── AndroidManifest.xml
│   ├── bin
│   │   ├── AndroidManifest.xml
│   │   ├── Bluetooth4_3.apk
│   │   ├── classes
│   │   │   └── com
│   │   │   └── example
│   │   │   └── bluetooth
│   │   │   └── le
│   │   │   ├── BluetoothLeService$1.class
│   │   │   ├── BluetoothLeService$LocalBinder.class
│   │   │   ├── BluetoothLeService.class
│   │   │   ├── BuildConfig.class
│   │   │   ├── DeviceControlActivity$1.class
│   │   │   ├── DeviceControlActivity$2.class
│   │   │   ├── DeviceControlActivity$3.class
│   │   │   ├── DeviceControlActivity$4.class
│   │   │   ├── DeviceControlActivity.class
│   │   │   ├── DeviceScanActivity$1$1.class
│   │   │   ├── DeviceScanActivity$1.class
│   │   │   ├── DeviceScanActivity$2.class
│   │   │   ├── DeviceScanActivity$LeDeviceListAdapter.class
│   │   │   ├── DeviceScanActivity$ViewHolder.class
│   │   │   ├── DeviceScanActivity.class
│   │   │   ├── MainActivity.class
│   │   │   ├── R$attr.class
│   │   │   ├── R$dimen.class
│   │   │   ├── R$drawable.class
│   │   │   ├── R$id.class
│   │   │   ├── R$layout.class
│   │   │   ├── R$menu.class
│   │   │   ├── R$string.class
│   │   │   ├── R$style.class
│   │   │   ├── R.class
│   │   │   └── SampleGattAttributes.class
│   │   ├── classes.dex
│   │   ├── dexedLibs
│   │   │   ├── android-support-v4-a35b868f25440c845f65d7acf67a8a25.jar
│   │   │   └── android-support-v4-bcd3d5a754016d41cbb9ebf6ce42c0af.jar
│   │   ├── jarlist.cache
│   │   ├── res
│   │   │   ├── drawable-hdpi
│   │   │   │   └── ic_launcher.png
│   │   │   ├── drawable-mdpi
│   │   │   │   └── ic_launcher.png
│   │   │   ├── drawable-xhdpi
│   │   │   │   └── ic_launcher.png
│   │   │   └── drawable-xxhdpi
│   │   │   └── ic_launcher.png
│   │   └── resources.ap_
│   ├── gen
│   │   └── com
│   │   └── example
│   │   └── bluetooth
│   │   └── le
│   │   ├── BuildConfig.java
│   │   └── R.java
│   ├── ic_launcher-web.png
│   ├── libs
│   │   └── android-support-v4.jar
│   ├── proguard-project.txt
│   ├── project.properties
│   ├── res
│   │   ├── drawable-hdpi
│   │   │   └── ic_launcher.png
│   │   ├── drawable-mdpi
│   │   │   └── ic_launcher.png
│   │   ├── drawable-xhdpi
│   │   │   └── ic_launcher.png
│   │   ├── drawable-xxhdpi
│   │   │   └── ic_launcher.png
│   │   ├── layout
│   │   │   ├── actionbar_indeterminate_progress.xml
│   │   │   ├── activity_main.xml
│   │   │   ├── gatt_services_characteristics.xml
│   │   │   └── listitem_device.xml
│   │   ├── menu
│   │   │   ├── gatt_services.xml
│   │   │   └── main.xml
│   │   ├── values
│   │   │   ├── dimens.xml
│   │   │   ├── strings.xml
│   │   │   └── styles.xml
│   │   ├── values-sw600dp
│   │   │   └── dimens.xml
│   │   ├── values-sw720dp-land
│   │   │   └── dimens.xml
│   │   ├── values-v11
│   │   │   └── styles.xml
│   │   └── values-v14
│   │   └── styles.xml
│   └── src
│   └── com
│   └── example
│   └── bluetooth
│   └── le
│   ├── BluetoothLeService.java
│   ├── DeviceControlActivity.java
│   ├── DeviceScanActivity.java
│   ├── MainActivity.java
│   └── SampleGattAttributes.java
├── BluetoothLeGatt
│   ├── AndroidManifest.xml
│   ├── res
│   │   ├── drawable-hdpi
│   │   │   └── ic_launcher.png
│   │   ├── drawable-mdpi
│   │   │   └── ic_launcher.png
│   │   ├── drawable-xhdpi
│   │   │   └── ic_launcher.png
│   │   ├── drawable-xxhdpi
│   │   │   └── ic_launcher.png
│   │   ├── layout
│   │   │   ├── actionbar_indeterminate_progress.xml
│   │   │   ├── gatt_services_characteristics.xml
│   │   │   └── listitem_device.xml
│   │   ├── menu
│   │   │   ├── gatt_services.xml
│   │   │   └── main.xml
│   │   └── values
│   │   └── strings.xml
│   └── src
│   └── com
│   └── example
│   └── bluetooth
│   └── le
│   ├── BluetoothLeService.java
│   ├── DeviceControlActivity.java
│   ├── DeviceScanActivity.java
│   └── SampleGattAttributes.java
├── bluetoothprinter
│   ├── AndroidManifest.xml
│   ├── bin
│   │   ├── AndroidManifest.xml
│   │   ├── bluetoothprinter.apk
│   │   ├── classes
│   │   │   └── com
│   │   │   └── jerry
│   │   │   └── bluetoothprinter
│   │   │   ├── action
│   │   │   │   ├── BluetoothAction.class
│   │   │   │   └── PrintDataAction.class
│   │   │   ├── service
│   │   │   │   ├── BluetoothService$1.class
│   │   │   │   ├── BluetoothService$2.class
│   │   │   │   ├── BluetoothService$3.class
│   │   │   │   ├── BluetoothService.class
│   │   │   │   ├── PrintDataService$1.class
│   │   │   │   └── PrintDataService.class
│   │   │   └── view
│   │   │   ├── BluetoothActivity.class
│   │   │   ├── BuildConfig.class
│   │   │   ├── PrintDataActivity.class
│   │   │   ├── R$attr.class
│   │   │   ├── R$dimen.class
│   │   │   ├── R$drawable.class
│   │   │   ├── R$id.class
│   │   │   ├── R$layout.class
│   │   │   ├── R$menu.class
│   │   │   ├── R$string.class
│   │   │   ├── R$style.class
│   │   │   └── R.class
│   │   ├── classes.dex
│   │   ├── dexedLibs
│   │   │   └── android-support-v4-6f8995dec93eb84c3802971e6cc170a8.jar
│   │   ├── jarlist.cache
│   │   ├── res
│   │   │   └── crunch
│   │   │   ├── drawable-hdpi
│   │   │   │   └── ic_launcher.png
│   │   │   ├── drawable-mdpi
│   │   │   │   └── ic_launcher.png
│   │   │   ├── drawable-xhdpi
│   │   │   │   └── ic_launcher.png
│   │   │   └── drawable-xxhdpi
│   │   │   └── ic_launcher.png
│   │   └── resources.ap_
│   ├── gen
│   │   └── com
│   │   └── jerry
│   │   └── bluetoothprinter
│   │   └── view
│   │   ├── BuildConfig.java
│   │   └── R.java
│   ├── ic_launcher-web.png
│   ├── libs
│   │   └── android-support-v4.jar
│   ├── proguard-project.txt
│   ├── project.properties
│   ├── res
│   │   ├── drawable-hdpi
│   │   │   └── ic_launcher.png
│   │   ├── drawable-mdpi
│   │   │   └── ic_launcher.png
│   │   ├── drawable-xhdpi
│   │   │   └── ic_launcher.png
│   │   ├── drawable-xxhdpi
│   │   │   └── ic_launcher.png
│   │   ├── layout
│   │   │   ├── bluetooth_layout.xml
│   │   │   ├── bonddevice_item.xml
│   │   │   ├── printdata_layout.xml
│   │   │   └── unbonddevice_item.xml
│   │   ├── menu
│   │   │   └── bluetooth.xml
│   │   ├── values
│   │   │   ├── dimens.xml
│   │   │   ├── strings.xml
│   │   │   └── styles.xml
│   │   ├── values-sw600dp
│   │   │   └── dimens.xml
│   │   ├── values-sw720dp-land
│   │   │   └── dimens.xml
│   │   ├── values-v11
│   │   │   └── styles.xml
│   │   └── values-v14
│   │   └── styles.xml
│   └── src
│   └── com
│   └── jerry
│   └── bluetoothprinter
│   ├── action
│   │   ├── BluetoothAction.java
│   │   └── PrintDataAction.java
│   ├── service
│   │   ├── BluetoothService.java
│   │   └── PrintDataService.java
│   └── view
│   ├── BluetoothActivity.java
│   └── PrintDataActivity.java
├── TestWifiConnect
│   ├── AndroidManifest.xml
│   ├── bin
│   │   ├── AndroidManifest.xml
│   │   ├── classes
│   │   │   └── com
│   │   │   └── august
│   │   │   └── testwificonnect
│   │   │   ├── BuildConfig.class
│   │   │   ├── HPaConnector.class
│   │   │   ├── MainActivity.class
│   │   │   ├── R$attr.class
│   │   │   ├── R$dimen.class
│   │   │   ├── R$drawable.class
│   │   │   ├── R$id.class
│   │   │   ├── R$layout.class
│   │   │   ├── R$menu.class
│   │   │   ├── R$string.class
│   │   │   ├── R$style.class
│   │   │   └── R.class
│   │   ├── classes.dex
│   │   ├── dexedLibs
│   │   │   └── android-support-v4-a1104950816a931abd60a8ee4dcfdc5a.jar
│   │   ├── jarlist.cache
│   │   ├── res
│   │   │   └── crunch
│   │   │   ├── drawable-hdpi
│   │   │   │   └── ic_launcher.png
│   │   │   ├── drawable-mdpi
│   │   │   │   └── ic_launcher.png
│   │   │   ├── drawable-xhdpi
│   │   │   │   └── ic_launcher.png
│   │   │   └── drawable-xxhdpi
│   │   │   └── ic_launcher.png
│   │   ├── resources.ap_
│   │   └── TestWifiConnect.apk
│   ├── gen
│   │   └── com
│   │   └── august
│   │   └── testwificonnect
│   │   ├── BuildConfig.java
│   │   └── R.java
│   ├── ic_launcher-web.png
│   ├── libs
│   │   └── android-support-v4.jar
│   ├── proguard-project.txt
│   ├── project.properties
│   ├── res
│   │   ├── drawable-hdpi
│   │   │   └── ic_launcher.png
│   │   ├── drawable-mdpi
│   │   │   └── ic_launcher.png
│   │   ├── drawable-xhdpi
│   │   │   └── ic_launcher.png
│   │   ├── drawable-xxhdpi
│   │   │   └── ic_launcher.png
│   │   ├── layout
│   │   │   └── activity_main.xml
│   │   ├── menu
│   │   │   └── main.xml
│   │   ├── values
│   │   │   ├── dimens.xml
│   │   │   ├── strings.xml
│   │   │   └── styles.xml
│   │   ├── values-sw600dp
│   │   │   └── dimens.xml
│   │   ├── values-sw720dp-land
│   │   │   └── dimens.xml
│   │   ├── values-v11
│   │   │   └── styles.xml
│   │   └── values-v14
│   │   └── styles.xml
│   └── src
│   └── com
│   └── august
│   └── testwificonnect
│   ├── HPaConnector.java
│   └── MainActivity.java
├── WIFIHostDemo
│   ├── AndroidManifest.xml
│   ├── bin
│   │   ├── AndroidManifest.xml
│   │   ├── classes
│   │   │   └── com
│   │   │   └── zhf
│   │   │   └── wifidemo
│   │   │   ├── broadcast
│   │   │   │   ├── WIFIBroadcast$EventHandler.class
│   │   │   │   └── WIFIBroadcast.class
│   │   │   ├── BuildConfig.class
│   │   │   ├── data
│   │   │   │   └── WFOperateEnum.class
│   │   │   ├── R$anim.class
│   │   │   ├── R$attr.class
│   │   │   ├── R$color.class
│   │   │   ├── R$dimen.class
│   │   │   ├── R$drawable.class
│   │   │   ├── R$id.class
│   │   │   ├── R$layout.class
│   │   │   ├── R$menu.class
│   │   │   ├── R$string.class
│   │   │   ├── R$styleable.class
│   │   │   ├── R$style.class
│   │   │   ├── R.class
│   │   │   ├── ui
│   │   │   │   ├── CreateAPProcess.class
│   │   │   │   ├── gifOpenHelper$GifFrame.class
│   │   │   │   ├── gifOpenHelper.class
│   │   │   │   ├── GifView.class
│   │   │   │   ├── WFSearchAnimationFrameLayout$WTSearchAnimationHandler.class
│   │   │   │   ├── WFSearchAnimationFrameLayout.class
│   │   │   │   └── WFSearchProcess.class
│   │   │   └── wifi
│   │   │   ├── MainActivity$1.class
│   │   │   ├── MainActivity$2.class
│   │   │   ├── MainActivity$3.class
│   │   │   ├── MainActivity$4.class
│   │   │   ├── MainActivity$5.class
│   │   │   ├── MainActivity$6.class
│   │   │   ├── MainActivity.class
│   │   │   ├── utils
│   │   │   │   └── WifiAdmin.class
│   │   │   ├── WTAdapter$1.class
│   │   │   ├── WTAdapter$2.class
│   │   │   ├── WTAdapter$ViewHolder.class
│   │   │   └── WTAdapter.class
│   │   ├── classes.dex
│   │   ├── dexedLibs
│   │   │   ├── android-support-v4-121fe9edd0fab29dfabaa5eb53f87426.jar
│   │   │   └── annotations-377aa73f1fa93678ed02d1d28c8de214.jar
│   │   ├── jarlist.cache
│   │   ├── res
│   │   │   ├── drawable-hdpi
│   │   │   │   ├── ap_close.png
│   │   │   │   ├── ap_close_pressed.png
│   │   │   │   ├── back.png
│   │   │   │   ├── back_pressed.png
│   │   │   │   ├── bg.png
│   │   │   │   ├── bg_top_navigation_bar.png
│   │   │   │   ├── blue_icon_update.png
│   │   │   │   ├── cancel_update_btn.png
│   │   │   │   ├── cancel_update_btn_pressed.png
│   │   │   │   ├── confirm_update_btn.png
│   │   │   │   ├── confirm_update_btn_pressed.png
│   │   │   │   ├── ic_launcher.png
│   │   │   │   ├── loading1.png
│   │   │   │   ├── loading2.png
│   │   │   │   ├── loading3.png
│   │   │   │   ├── loading4.png
│   │   │   │   ├── loading5.png
│   │   │   │   ├── loading6.png
│   │   │   │   ├── loading7.png
│   │   │   │   ├── loading8.png
│   │   │   │   ├── loading9.png
│   │   │   │   ├── search_wt.png
│   │   │   │   ├── search_wt_pressed.png
│   │   │   │   ├── wifi_body_ripple.png
│   │   │   │   ├── wt_connect_ok.png
│   │   │   │   ├── wt_create.png
│   │   │   │   ├── wt_create_pressed.png
│   │   │   │   └── wt_load.png
│   │   │   ├── drawable-mdpi
│   │   │   │   └── ic_launcher.png
│   │   │   └── drawable-xxhdpi
│   │   │   └── ic_launcher.png
│   │   ├── resources.ap_
│   │   └── WIFIHostDemo.apk
│   ├── gen
│   │   └── com
│   │   └── zhf
│   │   └── wifidemo
│   │   ├── BuildConfig.java
│   │   └── R.java
│   ├── ic_launcher-web.png
│   ├── libs
│   │   └── android-support-v4.jar
│   ├── proguard-project.txt
│   ├── project.properties
│   ├── res
│   │   ├── anim
│   │   │   ├── list_anim.xml
│   │   │   └── loading_anim.xml
│   │   ├── drawable
│   │   │   ├── corners_bg.xml
│   │   │   ├── corners_update_blue.xml
│   │   │   ├── corners_update_white.xml
│   │   │   ├── corners_update.xml
│   │   │   ├── x_ap_close.xml
│   │   │   ├── x_back.xml
│   │   │   ├── x_cancel_update_btn.xml
│   │   │   ├── x_confirm_update_btn.xml
│   │   │   ├── x_search_wt.xml
│   │   │   └── x_wt_create.xml
│   │   ├── drawable-hdpi
│   │   │   ├── ap_close.png
│   │   │   ├── ap_close_pressed.png
│   │   │   ├── ap.gif
│   │   │   ├── back.png
│   │   │   ├── back_pressed.png
│   │   │   ├── bg.png
│   │   │   ├── bg_top_navigation_bar.png
│   │   │   ├── blue_icon_update.png
│   │   │   ├── cancel_update_btn.png
│   │   │   ├── cancel_update_btn_pressed.png
│   │   │   ├── confirm_update_btn.png
│   │   │   ├── confirm_update_btn_pressed.png
│   │   │   ├── ic_launcher.png
│   │   │   ├── loading1.png
│   │   │   ├── loading2.png
│   │   │   ├── loading3.png
│   │   │   ├── loading4.png
│   │   │   ├── loading5.png
│   │   │   ├── loading6.png
│   │   │   ├── loading7.png
│   │   │   ├── loading8.png
│   │   │   ├── loading9.png
│   │   │   ├── search_wt.png
│   │   │   ├── search_wt_pressed.png
│   │   │   ├── wifi_body_ripple.png
│   │   │   ├── wt_connect_ok.png
│   │   │   ├── wt_create.png
│   │   │   ├── wt_create_pressed.png
│   │   │   └── wt_load.png
│   │   ├── drawable-mdpi
│   │   │   └── ic_launcher.png
│   │   ├── drawable-xxhdpi
│   │   │   └── ic_launcher.png
│   │   ├── layout
│   │   │   ├── wtdialog.xml
│   │   │   ├── wtitem.xml
│   │   │   ├── wt_main.xml
│   │   │   └── wt_search_device_anima.xml
│   │   ├── menu
│   │   │   └── main.xml
│   │   ├── values
│   │   │   ├── attrs.xml
│   │   │   ├── colors.xml
│   │   │   ├── dimens.xml
│   │   │   ├── strings.xml
│   │   │   └── styles.xml
│   │   ├── values-sw600dp
│   │   │   └── dimens.xml
│   │   └── values-sw720dp-land
│   │   └── dimens.xml
│   └── src
│   └── com
│   └── zhf
│   └── wifidemo
│   ├── broadcast
│   │   └── WIFIBroadcast.java
│   ├── data
│   │   └── WFOperateEnum.java
│   ├── ui
│   │   ├── CreateAPProcess.java
│   │   ├── gifOpenHelper.java
│   │   ├── GifView.java
│   │   ├── WFSearchAnimationFrameLayout.java
│   │   └── WFSearchProcess.java
│   └── wifi
│   ├── MainActivity.java
│   ├── utils
│   │   └── WifiAdmin.java
│   └── WTAdapter.java
├── Wifi传输文件
│   ├── WifiHelper.java
│   ├── WifiReceive.java
│   ├── WifiStart.java
│   └── WifiUserList.java
├── wifi信息扫描和rssi值检测
│   ├── AndroidManifest.xml
│   ├── bin
│   │   ├── AndroidManifest.xml
│   │   ├── classes
│   │   │   └── com
│   │   │   └── example
│   │   │   └── testrssi
│   │   │   ├── BuildConfig.class
│   │   │   ├── MainActivity.class
│   │   │   ├── R$attr.class
│   │   │   ├── R$dimen.class
│   │   │   ├── R$drawable.class
│   │   │   ├── R$id.class
│   │   │   ├── R$layout.class
│   │   │   ├── R$menu.class
│   │   │   ├── R$string.class
│   │   │   ├── R$style.class
│   │   │   ├── R.class
│   │   │   ├── WifiExample$mWifiIntentReceiver.class
│   │   │   ├── WifiExample$TimerProcess.class
│   │   │   ├── WifiExample.class
│   │   │   ├── WifiListActivity$MyAdapter.class
│   │   │   └── WifiListActivity.class
│   │   ├── classes.dex
│   │   ├── dexedLibs
│   │   │   └── android-support-v4-da721e97276176b39b5c9b0851e56fa3.jar
│   │   ├── res
│   │   │   ├── drawable-hdpi
│   │   │   │   ├── ic_launcher.png
│   │   │   │   ├── ic_wifi_s0.png
│   │   │   │   ├── ic_wifi_s1.png
│   │   │   │   ├── ic_wifi_s2.png
│   │   │   │   └── ic_wifi_s3.png
│   │   │   ├── drawable-mdpi
│   │   │   │   └── ic_launcher.png
│   │   │   ├── drawable-xhdpi
│   │   │   │   └── ic_launcher.png
│   │   │   └── drawable-xxhdpi
│   │   │   └── ic_launcher.png
│   │   ├── resources.ap_
│   │   └── testrssi.apk
│   ├── gen
│   │   └── com
│   │   └── example
│   │   └── testrssi
│   │   ├── BuildConfig.java
│   │   └── R.java
│   ├── ic_launcher-web.png
│   ├── JavaApk源码说明.txt
│   ├── libs
│   │   └── android-support-v4.jar
│   ├── proguard-project.txt
│   ├── project.properties
│   ├── res
│   │   ├── drawable-hdpi
│   │   │   ├── ic_launcher.png
│   │   │   ├── ic_wifi_s0.png
│   │   │   ├── ic_wifi_s1.png
│   │   │   ├── ic_wifi_s2.png
│   │   │   ├── ic_wifi_s3.png
│   │   │   └── ic_wifi.xml
│   │   ├── drawable-mdpi
│   │   │   └── ic_launcher.png
│   │   ├── drawable-xhdpi
│   │   │   └── ic_launcher.png
│   │   ├── drawable-xxhdpi
│   │   │   └── ic_launcher.png
│   │   ├── layout
│   │   │   ├── activity_main.xml
│   │   │   ├── activity_wifi_example.xml
│   │   │   ├── activity_wifi_list.xml
│   │   │   └── item_wifi_list.xml
│   │   ├── menu
│   │   │   └── main.xml
│   │   ├── values
│   │   │   ├── dimens.xml
│   │   │   ├── strings.xml
│   │   │   └── styles.xml
│   │   ├── values-sw600dp
│   │   │   └── dimens.xml
│   │   ├── values-sw720dp-land
│   │   │   └── dimens.xml
│   │   ├── values-v11
│   │   │   └── styles.xml
│   │   └── values-v14
│   │   └── styles.xml
│   ├── src
│   │   └── com
│   │   └── example
│   │   └── testrssi
│   │   ├── MainActivity.java
│   │   ├── WifiExample.java
│   │   └── WifiListActivity.java
│   └── 点这里查看更多优质源码~.url
├── wifi静态IP设置
│   ├── AndroidManifest.xml
│   ├── bin
│   │   ├── AndroidManifest.xml
│   │   ├── classes
│   │   │   └── com
│   │   │   └── bhj
│   │   │   └── staticwifisetting
│   │   │   ├── BuildConfig.class
│   │   │   ├── R$attr.class
│   │   │   ├── R$dimen.class
│   │   │   ├── R$drawable.class
│   │   │   ├── R$id.class
│   │   │   ├── R$layout.class
│   │   │   ├── R$menu.class
│   │   │   ├── R$string.class
│   │   │   ├── R$style.class
│   │   │   ├── R.class
│   │   │   ├── StaticIpActivity.class
│   │   │   └── StaticIpSet.class
│   │   ├── classes.dex
│   │   ├── dexedLibs
│   │   │   ├── android-support-v4-5335fcd82552ee2c9bf2fd328f1cd2ed.jar
│   │   │   └── annotations-bb3448cf6c2fdb4c60a0e69bad7c93ab.jar
│   │   ├── jarlist.cache
│   │   ├── res
│   │   │   ├── drawable-hdpi
│   │   │   │   └── ic_launcher.png
│   │   │   ├── drawable-mdpi
│   │   │   │   └── ic_launcher.png
│   │   │   └── drawable-xhdpi
│   │   │   └── ic_launcher.png
│   │   ├── resources.ap_
│   │   └── StaticWifiSetting0.1.apk
│   ├── gen
│   │   └── com
│   │   └── bhj
│   │   └── staticwifisetting
│   │   ├── BuildConfig.java
│   │   └── R.java
│   ├── ic_launcher-web.png
│   ├── libs
│   │   └── android-support-v4.jar
│   ├── proguard-project.txt
│   ├── project.properties
│   ├── res
│   │   ├── drawable-hdpi
│   │   │   └── ic_launcher.png
│   │   ├── drawable-mdpi
│   │   │   └── ic_launcher.png
│   │   ├── drawable-xhdpi
│   │   │   └── ic_launcher.png
│   │   ├── layout
│   │   │   └── activity_main.xml
│   │   ├── menu
│   │   │   └── main.xml
│   │   ├── values
│   │   │   ├── dimens.xml
│   │   │   ├── strings.xml
│   │   │   └── styles.xml
│   │   ├── values-sw600dp
│   │   │   └── dimens.xml
│   │   ├── values-sw720dp-land
│   │   │   └── dimens.xml
│   │   ├── values-v11
│   │   │   └── styles.xml
│   │   └── values-v14
│   │   └── styles.xml
│   ├── src
│   │   └── com
│   │   └── bhj
│   │   └── staticwifisetting
│   │   ├── StaticIpActivity.java
│   │   └── StaticIpSet.java
│   ├── 更多源码打包下载.url
│   └── 本源码使用帮助.txt
├── 蓝牙对战游戏
│   └── BlueToothProject
│   ├── AndroidManifest.xml
│   ├── bin
│   │   ├── AndroidManifest.xml
│   │   └── classes
│   │   └── com
│   │   └── himi
│   │   ├── BlueToothServer.class
│   │   ├── BuildConfig.class
│   │   ├── ChoiceDrivesList$1.class
│   │   ├── ChoiceDrivesList$2.class
│   │   ├── ChoiceDrivesList$3.class
│   │   ├── ChoiceDrivesList.class
│   │   ├── ConnectThread.class
│   │   ├── MainActivity$1.class
│   │   ├── MainActivity.class
│   │   ├── MySurfaceView.class
│   │   ├── R$attr.class
│   │   ├── R$drawable.class
│   │   ├── R$id.class
│   │   ├── R$layout.class
│   │   ├── R$string.class
│   │   └── R.class
│   ├── gen
│   │   └── com
│   │   └── himi
│   │   ├── BuildConfig.java
│   │   └── R.java
│   ├── proguard.cfg
│   ├── project.properties
│   ├── res
│   │   ├── drawable-hdpi
│   │   │   └── icon.png
│   │   ├── drawable-ldpi
│   │   │   └── icon.png
│   │   ├── drawable-mdpi
│   │   │   └── icon.png
│   │   ├── layout
│   │   │   └── main.xml
│   │   └── values
│   │   └── strings.xml
│   └── src
│   └── com
│   └── himi
│   ├── ChoiceDrivesList.java
│   ├── ConnectThread.java
│   ├── MainActivity.java
│   └── MySurfaceView.java
└── 蓝牙调试助手
├── AndroidManifest.xml
├── bin
│   ├── AndroidManifest.xml
│   ├── classes
│   │   └── com
│   │   └── example
│   │   └── android
│   │   └── BluetoothChat
│   │   ├── BluetoothChatActivity$1.class
│   │   ├── BluetoothChatActivity$2.class
│   │   ├── BluetoothChatActivity$3.class
│   │   ├── BluetoothChatActivity$4.class
│   │   ├── BluetoothChatActivity.class
│   │   ├── BluetoothChatService$AcceptThread.class
│   │   ├── BluetoothChatService$ConnectedThread.class
│   │   ├── BluetoothChatService$ConnectThread.class
│   │   ├── BluetoothChatService.class
│   │   ├── BuildConfig.class
│   │   ├── DeviceListActivity$1.class
│   │   ├── DeviceListActivity$2.class
│   │   ├── DeviceListActivity$3.class
│   │   ├── DeviceListActivity.class
│   │   ├── R$attr.class
│   │   ├── R$drawable.class
│   │   ├── R$id.class
│   │   ├── R$layout.class
│   │   ├── R$menu.class
│   │   ├── R$string.class
│   │   └── R.class
│   ├── classes.dex
│   ├── dexedLibs
│   │   ├── annotations-53579a14ce9d3ed38ce5ff89aa31cd6c.jar
│   │   ├── annotations-8899042832e529d61285e2b81b5b5221.jar
│   │   └── annotations-dcf1e168887fa7a54bc743af95e12af5.jar
│   ├── jarlist.cache
│   ├── res
│   │   ├── crunch
│   │   │   └── drawable-hdpi
│   │   │   └── app_icon.png
│   │   └── drawable-hdpi
│   │   └── app_icon.png
│   ├── resources.ap_
│   └── 蓝牙调试助手.apk
├── gen
│   └── com
│   └── example
│   └── android
│   └── BluetoothChat
│   ├── BuildConfig.java
│   └── R.java
├── proguard.cfg
├── project.properties
├── res
│   ├── drawable-hdpi
│   │   └── app_icon.png
│   ├── layout
│   │   ├── custom_title.xml
│   │   ├── device_list.xml
│   │   ├── device_name.xml
│   │   ├── main.xml
│   │   └── message.xml
│   ├── menu
│   │   └── option_menu.xml
│   └── values
│   └── strings.xml
└── src
└── com
└── example
└── android
└── BluetoothChat
├── BluetoothChatActivity.java
├── BluetoothChatService.java
└── DeviceListActivity.java

317 directories, 629 files

标签:

实例下载地址

android wifi和蓝牙例程

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警