欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

android短信管理器SmsManager實例詳解

 更新時間:2017年11月14日 15:39:21   作者:村頭那摳腳大叔  
這篇文章主要為大家詳細(xì)介紹了android短信管理器SmsManager實例,具有一定的參考價值,感興趣的小伙伴們可以參考一下

本文實例為大家分享了android短信管理器SmsManager的具體代碼,供大家參考,具體內(nèi)容如下

需要注冊的權(quán)限

<uses-permission android:name="android.permission.READ_CONTACTS"/> 
<uses-permission android:name="android.permission.SEND_SMS"/> 

群發(fā)短信

package com.android.xiong.groupsend; 
 
import java.util.ArrayList; 
import java.util.List; 
 
import android.app.Activity; 
import android.app.AlertDialog; 
import android.app.PendingIntent; 
import android.content.DialogInterface; 
import android.content.Intent; 
import android.database.Cursor; 
import android.os.Bundle; 
import android.provider.ContactsContract; 
import android.telephony.SmsManager; 
import android.view.Menu; 
import android.view.View; 
import android.view.ViewGroup; 
import android.view.View.OnClickListener; 
import android.widget.BaseAdapter; 
import android.widget.Button; 
import android.widget.CheckBox; 
import android.widget.EditText; 
import android.widget.ListView; 
import android.widget.Toast; 
 
public class MainActivity extends Activity { 
 
  private Button bt1, bt2; 
  private EditText ed1, ed2; 
  private SmsManager sManger; 
  List<String> sendList = new ArrayList<String>(); 
 
  @Override 
  protected void onCreate(Bundle savedInstanceState) { 
    super.onCreate(savedInstanceState); 
    setContentView(R.layout.activity_main); 
    bt1 = (Button) findViewById(R.id.bt1); 
    bt2 = (Button) findViewById(R.id.bt2); 
    ed1 = (EditText) findViewById(R.id.ed1); 
    ed2 = (EditText) findViewById(R.id.ed2); 
    // 獲取SmsManger 
    sManger = SmsManager.getDefault(); 
    bt1.setOnClickListener(new OnClickListener() { 
 
      @Override 
      public void onClick(View v) { 
        for (String send : sendList) { 
          // 創(chuàng)建PendIntent對象 
          PendingIntent ped = PendingIntent.getActivity( 
              MainActivity.this, 0, new Intent(), 0); 
          // 發(fā)送信息 
          sManger.sendTextMessage(send, null, ed2.getText() 
              .toString(), ped, null); 
        } 
        // 提示消息發(fā)送完畢 
        Toast.makeText(MainActivity.this, "短信群發(fā)完", Toast.LENGTH_LONG) 
            .show(); 
      } 
    }); 
    bt2.setOnClickListener(new OnClickListener() { 
 
      @Override 
      public void onClick(View v) { 
        // 查看聯(lián)系人的電話號碼 
        final Cursor cursor = getContentResolver().query( 
            ContactsContract.CommonDataKinds.Phone.CONTENT_URI, 
            null, null, null, null); 
        BaseAdapter adapter = new BaseAdapter() { 
 
          @Override 
          public View getView(int position, View convertView, 
              ViewGroup parent) { 
            cursor.moveToPosition(position); 
            CheckBox rb = new CheckBox(MainActivity.this); 
            // 獲取聯(lián)系人的電話號碼 并去掉中間的中畫、空格 
            String number = cursor 
                .getString( 
                    cursor.getColumnIndex(ContactsContract.CommonDataKinds.Phone.NUMBER)) 
                .replace("-", ""); 
            rb.setText(number); 
            // 如果該號碼已經(jīng)加入發(fā)送人名單,默認(rèn)勾選該號碼 
            if (sendList.contains(number)) { 
              rb.setChecked(true); 
            } 
            return rb; 
          } 
 
          @Override 
          public long getItemId(int position) { 
            // TODO Auto-generated method stub 
            return position; 
          } 
 
          @Override 
          public Object getItem(int position) { 
            // TODO Auto-generated method stub 
            return position; 
          } 
 
          @Override 
          public int getCount() { 
            // TODO Auto-generated method stub 
            return cursor.getCount(); 
          } 
        }; 
        // 加載list.xml布局文件對應(yīng)的View 
        View selectView = getLayoutInflater().inflate(R.layout.item, 
            null); 
        final ListView listView = (ListView) selectView 
            .findViewById(R.id.list1); 
        listView.setAdapter(adapter); 
        new AlertDialog.Builder(MainActivity.this).setView(selectView).setPositiveButton("確定", new DialogInterface.OnClickListener() { 
           
          @Override 
          public void onClick(DialogInterface dialog, int which) { 
            //清空sendList集合 
            sendList.clear(); 
            //遍歷listView組件的每個列表項 
            for(int i=0;i<listView.getCount();i++){ 
              CheckBox checkBox=(CheckBox)listView.getChildAt(i); 
              //如果該列表項被勾選 
              if(checkBox.isChecked()){ 
                //添加到該列表項中 
                sendList.add(checkBox.getText().toString()); 
                ed1.append(checkBox.getText().toString()+","); 
              } 
            } 
             
          } 
        }).show(); 
      } 
    }); 
  } 
 
