android 常用小知识点 tips(一)

本人总结的一些android的小知识点,会一直持续更新的,忘关注!

PS:由于简书上不支持markdown 的[TOC]语法,所以没法显示目录,

android 常用小知识点 tips (一)
android 常用小知识点 tips (二)
[TOC]

1、android 6.0 权限申请

    /**
     * android 6.0 申请权限
     */
    private void requestLocalPermission() {
        if (ContextCompat.checkSelfPermission(this, Manifest.permission.WRITE_EXTERNAL_STORAGE)
                != PackageManager.PERMISSION_GRANTED
                || ContextCompat.checkSelfPermission(this, Manifest.permission.READ_PHONE_STATE)
                != PackageManager.PERMISSION_GRANTED
                ) {
            //申请WRITE_EXTERNAL_STORAGE权限
            ActivityCompat.requestPermissions(this, new String[]{
                            Manifest.permission.WRITE_EXTERNAL_STORAGE,
                            Manifest.permission.READ_PHONE_STATE,
                    },
                    0);
        }
    }
    /**
     * 申请权限完成后回调
     */
    @Override
    public void onRequestPermissionsResult(int requestCode, String[] permissions, int[] grantResults) {
        super.onRequestPermissionsResult(requestCode, permissions, grantResults);
    }

2、URLDecoder

URLDecoder.decode(value, "utf-8");
URLEncoder.encode(value, "utf-8");

 -----------------------------------java端另一种解决方法--------------------------------------------

jsp页面上有一个文本框:
<input type="text" name="companyName" value='<%=request.getAttribute("companyName") %>'/>

当文本框内容是汉字或者日文的时候,servlet中获得此文本框内容时是乱码:
request.getParameter("companyName");

解决:
String str = request.getParameter("companyName");

当文本框是中文时:
new String(str.getBytes("ISO-8859-1"), "GB2312");
当文本框是日文时:
new String(str.getBytes("ISO8859-1"), "UTF-8");

3、Url 解析

// https://www.baidu.com?action=jump&target_page=ZZ1103&current_page=ZZ11000;
 private void dispatchUriTest(Uri uri) {
        try {
                 String domain = uri.getAuthority();
                 String buffer = uri.getQueryParameter("action");
                 String page = uri.getQueryParameter("target_page");
                 String cur_page = uri.getQueryParameter("current_page");
                Toast.makeText(this, type + "  " + buffer, Toast.LENGTH_SHORT).show();
        } catch (Exception e) {
            Log.e(TAG, "Uri Parse Error");
        }
    }

PS:url地址中不能有#号,如有的话,请主动替换掉。

4、activity 和 fragment 里面数据备份

    //fragment 
    @Override
    public void onSaveInstanceState(Bundle outState) {
        super.onSaveInstanceState(outState);
        outState.putString("requestDate", requestDate);
        outState.putParcelableArrayList("dates", dates);
    }

    @Override
    public void onViewStateRestored(@Nullable Bundle savedInstanceState) {
        super.onViewStateRestored(savedInstanceState);
        if(savedInstanceState!=null)
        {
            requestDate = savedInstanceState.getString("requestDate");
            dates = savedInstanceState.getParcelableArrayList("dates");
        }
    }



    //Activity
     @Override
    public void onSaveInstanceState(Bundle outState) {
        super.onSaveInstanceState(outState);
        outState.putString("matchId", matchId);
    }

    @Override
    protected void onRestoreInstanceState(Bundle savedInstanceState) {
        super.onRestoreInstanceState(savedInstanceState);
        if (savedInstanceState != null) {
            matchId = savedInstanceState.getString("matchId");
        }
    }

5、gradle 打包命令

gradlew assembleReleaseA8FlavorReleaseA8

gradlew assemble+ flavor + buildType 的格式组成的

6、android 蓝牙开发

Android 蓝牙编程的基本步骤:
 获取蓝牙适配器BluetoothAdapter blueadapter=BluetoothAdapter.getDefaultAdapter(); 
