docs: Wi-Fi settings example now uses Settings constant correctly am: 4d215ad49c am: 0bf02f3d48

am: 37faa03bc4

Change-Id: Ia8623a349be6f8657063110f7629b895f8b59d85
This commit is contained in:
Kevin Hufnagle
2016-09-27 01:10:34 +00:00
committed by android-build-merger

View File

@@ -2155,7 +2155,7 @@ that are available.</p>
<p><b>Example intent:</b></p>
<pre>
public void openWifiSettings() {
Intent intent = new Intent(Intent.ACTION_WIFI_SETTINGS);
Intent intent = new Intent(Settings.ACTION_WIFI_SETTINGS);
if (intent.resolveActivity(getPackageManager()) != null) {
startActivity(intent);
}