搜索结果
查询Tags标签: getactivity,共有 4条记录-
恢复出厂设置 添加密码判断
/** Copyright (C) 2010 The Android Open Source Project** Licensed under the Apache License, Version 2.0 (the "License");* you may not use this file except in compliance with the License.* You may obtain a copy of the License at** http:/…
2022/3/21 23:32:58 人评论 次浏览 -
Android-录音功能直接拿去用,程序员必学之一
public void startRecording() {setFileNameAndPath();mRecorder = new MediaRecorder();mRecorder.setAudioSource(MediaRecorder.AudioSource.MIC);mRecorder.setOutputFormat(MediaRecorder.OutputFormat.MPEG_4); //录音文件保存的格式,这里保存为 mp4mRecorder.setO…
2021/9/6 14:08:43 人评论 次浏览 -
Android-录音功能直接拿去用,程序员必学之一
public void startRecording() {setFileNameAndPath();mRecorder = new MediaRecorder();mRecorder.setAudioSource(MediaRecorder.AudioSource.MIC);mRecorder.setOutputFormat(MediaRecorder.OutputFormat.MPEG_4); //录音文件保存的格式,这里保存为 mp4mRecorder.setO…
2021/9/6 14:08:43 人评论 次浏览 -
Android中getActivity()为null的解决办法
在Android开发的时候可能遇过出现getActivity()出现null的时候导致程序报出空指针异常,那么遇到这种情况改如何解决,下面跟着小编一起去看看。
2019/7/9 23:15:17 人评论 次浏览