1、展开、收起状态栏 public static final void collapseStatusBar(Context ctx) { Object sbservice = ctx.getSystemService("statusbar"); try { Class<?> statusBarMan ...
分类:
移动开发 时间:
2018-10-16 17:43:27
阅读次数:
186
一 创建手机通知 1.创建一个NotificationManager 创建一个NotificationManager来对通知就行管理。一般调用context的getSystemService()方法得到这个对象,这个方法传入要获取的服务,返回的是一个该类型的值。如下: 2.创建一个Notificat ...
分类:
移动开发 时间:
2018-08-25 16:32:30
阅读次数:
230
private void sendNotify() { NotificationManager manager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE); NotificationCompat.Builder bui ...
分类:
移动开发 时间:
2018-08-20 16:40:11
阅读次数:
185
String NUMERIC = getSIMInfo();protected String getSIMInfo() {TelephonyManager iPhoneManager = (TelephonyManager) this.getSystemService(Context.TELEPHO ...
分类:
其他好文 时间:
2018-08-03 14:47:26
阅读次数:
290
public boolean onQueryTextSubmit(String s) { if (sv != null) { // 得到输入管理对象 InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPU ...
分类:
其他好文 时间:
2018-02-26 23:28:33
阅读次数:
377
android 中有很多注册和反注册,由于在注册后,自身会被持久化的观察者列表所持有,如果不进行反注册,就会造成内存泄漏 内存泄漏1:Sensor Manager 代码如下: MainActivity.java 为什么? 通过Context调用getSystemService获取系统服务,这些服务运 ...
分类:
移动开发 时间:
2018-02-26 16:21:03
阅读次数:
214
private void getLocationCity(){ String serviceName = Context.LOCATION_SERVICE; locationManager = (LocationManager) getSystemService(serviceName); // S... ...
分类:
移动开发 时间:
2018-01-25 15:52:34
阅读次数:
188
主要实现步骤如下:1.确保已经和蓝牙耳机配对连接上。2.开启蓝牙信道AudioManager mAudioManager = (AudioManager)getSystemService(Context.AUDIO_SERVICE);mAudioManager.setBluetoothScoOn(t ...
分类:
移动开发 时间:
2018-01-15 16:38:52
阅读次数:
1838
//返回sd卡路径public static List<String> getStorageDirectories(Context context) { StorageManager sm = (StorageManager) context.getSystemService(Context.STO ...
分类:
移动开发 时间:
2017-10-20 11:56:49
阅读次数:
167
1.mHandler.postDelayed(new Runnable(){ }, delay); 2.Android输入法简介: InputMethodManager:getSystemService()获取实例 hideSoftInputFromWindow(IBinder, int)中的标志, ...
分类:
其他好文 时间:
2017-09-27 11:31:23
阅读次数:
189