最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

android項(xiàng)目手機(jī)衛(wèi)士來(lái)電顯示號(hào)碼歸屬地

 更新時(shí)間:2016年10月22日 16:17:04   作者:陶士涵  
由于詐騙電話(huà)越來(lái)越猖狂,號(hào)碼歸屬地顯示越來(lái)越重要,本篇文章主要介紹了android手機(jī)衛(wèi)士來(lái)電顯示號(hào)碼歸屬地,有要的朋友可以了解一下。

昨日實(shí)現(xiàn)了360手機(jī)衛(wèi)士的來(lái)電顯示歸屬地的功能,具體的功能就是當(dāng)來(lái)電的時(shí)候,顯示當(dāng)前號(hào)碼的歸屬地,學(xué)習(xí)之后發(fā)現(xiàn)操作

非常的簡(jiǎn)單,具體實(shí)現(xiàn)代碼如下:

AddressService.java

 package com.qingguow.mobilesafe.service;

import com.qingguow.mobilesafe.utils.NumberQueryAddressUtil;

import android.app.Service;
import android.content.Intent;
import android.os.IBinder;
import android.telephony.PhoneStateListener;
import android.telephony.TelephonyManager;
import android.widget.Toast;

/**
 * 來(lái)電顯示
 * 
 * @author taoshihan
 * 
 */
public class AddressService extends Service {
  private TelephonyManager tm;
  private MyPhoneStateListener phoneStateListener;

  @Override
  public IBinder onBind(Intent arg0) {
    // TODO Auto-generated method stub
    return null;
  }
  /**
   * 服務(wù)創(chuàng)建
   */
  @Override
  public void onCreate() {
    super.onCreate();
    tm = (TelephonyManager) getSystemService(TELEPHONY_SERVICE);
    phoneStateListener = new MyPhoneStateListener();
    tm.listen(phoneStateListener, PhoneStateListener.LISTEN_CALL_STATE);
  }

  private class MyPhoneStateListener extends PhoneStateListener {
    @Override
    public void onCallStateChanged(int state, String incomingNumber) {
      super.onCallStateChanged(state, incomingNumber);
      switch (state) {
      case TelephonyManager.CALL_STATE_RINGING:
        String info = NumberQueryAddressUtil
            .queryAddress(incomingNumber);
        Toast.makeText(getApplicationContext(), info, 1).show();
        break;
      default:
        break;
      }
    }
  }
  /**
   * 服務(wù)銷(xiāo)毀
   */
  @Override
  public void onDestroy() {
    // TODO Auto-generated method stub
    super.onDestroy();
    //取消監(jiān)聽(tīng)
    tm.listen(phoneStateListener, PhoneStateListener.LISTEN_NONE);
    phoneStateListener=null;
  }
}

設(shè)置中心,配置是否開(kāi)啟來(lái)電歸屬地顯示

直接使用我們之前定義好的組合控件

<com.qingguow.mobilesafe.ui.SettingItemView
    tsh:title="設(shè)置顯示號(hào)碼歸屬地"
    tsh:desc_on="設(shè)置顯示號(hào)碼歸屬地已開(kāi)啟"
    tsh:desc_off="設(shè)置顯示號(hào)碼歸屬地已關(guān)閉"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:id="@+id/siv_show_address">
  </com.qingguow.mobilesafe.ui.SettingItemView>

獲取到SettingItemView對(duì)象,我們自定義的控件,設(shè)置狀態(tài)

調(diào)用SettingItemView對(duì)象的setOnClickListener()方法,設(shè)置點(diǎn)擊事件,重寫(xiě)onClick方法

調(diào)用SettingItemView對(duì)象的isChecked()方法,得到當(dāng)前是否選中

判斷狀態(tài),調(diào)用SettingItemView對(duì)象的setChecked()方法,設(shè)置狀態(tài),參數(shù):布爾值

調(diào)用startService()方法,開(kāi)啟監(jiān)聽(tīng)手機(jī)狀態(tài)的服務(wù),參數(shù):Intent對(duì)象,

調(diào)用stopService()方法,關(guān)閉服務(wù)

判斷當(dāng)前服務(wù)是否開(kāi)啟,設(shè)置控件的默認(rèn)選中狀態(tài)

新建一個(gè)工具類(lèi)ServicesUtils.java

定義一個(gè)靜態(tài)方法isServiceRunning(),傳入?yún)?shù):Context上下文,String服務(wù)名

