문제

When I check the source code for WIFIP@PManager class https://android.googlesource.com/platform/frameworks/base/+/refs/heads/master/wifi/java/android/net/wifi/p2p/WifiP2pManager.java I see that there is a method setDeviceName but in my android code when I get WifiP2pManager wifip2pman = (WifiP2pManager)getActivity().getSystemService(Context.WIFI_P2P_SERVICE); wifip2pman doesn't provide the setDeviceName method!?!?

도움이 되었습니까?

해결책

That method is marked with the @hide annotation, meaning that it is not part of the Android SDK.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top