Bootstrap

Android定位入门(1)了解定位管理器--LocationManager 类

Android定位篇基础
基本了解:
首先理解定位常见的类型,比如经常听到的GPS定位什么的,
定位肯定是用的手机硬件,而且定位时候耗电量功耗比较大
(Ps 其实定位是服务,并且需要权限)
目的:
看到手机设备支持的位置服务
这里写图片描述

核心代码
1,2部得到系统的定位服务,
3是用两种常见的方式显示出来,

1.声明位置服务 ,集合

        private LocationManager lm;      //【位置服务】
        private List<String> lists;
  1. 得到系统服务,装集合中
    //【1】得到系统的位置服务
        lm=(LocationManager)getSystemService(Context.LOCATION_SERVICE);
        lists=lm.getAllProviders();

3.1用适配器的方式显示设备当前的支持

        //列表+适配器的方式显示
        ArrayAdapter<String> adapter=new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1,lists);
        list1.setAdapter(adapter);

3.2用字符串凭借方式显示设备的支持

  //文本+循环字符串拼接的方式显示
        StringBuffer sb=new StringBuffer();
        for(int i=0;i<lists.size();i++)
        {
        sb.append(lists.get(i)+"\n");   
        }
        text1.setText(sb.toString());
;