ユーザーがウィジェット アイコンをクリックしたときに、wifi のオンとオフを切り替える必要があります...
WifiManager wifiManager = (WifiManager) getApplicationContext().getSystemService(Context.WIFI_SERVICE);
if(wifiManager.isWifiEnabled())
wifiManager.setWifiEnabled(false);
else
wifiManager.setWifiEnabled(true);
pendingIntents を使用して実装するにはどうすればよいですか?