所以我正在尝试在 android 上创建 p2p 连接工作。我被困在以下部分。下面的代码是 API 上提供的,对我来说没有意义。我觉得 mManager 必须有一个类型,并且没有给出类型。我如何使这项工作?
API 链接:http: //developer.android.com/training/connect-devices-wireless/wifi-direct.html
@Override
Channel mChannel;
public void onCreate(Bundle savedInstanceState) {
....
mManager = (WifiP2pManager) getSystemService(Context.WIFI_P2P_SERVICE);
mChannel = mManager.initialize(this, getMainLooper(), null);
}