Answers:
市场上有一些应用程序可以在大多数根电话上执行此操作。藤壶为此很受欢迎,人们似乎很喜欢它。实际上,该应用程序的第一条评论是某人仅使用Ipad就能完成您想做的事情。只需在市场上搜索“藤壶wifi热点”,祝您好运。
为了完整起见,现在让平板电脑连接到即席连接:
wpa_supplicant.conf edit
ctrl_interface=/data/misc/wifi/wpa_supplicant
ctrl_interface_group=1010
update_config=1
ap_scan=2
#added ap_scan=2 so it scans all networks including ad-hoc
#this causes priorities to be ignored below.
#it just goes through the networks one by one.
# this can really slow things down.
#I recommend putting a simple file like this with the ad-hoc network at the top
#on your sdcard and then just copy to /data/misc/wifi directory when needed.
#I sure someone could write a script to backup current and swap in adhoc one.
#added my ad-hoc network.
network={
ssid="YourSSID"
key_mgmt=NONE
#wep_key0 only needed if you use wep. "" if ascii / no "" if hex
wep_key0="1234567890123"
#mode=1 needed to indicate ad-hoc
mode=1
priority=25
}
#normal access point network
network={
ssid="exampleAP"
key_mgmt=NONE
auth_alg=OPEN SHARED
wep_key0=01234567890123456789012345
priority=8
}