Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> Android技術基礎 >> 第87章、系統服務之WIFI_SERVICE(從零開始學Android)

第87章、系統服務之WIFI_SERVICE(從零開始學Android)

編輯:Android技術基礎

WIFI就是一種無線聯網技術,常見的是使用無線路由器。那麼在這個無線路由器的信號覆蓋的范圍內都可以采用WIFI連接的方式進行聯網。如果無線路由器連接了一個ADSL線路或其他的聯網線路,則又被稱為“熱點”。

一、設計界面

1、布局文件

打開res/layout/activity_main.xml文件。
輸入以下代碼:

[html] view plain copy  
  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <LinearLayout   
  3.     xmlns:android="http://schemas.android.com/apk/res/android"  
  4.     android:layout_width="match_parent"  
  5.     android:layout_height="match_parent"  
  6.     android:orientation="vertical" >  
  7.   
  8.     <Button  
  9.         android:id="@+id/openwifi"  
  10.         android:layout_width="wrap_content"  
  11.         android:layout_height="wrap_content"  
  12.         android:text="開啟WiFi" />  
  13.       
  14.     <Button  
  15.         android:id="@+id/closewifi"  
  16.         android:layout_width="wrap_content"  
  17.         android:layout_height="wrap_content"  
  18.         android:text="關閉WiFi" />  
  19.       
  20.     <Button  
  21.         android:id="@+id/wifistate"  
  22.         android:layout_width="wrap_content"  
  23.         android:layout_height="wrap_content"  
  24.         android:text="WiFi狀態" />  
  25.   
  26. </LinearLayout>  

 

二、程序文件

打開“src/com.genwoxue.wifi/MainActivity.java”文件。
然後輸入以下代碼:

[java] view plain copy  
  1. package com.genwoxue.wifi;  
  2.   
  3.   
  4. import android.net.wifi.WifiManager;  
  5. import android.os.Bundle;  
  6. import android.view.View;  
  7. import android.view.View.OnClickListener;  
  8. import android.widget.Button;  
  9. import android.widget.Toast;  
  10. import android.app.Activity;  
  11. import android.content.Context;  
  12.   
  13. public class MainActivity extends Activity {  
  14.   
  15.     private Button btnOpen=null;  
  16.     private Button btnClose=null;  
  17.     private Button btnState=null;  
  18.       
  19.     private WifiManager wifi=null;  
  20.       
  21.     @Override  
  22.     protected void onCreate(Bundle savedInstanceState) {  
  23.         super.onCreate(savedInstanceState);  
  24.         setContentView(R.layout.activity_main);  
  25.           
  26.         btnOpen=(Button)super.findViewById(R.id.openwifi);  
  27.         btnClose=(Button)super.findViewById(R.id.closewifi);  
  28.         btnState=(Button)super.findViewById(R.id.wifistate);  
  29.           
  30.         //獲取Wifi服務  
  31.         wifi=(WifiManager)super.getSystemService(Context.WIFI_SERVICE);  
  32.           
  33.         //開啟  
  34.         btnOpen.setOnClickListener(new OnClickListener(){  
  35.             public void onClick(View v)  
  36.             {    
  37.                 wifi.setWifiEnabled(true);  
  38.                 Toast.makeText(getApplicationContext(), "開啟Wifi服務!", Toast.LENGTH_LONG).show();  
  39.             }  
  40.         });  
  41.           
  42.         //關閉  
  43.         btnClose.setOnClickListener(new OnClickListener(){  
  44.             public void onClick(View v)  
  45.             {    
  46.                 wifi.setWifiEnabled(false);  
  47.                 Toast.makeText(getApplicationContext(), "關閉Wifi服務!", Toast.LENGTH_LONG).show();  
  48.             }  
  49.         });  
  50.           
  51.         //狀態  
  52.         btnState.setOnClickListener(new OnClickListener(){  
  53.             public void onClick(View v)  
  54.             {    
  55.                 Toast.makeText(getApplicationContext(), "Wifi狀態:"+String.valueOf(wifi.getWifiState()), Toast.LENGTH_LONG).show();  
  56.             }  
  57.         });  
  58.           
  59.     }  
  60. }  

三、配置文件

打開“AndroidManifest.xml”文件。

然後輸入以下代碼:

[html] view plain copy  
  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"  
  3.     package="com.genwoxue.wifi"  
  4.     android:versionCode="1"  
  5.     android:versionName="1.0" >  
  6.   
  7.     <uses-sdk  
  8.         android:minSdkVersion="8"  
  9.         android:targetSdkVersion="15" />  
  10.     <uses-permission android:name="android.permission.CHANGE_WIFI_STATE"/>  
  11.     <uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>  
  12.   
  13.     <application  
  14.         android:allowBackup="true"  
  15.         android:icon="@drawable/ic_launcher"  
  16.         android:label="@string/app_name"  
  17.         android:theme="@style/AppTheme" >  
  18.         <activity  
  19.             android:name="com.genwoxue.wifi.MainActivity"  
  20.             android:label="@string/app_name" >  
  21.             <intent-filter>  
  22.                 <action android:name="android.intent.action.MAIN" />  
  23.   
  24.                 <category android:name="android.intent.category.LAUNCHER" />  
  25.             </intent-filter>  
  26.         </activity>  
  27.     </application>  
  28.   
  29. </manifest>  

 

注意:需要在AndroidManifest.xml文件中添加權限:

<uses-permission android:name="android.permission.CHANGE_WIFI_STATE"/>
    <uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>

四、運行結果

\

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved