回答:
ほとんどの根ざした携帯電話でこれを行うことができるアプリが市場にあります。フジツボはこれでかなり人気があり、人々はそれを好むようです。実際のところ、アプリの最初のレビューは、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
}