如果BluetoothAdapter 为null,说明android手机没有蓝牙模块。
判断蓝牙模块是否开启,blueadapter.isEnabled() true表示已经开启,false表示蓝牙并没启用。
启动配置蓝牙可见模式,即进入可配对模式Intent in=new Intent(BluetoothAdapter.ACTION_REQUEST_DISCOVERABLE);  
in.putExtra(BluetoothAdapter.EXTRA_DISCOVERABLE_DURATION, 200);  
startActivity(in);  ,200就表示200秒。
获取蓝牙适配器中已经配对的设备Set<BluetoothDevice> device=blueadapter.getBondedDevices(); 
还需要在androidManifest.xml中声明蓝牙的权限
 <uses-permission android:name="android.permission.BLUETOOTH" />
 <uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />  

接下来就是根据自己的需求对BluetoothAdapter 的操作了。

7、gps 获取经纬度

 /*************************  GPS定位 相关 end  *****************************/

    /**
     * android 6.0 申请权限
     */
    private void requestLocalPermission() {
        if (ContextCompat.checkSelfPermission(context, Manifest.permission.ACCESS_FINE_LOCATION)
                != PackageManager.PERMISSION_GRANTED
                || ContextCompat.checkSelfPermission(context, Manifest.permission.ACCESS_COARSE_LOCATION)
                != PackageManager.PERMISSION_GRANTED
                ) {
            //申请WRITE_EXTERNAL_STORAGE权限
            ActivityCompat.requestPermissions(getActivity(), new String[]{
                            Manifest.permission.ACCESS_COARSE_LOCATION,
                            Manifest.permission.ACCESS_COARSE_LOCATION,
                    },
                    0);
        }
    }
    /**
     * 申请权限完成后回调
     */
    @Override
    public void onRequestPermissionsResult(int requestCode, String[] permissions, int[] grantResults) {
        super.onRequestPermissionsResult(requestCode, permissions, grantResults);
        getLocation(context);
    }


    private LocationManager locationManager;
    private String locationProvider;       //位置提供器
    private String locationStr  = "";

    private void getLocation(Context context) {
        //1.获取位置管理器
        locationManager = (LocationManager) context.getSystemService(Context.LOCATION_SERVICE);
        //2.获取位置提供器,GPS或是NetWork
        List<String> providers = locationManager.getProviders(true);
        if (providers.contains(LocationManager.NETWORK_PROVIDER)) {
            //如果是网络定位
            locationProvider = LocationManager.NETWORK_PROVIDER;
        } else if (providers.contains(LocationManager.GPS_PROVIDER)) {
            //如果是GPS定位
            locationProvider = LocationManager.GPS_PROVIDER;
        } else {
            Toast.makeText(context, "没有可用的位置提供器", Toast.LENGTH_SHORT).show();
            return;
        }

        //3.获取上次的位置,一般第一次运行,此值为null
        if (ActivityCompat.checkSelfPermission(context, Manifest.permission.ACCESS_FINE_LOCATION) != PackageManager.PERMISSION_GRANTED && ActivityCompat.checkSelfPermission(context, Manifest.permission.ACCESS_COARSE_LOCATION) != PackageManager.PERMISSION_GRANTED) {
            return;
        }
        Location location = locationManager.getLastKnownLocation(locationProvider);
        if (location!=null){
            showLocation(location);
        }else{
            // 监视地理位置变化,第二个和第三个参数分别为更新的最短时间minTime和最短距离minDistace
            locationManager.requestLocationUpdates(locationProvider, 0, 0,mListener);
        }
    }

    private void showLocation(Location location){
        locationStr = location.getLatitude()+","+location.getLongitude();
        Log.i(TAG, "gps : " + locationStr);
    }

    LocationListener mListener = new LocationListener() {
        @Override
        public void onStatusChanged(String provider, int status, Bundle extras) {
        }
        @Override
        public void onProviderEnabled(String provider) {
        }
        @Override
        public void onProviderDisabled(String provider) {
        }
        // 如果位置发生变化,重新显示
        @Override
        public void onLocationChanged(Location location) {
            showLocation(location);
        }
    };


    /*************************  GPS定位 相关 end  *****************************/

