Wi-Fi Direct (इसे पीयर-टू-पीयर या P2P भी कहा जाता है) की मदद से, आपका ऐप्लिकेशन आस-पास मौजूद डिवाइसों को तेज़ी से ढूंढ सकता है और उनसे इंटरैक्ट कर सकता है. यह सुविधा, ब्लूटूथ की तुलना में ज़्यादा दूरी तक काम करती है.
Wi-Fi Direct (P2P) API की मदद से, ऐप्लिकेशन को आस-पास मौजूद डिवाइसों से कनेक्ट किया जा सकता है. इसके लिए, किसी नेटवर्क या हॉटस्पॉट से कनेक्ट करने की ज़रूरत नहीं होती. अगर आपका ऐप्लिकेशन, सुरक्षित और कम दूरी वाले नेटवर्क का हिस्सा बनने के लिए डिज़ाइन किया गया है, तो वाई-फ़ाई डायरेक्ट, पारंपरिक वाई-फ़ाई ऐड-हॉक नेटवर्किंग की तुलना में ज़्यादा सही विकल्प है. इसकी ये वजहें हैं:
- Wi-Fi Direct में WPA2 एन्क्रिप्शन काम करता है. (कुछ ऐड-हॉक नेटवर्क सिर्फ़ WEP एन्क्रिप्शन के साथ काम करते हैं.)
- डिवाइस, अपनी सेवाओं का ब्रॉडकास्ट कर सकते हैं. इससे अन्य डिवाइसों को, सही पीयर डिवाइस आसानी से मिल जाते हैं.
- यह तय करते समय कि नेटवर्क के लिए ग्रुप का मालिक कौन सा डिवाइस होना चाहिए, Wi-Fi Direct हर डिवाइस की पावर मैनेजमेंट, यूज़र इंटरफ़ेस (यूआई), और सेवा से जुड़ी क्षमताओं की जांच करता है. इसके बाद, इस जानकारी का इस्तेमाल करके उस डिवाइस को चुनता है जो सर्वर की ज़िम्मेदारियों को सबसे असरदार तरीके से पूरा कर सकता है.
- Android में वाई-फ़ाई ऐड-हॉक मोड काम नहीं करता.
इस लेसन में, वाई-फ़ाई पी2पी का इस्तेमाल करके, आस-पास मौजूद डिवाइसों को खोजने और उनसे कनेक्ट करने का तरीका बताया गया है.
ऐप्लिकेशन की अनुमतियां सेट अप करना
Wi-Fi Direct का इस्तेमाल करने के लिए, अपने मेनिफ़ेस्ट में ACCESS_FINE_LOCATION
, CHANGE_WIFI_STATE
, ACCESS_WIFI_STATE
, और INTERNET
अनुमतियां जोड़ें.
अगर आपका ऐप्लिकेशन, Android 13 (एपीआई लेवल 33) या उसके बाद के वर्शन को टारगेट करता है, तो अपने मेनिफ़ेस्ट में NEARBY_WIFI_DEVICES
अनुमति भी जोड़ें. Wi-Fi Direct के लिए इंटरनेट कनेक्शन की ज़रूरत नहीं होती. हालांकि, यह स्टैंडर्ड Java सॉकेट का इस्तेमाल करता है. इसके लिए, INTERNET
अनुमति ज़रूरी है. इसलिए, Wi-Fi Direct का इस्तेमाल करने के लिए, आपको ये अनुमतियां चाहिए:
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.example.android.nsdchat" ... <!-- If your app targets Android 13 (API level 33) or higher, you must declare the NEARBY_WIFI_DEVICES permission. --> <uses-permission android:name="android.permission.NEARBY_WIFI_DEVICES" <!-- If your app derives location information from Wi-Fi APIs, don't include the "usesPermissionFlags" attribute. --> android:usesPermissionFlags="neverForLocation" /> <uses-permission android:required="true" android:name="android.permission.ACCESS_FINE_LOCATION" <!-- If any feature in your app relies on precise location information, don't include the "maxSdkVersion" attribute. --> android:maxSdkVersion="32" /> <uses-permission android:required="true" android:name="android.permission.ACCESS_WIFI_STATE"/> <uses-permission android:required="true" android:name="android.permission.CHANGE_WIFI_STATE"/> <uses-permission android:required="true" android:name="android.permission.INTERNET"/> ...
ऊपर दी गई अनुमतियों के अलावा, इन एपीआई के लिए भी जगह की जानकारी का मोड चालू होना ज़रूरी है:
ब्रॉडकास्ट रिसीवर और पीयर-टू-पीयर मैनेजर सेट अप करना
Wi-Fi Direct का इस्तेमाल करने के लिए, आपको ब्रॉडकास्ट इंटेंट सुनने होंगे. इनसे आपके ऐप्लिकेशन को पता चलता है कि कुछ इवेंट कब हुए हैं. अपने ऐप्लिकेशन में, IntentFilter
को इंस्टैंशिएट करें और इसे यहाँ दी गई बातों को सुनने के लिए सेट करें:
WIFI_P2P_STATE_CHANGED_ACTION
- इससे पता चलता है कि वाई-फ़ाई डायरेक्ट चालू है या नहीं
WIFI_P2P_PEERS_CHANGED_ACTION
- इससे पता चलता है कि मिलते-जुलते कारोबारों की उपलब्ध सूची में बदलाव हुआ है.
WIFI_P2P_CONNECTION_CHANGED_ACTION
-
इससे पता चलता है कि वाई-फ़ाई डायरेक्ट कनेक्टिविटी की स्थिति बदल गई है. Android 10 से पहले के वर्शन में, यह सेटिंग हमेशा चालू रहती थी. अगर आपके ऐप्लिकेशन ने रजिस्ट्रेशन के दौरान इन ब्रॉडकास्ट को पाने के लिए, स्टिकी ब्रॉडकास्ट पर भरोसा किया है, तो जानकारी पाने के लिए, शुरू करने के समय सही
get
तरीके का इस्तेमाल करें. WIFI_P2P_THIS_DEVICE_CHANGED_ACTION
-
इससे पता चलता है कि इस डिवाइस के कॉन्फ़िगरेशन की जानकारी में बदलाव हुआ है. Android 10 से पहले के वर्शन में, यह सेटिंग हमेशा चालू रहती थी. अगर आपके ऐप्लिकेशन ने रजिस्ट्रेशन के दौरान इन ब्रॉडकास्ट को पाने के लिए, स्टिकी ब्रॉडकास्ट पर भरोसा किया है, तो जानकारी पाने के लिए, शुरू करने के समय सही
get
तरीके का इस्तेमाल करें.
Kotlin
private val intentFilter = IntentFilter() ... override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) setContentView(R.layout.main) // Indicates a change in the Wi-Fi Direct status. intentFilter.addAction(WifiP2pManager.WIFI_P2P_STATE_CHANGED_ACTION) // Indicates a change in the list of available peers. intentFilter.addAction(WifiP2pManager.WIFI_P2P_PEERS_CHANGED_ACTION) // Indicates the state of Wi-Fi Direct connectivity has changed. intentFilter.addAction(WifiP2pManager.WIFI_P2P_CONNECTION_CHANGED_ACTION) // Indicates this device's details have changed. intentFilter.addAction(WifiP2pManager.WIFI_P2P_THIS_DEVICE_CHANGED_ACTION) ... }
Java
private final IntentFilter intentFilter = new IntentFilter(); ... @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); // Indicates a change in the Wi-Fi Direct status. intentFilter.addAction(WifiP2pManager.WIFI_P2P_STATE_CHANGED_ACTION); // Indicates a change in the list of available peers. intentFilter.addAction(WifiP2pManager.WIFI_P2P_PEERS_CHANGED_ACTION); // Indicates the state of Wi-Fi Direct connectivity has changed. intentFilter.addAction(WifiP2pManager.WIFI_P2P_CONNECTION_CHANGED_ACTION); // Indicates this device's details have changed. intentFilter.addAction(WifiP2pManager.WIFI_P2P_THIS_DEVICE_CHANGED_ACTION); ... }
onCreate()
तरीके के आखिर में, WifiP2pManager
का इंस्टेंस पाएं और उसके initialize()
तरीके को कॉल करें. यह तरीका, WifiP2pManager.Channel
ऑब्जेक्ट दिखाता है. इसका इस्तेमाल बाद में, अपने ऐप्लिकेशन को Wi-Fi Direct फ़्रेमवर्क से कनेक्ट करने के लिए किया जाएगा.
Kotlin
private lateinit var channel: WifiP2pManager.Channel private lateinit var manager: WifiP2pManager override fun onCreate(savedInstanceState: Bundle?) { ... manager = getSystemService(Context.WIFI_P2P_SERVICE) as WifiP2pManager channel = manager.initialize(this, mainLooper, null) }
Java
Channel channel; WifiP2pManager manager; @Override public void onCreate(Bundle savedInstanceState) { ... manager = (WifiP2pManager) getSystemService(Context.WIFI_P2P_SERVICE); channel = manager.initialize(this, getMainLooper(), null); }
अब एक नई BroadcastReceiver
क्लास बनाएं. इसका इस्तेमाल, सिस्टम के वाई-फ़ाई की स्थिति में होने वाले बदलावों को सुनने के लिए किया जाएगा. onReceive()
तरीके में, ऊपर बताए गए हर बदलाव को मैनेज करने के लिए एक शर्त जोड़ें.
Kotlin
override fun onReceive(context: Context, intent: Intent) { when(intent.action) { WifiP2pManager.WIFI_P2P_STATE_CHANGED_ACTION -> { // Determine if Wi-Fi Direct mode is enabled or not, alert // the Activity. val state = intent.getIntExtra(WifiP2pManager.EXTRA_WIFI_STATE, -1) activity.isWifiP2pEnabled = state == WifiP2pManager.WIFI_P2P_STATE_ENABLED } WifiP2pManager.WIFI_P2P_PEERS_CHANGED_ACTION -> { // The peer list has changed! We should probably do something about // that. } WifiP2pManager.WIFI_P2P_CONNECTION_CHANGED_ACTION -> { // Connection state changed! We should probably do something about // that. } WifiP2pManager.WIFI_P2P_THIS_DEVICE_CHANGED_ACTION -> { (activity.supportFragmentManager.findFragmentById(R.id.frag_list) as DeviceListFragment) .apply { updateThisDevice( intent.getParcelableExtra( WifiP2pManager.EXTRA_WIFI_P2P_DEVICE) as WifiP2pDevice ) } } } }
Java
@Override public void onReceive(Context context, Intent intent) { String action = intent.getAction(); if (WifiP2pManager.WIFI_P2P_STATE_CHANGED_ACTION.equals(action)) { // Determine if Wi-Fi Direct mode is enabled or not, alert // the Activity. int state = intent.getIntExtra(WifiP2pManager.EXTRA_WIFI_STATE, -1); if (state == WifiP2pManager.WIFI_P2P_STATE_ENABLED) { activity.setIsWifiP2pEnabled(true); } else { activity.setIsWifiP2pEnabled(false); } } else if (WifiP2pManager.WIFI_P2P_PEERS_CHANGED_ACTION.equals(action)) { // The peer list has changed! We should probably do something about // that. } else if (WifiP2pManager.WIFI_P2P_CONNECTION_CHANGED_ACTION.equals(action)) { // Connection state changed! We should probably do something about // that. } else if (WifiP2pManager.WIFI_P2P_THIS_DEVICE_CHANGED_ACTION.equals(action)) { DeviceListFragment fragment = (DeviceListFragment) activity.getFragmentManager() .findFragmentById(R.id.frag_list); fragment.updateThisDevice((WifiP2pDevice) intent.getParcelableExtra( WifiP2pManager.EXTRA_WIFI_P2P_DEVICE)); } }
आखिर में, कोड जोड़कर इंटेंट फ़िल्टर और ब्रॉडकास्ट रिसीवर को रजिस्टर करें. ऐसा तब करें, जब आपकी मुख्य गतिविधि चालू हो. गतिविधि के रुकने पर, उन्हें अनरजिस्टर करें.
इसके लिए, onResume()
और onPause()
तरीकों का इस्तेमाल करना सबसे अच्छा है.
Kotlin
/** register the BroadcastReceiver with the intent values to be matched */ public override fun onResume() { super.onResume() receiver = WiFiDirectBroadcastReceiver(manager, channel, this) registerReceiver(receiver, intentFilter) } public override fun onPause() { super.onPause() unregisterReceiver(receiver) }
Java
/** register the BroadcastReceiver with the intent values to be matched */ @Override public void onResume() { super.onResume(); receiver = new WiFiDirectBroadcastReceiver(manager, channel, this); registerReceiver(receiver, intentFilter); } @Override public void onPause() { super.onPause(); unregisterReceiver(receiver); }
पीयर डिस्कवरी शुरू करना
वाई-फ़ाई पी2पी की मदद से आस-पास मौजूद डिवाइसों को खोजना शुरू करने के लिए, discoverPeers()
को कॉल करें. यह तरीका, ये आर्ग्युमेंट लेता है:
- पीयर-टू-पीयर mManager को शुरू करते समय आपको वापस मिला
WifiP2pManager.Channel
WifiP2pManager.ActionListener
को लागू करने का तरीका. इसमें ऐसे तरीके शामिल हैं जिन्हें सिस्टम, खोज के सफल और असफल होने पर लागू करता है.
Kotlin
manager.discoverPeers(channel, object : WifiP2pManager.ActionListener { override fun onSuccess() { // Code for when the discovery initiation is successful goes here. // No services have actually been discovered yet, so this method // can often be left blank. Code for peer discovery goes in the // onReceive method, detailed below. } override fun onFailure(reasonCode: Int) { // Code for when the discovery initiation fails goes here. // Alert the user that something went wrong. } })
Java
manager.discoverPeers(channel, new WifiP2pManager.ActionListener() { @Override public void onSuccess() { // Code for when the discovery initiation is successful goes here. // No services have actually been discovered yet, so this method // can often be left blank. Code for peer discovery goes in the // onReceive method, detailed below. } @Override public void onFailure(int reasonCode) { // Code for when the discovery initiation fails goes here. // Alert the user that something went wrong. } });
ध्यान रखें कि इससे सिर्फ़ पीयर डिस्कवरी शुरू होती है. discoverPeers()
तरीके से, डिवाइसों की खोज करने की प्रोसेस शुरू होती है. इसके बाद, यह तुरंत वापस आ जाता है. अगर दिए गए ऐक्शन लिसनर में कॉलिंग के तरीकों का इस्तेमाल करके, आस-पास के डिवाइसों का पता लगाने की प्रोसेस शुरू हो जाती है, तो सिस्टम आपको इसकी सूचना देता है.
साथ ही, डिस्कवरी की सुविधा तब तक चालू रहती है, जब तक कोई कनेक्शन शुरू नहीं हो जाता या कोई P2P ग्रुप नहीं बन जाता.
मिलते-जुलते ऐप्लिकेशन की सूची फ़ेच करना
अब वह कोड लिखें जो पीयर की सूची को फ़ेच और प्रोसेस करता है. सबसे पहले, WifiP2pManager.PeerListListener
इंटरफ़ेस लागू करें. यह इंटरफ़ेस, उन डिवाइसों के बारे में जानकारी देता है जिन्हें Wi-Fi Direct ने खोजा है. इस जानकारी से, आपका ऐप्लिकेशन यह भी पता लगा सकता है कि नेटवर्क में कब पीयर शामिल होते हैं या कब छोड़ते हैं. नीचे दिया गया कोड स्निपेट, पियर से जुड़ी इन कार्रवाइयों के बारे में बताता है:
Kotlin
private val peers = mutableListOf<WifiP2pDevice>() ... private val peerListListener = WifiP2pManager.PeerListListener { peerList -> val refreshedPeers = peerList.deviceList if (refreshedPeers != peers) { peers.clear() peers.addAll(refreshedPeers) // If an AdapterView is backed by this data, notify it // of the change. For instance, if you have a ListView of // available peers, trigger an update. (listAdapter as WiFiPeerListAdapter).notifyDataSetChanged() // Perform any other updates needed based on the new list of // peers connected to the Wi-Fi P2P network. } if (peers.isEmpty()) { Log.d(TAG, "No devices found") return@PeerListListener } }
Java
private List<WifiP2pDevice> peers = new ArrayList<WifiP2pDevice>(); ... private PeerListListener peerListListener = new PeerListListener() { @Override public void onPeersAvailable(WifiP2pDeviceList peerList) { List<WifiP2pDevice> refreshedPeers = peerList.getDeviceList(); if (!refreshedPeers.equals(peers)) { peers.clear(); peers.addAll(refreshedPeers); // If an AdapterView is backed by this data, notify it // of the change. For instance, if you have a ListView of // available peers, trigger an update. ((WiFiPeerListAdapter) getListAdapter()).notifyDataSetChanged(); // Perform any other updates needed based on the new list of // peers connected to the Wi-Fi P2P network. } if (peers.size() == 0) { Log.d(WiFiDirectActivity.TAG, "No devices found"); return; } } }
अब अपने ब्रॉडकास्ट रिसीवर की onReceive()
मेथड में बदलाव करें, ताकि WIFI_P2P_PEERS_CHANGED_ACTION
ऐक्शन वाला इंटेंट मिलने पर requestPeers()
को कॉल किया जा सके. आपको इस लिसनर को किसी तरह रिसीवर में पास करना होगा. इसे ब्रॉडकास्ट रिसीवर के कंस्ट्रक्टर को आर्ग्युमेंट के तौर पर भेजा जा सकता है.
Kotlin
fun onReceive(context: Context, intent: Intent) { when (intent.action) { ... WifiP2pManager.WIFI_P2P_PEERS_CHANGED_ACTION -> { // Request available peers from the wifi p2p manager. This is an // asynchronous call and the calling activity is notified with a // callback on PeerListListener.onPeersAvailable() mManager?.requestPeers(channel, peerListListener) Log.d(TAG, "P2P peers changed") } ... } }
Java
public void onReceive(Context context, Intent intent) { ... else if (WifiP2pManager.WIFI_P2P_PEERS_CHANGED_ACTION.equals(action)) { // Request available peers from the wifi p2p manager. This is an // asynchronous call and the calling activity is notified with a // callback on PeerListListener.onPeersAvailable() if (mManager != null) { mManager.requestPeers(channel, peerListListener); } Log.d(WiFiDirectActivity.TAG, "P2P peers changed"); }... }
अब, WIFI_P2P_PEERS_CHANGED_ACTION
कार्रवाई वाले इंटेंट से, अपडेट की गई पीयर सूची के लिए अनुरोध ट्रिगर होता है.
किसी पीयर से कनेक्ट करना
किसी पीयर से कनेक्ट करने के लिए, नया WifiP2pConfig
ऑब्जेक्ट बनाएं. इसके बाद, उस डिवाइस को दिखाने वाले WifiP2pConfig
से डेटा कॉपी करें जिससे आपको कनेक्ट करना है.WifiP2pDevice
इसके बाद, connect()
मेथड को कॉल करें.
Kotlin
override fun connect() { // Picking the first device found on the network. val device = peers[0] val config = WifiP2pConfig().apply { deviceAddress = device.deviceAddress wps.setup = WpsInfo.PBC } manager.connect(channel, config, object : WifiP2pManager.ActionListener { override fun onSuccess() { // WiFiDirectBroadcastReceiver notifies us. Ignore for now. } override fun onFailure(reason: Int) { Toast.makeText( this@WiFiDirectActivity, "Connect failed. Retry.", Toast.LENGTH_SHORT ).show() } }) }
Java
@Override public void connect() { // Picking the first device found on the network. WifiP2pDevice device = peers.get(0); WifiP2pConfig config = new WifiP2pConfig(); config.deviceAddress = device.deviceAddress; config.wps.setup = WpsInfo.PBC; manager.connect(channel, config, new ActionListener() { @Override public void onSuccess() { // WiFiDirectBroadcastReceiver notifies us. Ignore for now. } @Override public void onFailure(int reason) { Toast.makeText(WiFiDirectActivity.this, "Connect failed. Retry.", Toast.LENGTH_SHORT).show(); } }); }
अगर आपके ग्रुप में शामिल हर डिवाइस पर वाई-फ़ाई डायरेक्ट की सुविधा काम करती है, तो कनेक्ट करते समय आपको ग्रुप का पासवर्ड अलग से नहीं डालना होगा. हालांकि, वाई-फ़ाई डायरेक्ट की सुविधा के साथ काम न करने वाले डिवाइस को किसी ग्रुप में शामिल करने के लिए, आपको requestGroupInfo()
को कॉल करके यह पासवर्ड वापस पाना होगा. ऐसा करने का तरीका, यहां दिए गए कोड स्निपेट में दिखाया गया है:
Kotlin
manager.requestGroupInfo(channel) { group -> val groupPassword = group.passphrase }
Java
manager.requestGroupInfo(channel, new GroupInfoListener() { @Override public void onGroupInfoAvailable(WifiP2pGroup group) { String groupPassword = group.getPassphrase(); } });
ध्यान दें कि WifiP2pManager.ActionListener
को connect()
तरीके में लागू किया जाता है. यह आपको सिर्फ़ तब सूचना देता है, जब शुरुआत सफल या असफल होती है. कनेक्शन की स्थिति में होने वाले बदलावों को सुनने के लिए, WifiP2pManager.ConnectionInfoListener
इंटरफ़ेस लागू करें.
इसका onConnectionInfoAvailable()
कॉलबैक, कनेक्शन की स्थिति में बदलाव होने पर आपको सूचना देता है. जब एक डिवाइस से कई डिवाइस कनेक्ट किए जाते हैं, तो किसी एक डिवाइस को "ग्रुप का मालिक" बना दिया जाता है. जैसे, तीन या इससे ज़्यादा खिलाड़ियों वाला गेम या चैट ऐप्लिकेशन. ग्रुप बनाना सेक्शन में दिए गए निर्देशों का पालन करके, किसी डिवाइस को नेटवर्क के ग्रुप के मालिक के तौर पर सेट किया जा सकता है.
Kotlin
private val connectionListener = WifiP2pManager.ConnectionInfoListener { info -> // String from WifiP2pInfo struct val groupOwnerAddress: String = info.groupOwnerAddress.hostAddress // After the group negotiation, we can determine the group owner // (server). if (info.groupFormed && info.isGroupOwner) { // Do whatever tasks are specific to the group owner. // One common case is creating a group owner thread and accepting // incoming connections. } else if (info.groupFormed) { // The other device acts as the peer (client). In this case, // you'll want to create a peer thread that connects // to the group owner. } }
Java
@Override public void onConnectionInfoAvailable(final WifiP2pInfo info) { // String from WifiP2pInfo struct String groupOwnerAddress = info.groupOwnerAddress.getHostAddress(); // After the group negotiation, we can determine the group owner // (server). if (info.groupFormed && info.isGroupOwner) { // Do whatever tasks are specific to the group owner. // One common case is creating a group owner thread and accepting // incoming connections. } else if (info.groupFormed) { // The other device acts as the peer (client). In this case, // you'll want to create a peer thread that connects // to the group owner. } }
अब ब्रॉडकास्ट रिसीवर के onReceive()
तरीके पर वापस जाएं और उस सेक्शन में बदलाव करें जो WIFI_P2P_CONNECTION_CHANGED_ACTION
इंटेंट को सुनता है.
यह इंटेंट मिलने पर, requestConnectionInfo()
को कॉल करें. यह एक एसिंक्रोनस कॉल है. इसलिए, नतीजे उस कनेक्शन की जानकारी देने वाले लिसनर को मिलते हैं जिसे आपने पैरामीटर के तौर पर दिया है.
Kotlin
when (intent.action) { ... WifiP2pManager.WIFI_P2P_CONNECTION_CHANGED_ACTION -> { // Connection state changed! We should probably do something about // that. mManager?.let { manager -> val networkInfo: NetworkInfo? = intent .getParcelableExtra(WifiP2pManager.EXTRA_NETWORK_INFO) as NetworkInfo if (networkInfo?.isConnected == true) { // We are connected with the other device, request connection // info to find group owner IP manager.requestConnectionInfo(channel, connectionListener) } } } ... }
Java
... } else if (WifiP2pManager.WIFI_P2P_CONNECTION_CHANGED_ACTION.equals(action)) { if (manager == null) { return; } NetworkInfo networkInfo = (NetworkInfo) intent .getParcelableExtra(WifiP2pManager.EXTRA_NETWORK_INFO); if (networkInfo.isConnected()) { // We are connected with the other device, request connection // info to find group owner IP manager.requestConnectionInfo(channel, connectionListener); } ...
ग्रुप बनाना
अगर आपको अपने ऐप्लिकेशन को चलाने वाले डिवाइस को ऐसे नेटवर्क के लिए ग्रुप का मालिक बनाना है जिसमें लेगसी डिवाइस शामिल हैं, तो आपको वही तरीका अपनाना होगा जो किसी पीयर से कनेक्ट करना सेक्शन में बताया गया है. लेगसी डिवाइस ऐसे डिवाइस होते हैं जिन पर Wi-Fi Direct काम नहीं करता. हालांकि, आपको connect()
के बजाय createGroup()
का इस्तेमाल करके, नया WifiP2pManager.ActionListener
बनाना होगा. WifiP2pManager.ActionListener
में कॉलबैक हैंडलिंग एक जैसी होती है. इसे यहां दिए गए कोड स्निपेट में दिखाया गया है:
Kotlin
manager.createGroup(channel, object : WifiP2pManager.ActionListener { override fun onSuccess() { // Device is ready to accept incoming connections from peers. } override fun onFailure(reason: Int) { Toast.makeText( this@WiFiDirectActivity, "P2P group creation failed. Retry.", Toast.LENGTH_SHORT ).show() } })
Java
manager.createGroup(channel, new WifiP2pManager.ActionListener() { @Override public void onSuccess() { // Device is ready to accept incoming connections from peers. } @Override public void onFailure(int reason) { Toast.makeText(WiFiDirectActivity.this, "P2P group creation failed. Retry.", Toast.LENGTH_SHORT).show(); } });
ध्यान दें: अगर किसी नेटवर्क में मौजूद सभी डिवाइसों पर वाई-फ़ाई डायरेक्ट की सुविधा काम करती है, तो हर डिवाइस पर connect()
तरीके का इस्तेमाल किया जा सकता है. ऐसा इसलिए, क्योंकि इस तरीके से ग्रुप अपने-आप बन जाता है और ग्रुप के मालिक का चुनाव भी अपने-आप हो जाता है.
ग्रुप बनाने के बाद, नेटवर्क पर मौजूद पीयर के बारे में जानकारी पाने के लिए, requestGroupInfo()
को कॉल किया जा सकता है. इसमें डिवाइस के नाम और कनेक्शन की स्थितियां शामिल हैं.