  @Override 
  public boolean onCreateOptionsMenu(Menu menu) { 
    // Inflate the menu; this adds items to the action bar if it is present. 
    getMenuInflater().inflate(R.menu.main, menu); 
    return true; 
  } 
 
} 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
  xmlns:tools="http://schemas.android.com/tools" 
  android:layout_width="match_parent" 
  android:layout_height="match_parent" 
  android:orientation="vertical" 
  tools:context=".MainActivity" > 
   
  <EditText  
    android:id="@+id/ed1" 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content"/> 
  <EditText  
    android:id="@+id/ed2" 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    /> 
  <Button  
    android:id="@+id/bt2" 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:text="獲取聯(lián)系人"/> 
  <Button  
    android:id="@+id/bt1" 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:text="發(fā)送信息"/> 
 
</LinearLayout> 
<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
  android:layout_width="match_parent" 
  android:layout_height="match_parent" 
  android:orientation="vertical" > 
 
 
  <ListView 
    android:id="@+id/list1" 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" > 
  </ListView> 
 
</LinearLayout> 

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

相關(guān)文章

  • Android 自定義View實現(xiàn)抽屜效果

    Android 自定義View實現(xiàn)抽屜效果

    這篇文章主要介紹了Android 自定義View實現(xiàn)抽屜效果的相關(guān)資料,需要的朋友可以參考下
    2017-05-05
  • Android使用 Spinner控件實現(xiàn)下拉框功能

    Android使用 Spinner控件實現(xiàn)下拉框功能

    Spinner是android的一種控件,用它我們可以實現(xiàn)下拉框。下面通過實例代碼給大家介紹Android使用 Spinner控件實現(xiàn)下拉框功能,感興趣的朋友一起看看吧
    2018-08-08
  • Android實現(xiàn)局部圖片滑動指引效果示例

    Android實現(xiàn)局部圖片滑動指引效果示例

    現(xiàn)在滑動效果用的比較多,尤其是在手機端上面,本文介紹了Android實現(xiàn)局部圖片滑動指引效果示例,現(xiàn)在就分享給大家,也給大家做個參考。
    2016-10-10
  • Android 開發(fā)實現(xiàn)EditText 光標(biāo)居右顯示

    Android 開發(fā)實現(xiàn)EditText 光標(biāo)居右顯示

    這篇文章主要介紹了Android 開發(fā)實現(xiàn)EditText 光標(biāo)居右顯示的相關(guān)資料,需要的朋友可以參考下
    2017-02-02
  • android SDk中常用的java包介紹

    android SDk中常用的java包介紹

    在android的應(yīng)用程序開發(fā)中,通常使用的是java語言,除了需要熟悉java語言的基礎(chǔ)知識之外,還需要了解android提供的擴展的java功能。android SDK中API提供一些擴展的java 類庫,類庫分為若干個包,每個包中包含若干個類
    2014-05-05
  • Android項目實戰(zhàn)手把手教你畫圓形水波紋loadingview

    Android項目實戰(zhàn)手把手教你畫圓形水波紋loadingview

    這篇文章主要為大家詳細(xì)介紹了Android項目實戰(zhàn)手把手教你畫圓形水波紋loadingview,文中示例代碼介紹的非常詳細(xì),具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2016-01-01
  • Android使用AudioRecord實現(xiàn)暫停錄音功能實例代碼

    Android使用AudioRecord實現(xiàn)暫停錄音功能實例代碼

    本篇文章主要介紹了Android使用AudioRecord實現(xiàn)暫停錄音功能實例代碼,具有一定的參考價值,有興趣的可以了解一下
    2017-06-06
  • Android如何使用Glide加載清晰長圖

    Android如何使用Glide加載清晰長圖

    這篇文章主要介紹了Android如何使用Glide加載清晰長圖,幫助大家更好的理解和而學(xué)習(xí)使用Android開發(fā),感興趣的朋友可以了解下
    2021-03-03
  • Android屏蔽EditText軟鍵盤的方法

    Android屏蔽EditText軟鍵盤的方法

    這篇文章主要介紹了Android屏蔽EditText軟鍵盤的方法,涉及Android屏蔽EditText軟鍵盤及恢復(fù)軟鍵盤的相關(guān)技巧,具有一定參考借鑒價值,需要的朋友可以參考下
    2015-07-07
  • Android點擊Button實現(xiàn)功能的幾種方法總結(jié)

    Android點擊Button實現(xiàn)功能的幾種方法總結(jié)

    當(dāng)Button有多個或者Button的使用次數(shù)很多時,我們需要采用綁定監(jiān)聽器的做法,其實,綁定監(jiān)聽器也有幾種方法,不過,我在這里就不一一列舉了,畢竟那些方法在實際的應(yīng)用中也不常見
    2013-10-10

最新評論