8、ibeacon 蓝牙设备


    /*************************  蓝牙ibeacon 相关 begin  *****************************/
    private BluetoothAdapter mBluetoothAdapter;

    private void initBlueTooth() {
        mBluetoothAdapter = BluetoothAdapter.getDefaultAdapter();
        scanBLE();
        openRemoveTimeOutDevicesTimer();
    }

    @SuppressWarnings("deprecation")
    @SuppressLint("NewApi")
    public void scanBLE() {
        mBluetoothAdapter.startLeScan(mLeScanCallback);
    }


    @SuppressLint("NewApi")
    private BluetoothAdapter.LeScanCallback mLeScanCallback = new BluetoothAdapter.LeScanCallback() {

        @Override
        public void onLeScan(final BluetoothDevice device, int rssi, byte[] scanRecord) {
            final iBeaconClass.iBeacon ibeacon = iBeaconClass.fromScanData(device, rssi, scanRecord);

            addDevicesToMap(ibeacon);

        }
    };

    Timer mRemoveTimeOutDevicesTimer;

    private void openRemoveTimeOutDevicesTimer() {
        mRemoveTimeOutDevicesTimer = new Timer();
        mRemoveTimeOutDevicesTimer.schedule(new TimerTask() {

            @Override
            public void run() {
                if (mBleDeviceMaps.size() == 0) {
                    scanBLE();
                }
            }
        }, 1000, 1000);
    }

    private void stopTimer() {
        mRemoveTimeOutDevicesTimer.cancel();
    }

    private ConcurrentHashMap<String, iBeaconClass.iBeacon> mBleDeviceMaps = new ConcurrentHashMap<String, iBeaconClass.iBeacon>();
    //    private ConcurrentHashMap<String, Long> mBlePutTime = new ConcurrentHashMap<String, Long>();
    private ConcurrentHashMap<String, Integer> mBleRssi = new ConcurrentHashMap<String, Integer>();

    private void addDevicesToMap(iBeaconClass.iBeacon device) {
        if (device == null) {
            Log.d("TAG", "device==null ");
            return;
        }
        // 只搜索与我们自己布置的iBeacon  // TODO 章鱼彩票测试的时候,可以先把这段代码去掉
        if (device.getProximityUuid() != null) {
            if (!(device.getProximityUuid().equals(ConstantUtil.HH_IBEACON_UUID))) {
                return;
            }
        } else {
            return;
        }

        // 键值对存起来
        // 接收到一个信号,如果没有,就存入
        // 通过address比较
        // 如果已有就更新
        // 如果长时间不更新,就删除
        // 用另一个map记录时间
        // 如果3秒没有信号
        // 删除两个map中的数据

        mBleDeviceMaps.put(device.bluetoothAddress, device);
//        mBlePutTime.put(device.bluetoothAddress, System.currentTimeMillis());
        mBleRssi.put(device.bluetoothAddress, device.rssi);
    }

    //---------------------------工具函数------------------------------------

    public String[] sortMapvalues(ConcurrentHashMap map) {

        // 排序hashmap的值
        List<Map.Entry<String, Integer>> retArray = null;
        retArray = new ArrayList<Map.Entry<String, Integer>>(map.entrySet());
        Collections.sort(retArray, new Comparator<Map.Entry<String, Integer>>() {
            public int compare(Map.Entry<String, Integer> o1, Map.Entry<String, Integer> o2) {
                if (o2.getValue() != null && o1.getValue() != null && o2.getValue().compareTo(o1.getValue()) > 0) {
                    return 1;
                } else {
                    return -1;
                }
            }
        });

        // 按顺序取出另个集合中的iBeacon列表
        String ret[] = new String[retArray.size()];
        for (int i = 0; i < retArray.size(); i++) {
            iBeaconClass.iBeacon iB = mBleDeviceMaps.get(retArray.get(i).getKey());
            if (iB != null) {
                ret[i] = iB.getBluetoothAddress();
            }
        }
        return ret;
    }

    private JSONObject makeJsonParam() {
        String retJson = null;
        String[] objects = sortMapvalues(mBleRssi); // 按信号远近进行排序
        JSONObject ibeacon = new JSONObject();
        JSONArray iBeaconList = new JSONArray();
        for (int i = 0; i < objects.length; i++) {
            // 最多四条
            if (i > 3) {
                continue;
            }
            // 生成每条内容
            try {
                iBeaconClass.iBeacon ibe = mBleDeviceMaps.get(objects[i]);
                ibeacon.put("name", ibe.name);
                ibeacon.put("uuid", ibe.proximityUuid);
                ibeacon.put("address", ibe.bluetoothAddress);
                ibeacon.put("major", ibe.major);
                ibeacon.put("minor", ibe.minor);
                ibeacon.put("txPower", ibe.txPower);
                ibeacon.put("rssi", ibe.rssi);
            } catch (JSONException e3) {
                e3.printStackTrace();
            }
            iBeaconList.put(ibeacon);
            ibeacon = new JSONObject();
        }

        JSONObject paramObj = new JSONObject();
        try {
            JSONObject location = new JSONObject();
            location.put("iBeacons", iBeaconList);
            location.put("gps", locationStr);
            paramObj.put("locationInfo", location);
            paramObj.put("clientInfo", JsonUtil.getInstance().converData2String(getFilledClientInfoWrapper(context)));
        } catch (JSONException e1) {
            e1.printStackTrace();
        }
        return paramObj;
    }

    /***
     * 填充公共参数clientInfo
     *
     * @param context
     * @return
     */
    protected RequestClientInfoWrapper getFilledClientInfoWrapper(Context context) {
        RequestClientInfoWrapper wrapper = new RequestClientInfoWrapper();
        RequestClientInfoWrapper.fillInfo(context, wrapper);
        return wrapper;
    }

    /*************************  蓝牙ibeacon 相关 end  *****************************/

