android显示wifi信号强度以及周边信号(源代码)

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

先把activity_main.xml文件代码贴出来.TextView充满屏幕

[html] view plain copy

 

  1.     xmlns:tools="http://schemas.android.com/tools"  
  2.     android:layout_width="match_parent"  
  3.     android:layout_height="match_parent"  
  4.     android:paddingBottom="@dimen/activity_vertical_margin"  
  5.     android:paddingLeft="@dimen/activity_horizontal_margin"  
  6.     android:paddingRight="@dimen/activity_horizontal_margin"  
  7.     android:paddingTop="@dimen/activity_vertical_margin"  
  8.     tools:context=".MainActivity" >  
  9.   
  10.    
  11.     
  12.         android:id="@+id/textView1"  
  13.         android:layout_width="match_parent"  
  14.         android:layout_height="match_parent"  
  15.         android:gravity="center"  
  16.         android:textColor="@android:color/black"  
  17.         android:textSize="25sp" />  
  18.   
  19.   

 

 

AndroidMenifest.xml中,加入两行,作用:获取权限

 

[html] view plain copy

 

  1.   
  2.   

 

 

最后是MainActivity.java中的程序:[java] view plain copy

 

  1. package com.example.wifistrength;  
  2.   
  3. import java.util.List;  
  4.   
  5. import android.net.wifi.ScanResult;  
  6. import android.net.wifi.WifiInfo;  
  7. import android.net.wifi.WifiManager;  
  8. import android.os.Bundle;  
  9. import android.app.Activity;  
  10. import android.content.Context;  
  11. import android.view.Menu;  
  12. import android.widget.TextView;  
  13. import android.widget.Toast;  
  14.   
  15. public class MainActivity extends Activity {  
  16.       
  17.     TextView tv;  
  18.   
  19.     @Override  
  20.     protected void onCreate(Bundle savedInstanceState) {  
  21.         super.onCreate(savedInstanceState);  
  22.         setContentView(R.layout.activity_main);  
  23.           
  24.         String wserviceName = Context.WIFI_SERVICE;  
  25.         WifiManager wm = (WifiManager) getSystemService(wserviceName);   
  26.           
  27.         WifiInfo info = wm.getConnectionInfo();     
  28.         int strength = info.getRssi();  
  29.         int speed = info.getLinkSpeed();    
  30.         String units = WifiInfo.LINK_SPEED_UNITS;    
  31.         String ssid = info.getSSID();    
  32.           
  33.         tv  = (TextView) findViewById(R.id.textView1);  
  34.   
  35.         List results = wm.getScanResults();  
  36.         String otherwifi = "The existing network is: \n\n";  
  37.           
  38.         for (ScanResult result : results) {    
  39.             otherwifi += result.SSID  + ":" + result.level + "\n";  
  40.         }  
  41.           
  42.         String text = "We are connecting to " + ssid + " at " + String.valueOf(speed) + "   " + String.valueOf(units) + ". Strength : " + strength;  
  43.         otherwifi += "\n\n";  
  44.         otherwifi += text;  
  45.           
  46.         tv.setText(otherwifi);  
  47.           
  48.     }  
  49.   
  50.   
  51.     @Override  
  52.     public boolean onCreateOptionsMenu(Menu menu) {  
  53.         // Inflate the menu; this adds items to the action bar if it is present.  
  54.         getMenuInflater().inflate(R.menu.main, menu);  
  55.         return true;  
  56.     }  
  57.       
  58. }  

结果图:

 

 

转载于:https://my.oschina.net/u/1266171/blog/858034

你可能感兴趣的:(android显示wifi信号强度以及周边信号(源代码))