調(diào)用Context對(duì)象的getSystemService()方法,獲取ActivityManager對(duì)象,參數(shù):Context.ACTIVITY_SERVICE

調(diào)用ActivityManager對(duì)象的getRunningServices()方法,得到運(yùn)行的服務(wù)List集合,參數(shù):int最大值

for循環(huán)List集合,每條是個(gè)RunningServiceInfo對(duì)象

調(diào)用RunningServiceInfo.servie.getClassName(),獲取到String服務(wù)類(lèi)名,判斷一下如果相等返回true

SettingActivity.java

package com.qingguow.mobilesafe;

import android.app.Activity;
import android.content.Intent;
import android.content.SharedPreferences;
import android.content.SharedPreferences.Editor;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;

import com.qingguow.mobilesafe.service.AddressService;
import com.qingguow.mobilesafe.ui.SettingItemView;
import com.qingguow.mobilesafe.utils.ServiceUtils;

public class SettingActivity extends Activity {
  private SettingItemView siv_item;
  private SharedPreferences sp;
  // 設(shè)置是否開(kāi)啟號(hào)碼歸屬地
  private SettingItemView showAddressBtn;

  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_setting);

    // 設(shè)置號(hào)碼歸屬地
    showAddressBtn = (SettingItemView) findViewById(R.id.siv_show_address);
    if (ServiceUtils.isRunningService(this,
        "com.qingguow.mobilesafe.service.AddressService")) {
      showAddressBtn.setChecked(true);
    } else {
      showAddressBtn.setChecked(false);
    }
    showAddressBtn.setOnClickListener(new OnClickListener() {
      @Override
      public void onClick(View arg0) {
        if (showAddressBtn.isChecked()) {
          showAddressBtn.setChecked(false);
          stopService(new Intent(getApplicationContext(),
              AddressService.class));
        } else {
          showAddressBtn.setChecked(true);
          startService(new Intent(getApplicationContext(),
              AddressService.class));
        }
      }
    });

    siv_item = (SettingItemView) findViewById(R.id.siv_item);
    sp = getSharedPreferences("config", MODE_PRIVATE);
    // 根據(jù)保存的數(shù)據(jù)設(shè)置狀態(tài)
    boolean update = sp.getBoolean("update", false);
    if (update) {
      siv_item.setChecked(true);
    } else {
      siv_item.setChecked(false);
    }

    // 自動(dòng)更新的點(diǎn)擊事件
    siv_item.setOnClickListener(new OnClickListener() {
      @Override
      public void onClick(View arg0) {
        Editor editor = sp.edit();
        if (siv_item.isChecked()) {
          // 設(shè)置不選中
          siv_item.setChecked(false);
          editor.putBoolean("update", false);
        } else {
          // 設(shè)置選中
          siv_item.setChecked(true);
          editor.putBoolean("update", true);
        }
        editor.commit();
      }
    });
  }
}

ServicesUtils.java

package com.qingguow.mobilesafe.utils;

import java.util.List;

import android.app.ActivityManager;
import android.app.ActivityManager.RunningServiceInfo;
import android.content.Context;
/**
 * 服務(wù)工具類(lèi)
 * @author taoshihan
 *
 */
public class ServiceUtils {
  /**
   * 判斷某服務(wù)是否開(kāi)啟
   * @param context
   * @param serviceName
   * @return
   */
  public static boolean isRunningService(Context context,String serviceName){
    ActivityManager am=(ActivityManager) context.getSystemService(Context.ACTIVITY_SERVICE);
    List<RunningServiceInfo> infos=am.getRunningServices(100);
    for(RunningServiceInfo info:infos){
      String name=info.service.getClassName();
      if(name.equals(serviceName)){
        return true;
      }
    }
    return false;
  }
}

設(shè)置效果如下:

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

相關(guān)文章

最新評(píng)論

巴彦县| 汝南县| 澄城县| 建阳市| 邵阳市| 泸州市| 平南县| 阳新县| 吉木乃县| 安阳县| 牡丹江市| 博客| 连州市| 建宁县| 五峰| 郴州市| 长阳| 寿光市| 潢川县| 新民市| 聂荣县| 北宁市| 都匀市| 和硕县| 河曲县| 长垣县| 仪陇县| 通江县| 临潭县| 洮南市| 揭西县| 双牌县| 肥城市| 台江县| 綦江县| 安陆市| 兰西县| 盱眙县| 合水县| 卓尼县| 平邑县|