Android Wi-Fi 프레임워크는 사용자가 네트워크를 필요로 하고 사용할 수 있을 때 양호한 Wi-Fi 네트워크에 연결할 수 있도록 도와줍니다. Android는 다음과 같은 두 가지 방법으로 네트워크 연결을 지원합니다.
자동으로 Wi-Fi 사용 설정: 사용자가 이전에 저장된 네트워크 근처에 있을 때 Wi-Fi를 다시 사용 설정합니다.
공용 네트워크 알림: 사용 가능한 양호한 공용 Wi-Fi 네트워크가 있을 때 사용자에게 알려줍니다.
여기서 설명한 기능은 AOSP 코드로 구현되며 개발자가 명시적으로 사용 설정하거나 구성할 필요가 없습니다.
자동으로 Wi‑Fi 사용 설정
사용자는 여러 가지 이유로(예: 불안정한 네트워크에 연결) Wi-Fi를 사용 중지한 후 집에 돌아왔을 때 다시 사용 설정하는 것을 잊고 이로 인해 홈 자동화 기기를 제어하지 못하는 등의 부정적인 경험을 할 수 있습니다.
Android 9에 도입된 자동으로 Wi-Fi 사용 설정 기능은 저장된 네트워크(즉, 사용자가 이전에 명시적으로 연결한 네트워크)이면서 충분히RSSI가 높은 Wi-Fi 네트워크 근처에 기기가 있을 때마다 Wi-Fi를 자동으로 다시 사용 설정하여 이 문제를 해결합니다.
이 기능은 사용자가 설정 앱을 사용하여 사용 설정 또는 사용 중지할 수 있습니다.
설정 > 네트워크 및 인터넷 > Wi-Fi > Wi-Fi 환경설정 > 자동으로 Wi-Fi 사용 설정
그림 1. 자동으로 Wi-Fi 사용 설정
이 기능이 작동하려면 Wi-Fi 검색(대상: 위치)이 사용 설정되어 있어야 합니다. Wi-Fi 검색이 사용 설정되어 있지 않으면 사용자에게 사용 설정을 위한 권한을 요청하는 메시지가 표시됩니다.
Wi-Fi 연결을 다시 사용 설정하기 위한 기준을 충족하는 Wi-Fi 네트워크 근처에 기기가 있는지 확인하는 데 검색 결과가 사용되므로 Wi-Fi 검색이 필요합니다.
이 기능은 기기가 충분한 품질의 저장된 Wi-Fi 네트워크를 인식하게 되더라도 사용자가 Wi-Fi를 사용 중지한 직후에는 Wi-Fi를 다시 사용 설정하지 않습니다. 예를 들어 사용자가 사무실에 있으며 사무실 Wi-Fi(저장된 네트워크)에 연결되어 있다가 이후에 Wi-Fi를 사용 중지했다면 이 기능은 사용자가 다시 사용 설정할 수 있는 기준을 충족하는 다른 저장된 네트워크가 있는 다른 환경에 도착할 때까지는 Wi-Fi를 다시 사용 설정하지 않습니다.
공용 네트워크 알림
공용 네트워크 알림 기능은 다음과 같은 환경이 될 때마다 사용자에게 알림을 표시합니다.
Wi-Fi가 사용 설정됨
기기가 Wi-Fi 네트워크에 연결되어 있지 않음
충분히RSSI가 높은(내부 Wi-Fi 선택 알고리즘에서 사용하는 것과 동일한 RSSI 임계값) 공용 Wi-Fi 네트워크를 사용할 수 있음
이 기능은 사용자가 설정 앱을 사용하여 사용 설정 또는 사용 중지할 수 있습니다.
설정 >네트워크 및 인터넷 >인터넷 >네트워크 환경설정 >공용 네트워크 알림
그림 2. 공용 네트워크 알림 기능
이 페이지에 나와 있는 콘텐츠와 코드 샘플에는 콘텐츠 라이선스에서 설명하는 라이선스가 적용됩니다. 자바 및 OpenJDK는 Oracle 및 Oracle 계열사의 상표 또는 등록 상표입니다.
최종 업데이트: 2024-04-26(UTC)
[[["이해하기 쉬움","easyToUnderstand","thumb-up"],["문제가 해결됨","solvedMyProblem","thumb-up"],["기타","otherUp","thumb-up"]],[["필요한 정보가 없음","missingTheInformationINeed","thumb-down"],["너무 복잡함/단계 수가 너무 많음","tooComplicatedTooManySteps","thumb-down"],["오래됨","outOfDate","thumb-down"],["번역 문제","translationIssue","thumb-down"],["샘플/코드 문제","samplesCodeIssue","thumb-down"],["기타","otherDown","thumb-down"]],["최종 업데이트: 2024-04-26(UTC)"],[],[],null,["# Wi-Fi infrastructure features\n\nThe Android Wi-Fi framework helps users connect to a good Wi-Fi network when\nnetworks are available and needed. Android does that in two ways:\n\n- **Turn on Wi-Fi automatically**: Re-enabling Wi-Fi when the user is near a previously saved network\n- **Notify for public networks** : Informing users about available *good* open Wi-Fi networks\n\nThe features described are implemented by AOSP code and you don't have to\nexplicitly enable or configure them.\n\nTurn on Wi-Fi automatically\n---------------------------\n\nUsers may disable Wi-Fi for a variety of reasons (e.g. a connection to a bad\nnetwork) and can then forget to re-enable it when arriving back home, resulting\nin a bad experience (e.g. not being able to control home automation devices).\nThe *Turn on Wi-Fi automatically* feature, introduced in\nAndroid 9,\nsolves this issue by automatically\nre-enabling Wi-Fi whenever the device is near a Wi-Fi network that is both a\n**saved** network (i.e. one which the user explicitly connected to in the past)\nand has a *sufficiently* **high RSSI.**\n\nThe feature can be enabled or disabled by the user using the Settings app at:\n\n**Settings** \\\u003e **Network \\& internet** \\\u003e **Wi-Fi** \\\u003e **Wi-Fi preferences** \\\u003e\n**Turn on Wi-Fi automatically**\n\n**Figure 1.** Turn on Wi-Fi automatically feature.\n\nWi-Fi Scanning (for Location) must be enabled for this feature to function. If\nWi-Fi Scanning is not enabled the user is prompted for permission to enable it.\nWi-Fi Scanning is required because scan results are used to determine whether\nthe device is in the vicinity of a Wi-Fi network that meets the criteria to\nre-enable Wi-Fi connectivity.\n\nThe feature avoids re-enabling Wi-Fi immediately after a user disables it, even\nif the device observes a saved Wi-Fi network of sufficient quality. For\nexample, if the user is in the office and is connected to the office Wi-Fi (a\n*saved* network) and then disables Wi-Fi, the feature won't re-enable Wi-Fi\nuntil the user arrives at a different environment with a different saved\nnetwork that meets the re-enabling criteria.\n\nNotify for public networks\n--------------------------\n\nThe *Open network notification* feature raises a notification to the user\nwhenever:\n\n- Wi-Fi is enabled\n- The device is not connected to a Wi-Fi network\n- A Wi-Fi network that is both **open** and has a *sufficiently* **high RSSI** (the same RSSI threshold as used by the internal Wi-Fi selection algorithm) is available\n\nThe feature can be enabled or disabled by the user using the Settings app at:\n\n**Settings** \\\u003e **Network \\& internet** \\\u003e **Internet** \\\u003e **Network preferences** \\\u003e\n**Notify for public networks**\n\n**Figure 2.** Notify for public networks feature."]]