我正在尝试创建WifiConfiguration,但是,如果我编写以下代码:

WifiConfiguration conf = new WifiConfiguration();
conf.SSID = String.format("\"%s\"", ssid);


ide给出此错误:

unknown class: conf.SSID


我还尝试了以下代码:

WifiConfiguration conf ;
conf = new WifiConfiguration();


但是,现在出现错误:

Invalid method declaration


有什么事吗我有

import android.net.wifi.WifiConfiguration;


在我文件的开头

Here is an image of the actual code

最佳答案

您不能在类正文(statement)中包含see this。您需要将conf.SSID移至onCreate()方法。还请通过 activity lifecycle

10-02 10:24