9、获取android签名文件的信息

以管理员方式打开cd到对应目录,输入命令:keytool -list -v -keystore debug.keystore

10、android:windowSoftInputMode属性

熟悉利用配置文件,可以减少很多不必要的麻烦,下面附上android:windowSoftInputMode属性:
stateUnspecified:软键盘的状态并没有指定,系统将选择一个合适的状态或依赖于主题的设置
stateUnchanged:当这个activity出现时,软键盘将一直保持在上一个activity里的状态,无论是隐藏还是显示
stateHidden:用户选择activity时,软键盘总是被隐藏
stateAlwaysHidden:当该Activity主窗口获取焦点时,软键盘也总是被隐藏的
stateVisible:软键盘通常是可见的
stateAlwaysVisible:用户选择activity时,软键盘总是显示的状态
adjustUnspecified:默认设置,通常由系统自行决定是隐藏还是显示
adjustResize:该Activity总是调整屏幕的大小以便留出软键盘的空间
adjustPan:当前窗口的内容将自动移动以便当前焦点从不被键盘覆盖和用户能总是看到输入内容的部分
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 216,258评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,335评论 3 392
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 162,225评论 0 353
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 58,126评论 1 292
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 67,140评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 51,098评论 1 295
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 40,018评论 3 417
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,857评论 0 273
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,298评论 1 310
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,518评论 2 332
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,678评论 1 348
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,400评论 5 343
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,993评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,638评论 0 22
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,801评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,661评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,558评论 2 352

推荐阅读更多精彩内容

  • Android 自定义View的各种姿势1 Activity的显示之ViewRootImpl详解 Activity...
    passiontim阅读 172,062评论 25 707
  • 写在前面 今天使用高德地图为应用添加Key的时候,发现有一项需要用到安全码SHA1,而SHA1存在于Keystor...
    代码咖啡阅读 26,735评论 5 34
  • 一. Keytool创建和导入命令 创建keystore和密钥对 为存在的keystore生成证书请求文件CSR ...
    sngths阅读 6,391评论 0 1
  • 第一章逐出门墙 大夏帝国 青龙城 忠义侯府门前,一个穿着洗的发白的士子装的十八岁左右的小孩子被一个锦衣中年人赶...
    逸枫轩阅读 282评论 0 5
  • 第一次想发一篇稿子,初入大学,作为一名大一新生的我看了很多别人的大学生活的故事,我不禁想,为什么我的大一是那么迷茫...
    屿认阅读 190评论 0 1