亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

android短信管理器SmsManager有什么用

發布時間:2021-07-15 11:22:26 來源:億速云 閱讀:125 作者:小新 欄目:移動開發

小編給大家分享一下android短信管理器SmsManager有什么用,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

具體內容如下

需要注冊的權限

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

群發短信

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) { 
          // 創建PendIntent對象 
          PendingIntent ped = PendingIntent.getActivity( 
              MainActivity.this, 0, new Intent(), 0); 
          // 發送信息 
          sManger.sendTextMessage(send, null, ed2.getText() 
              .toString(), ped, null); 
        } 
        // 提示消息發送完畢 
        Toast.makeText(MainActivity.this, "短信群發完", Toast.LENGTH_LONG) 
            .show(); 
      } 
    }); 
    bt2.setOnClickListener(new OnClickListener() { 
 
      @Override 
      public void onClick(View v) { 
        // 查看聯系人的電話號碼 
        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); 
            // 獲取聯系人的電話號碼 并去掉中間的中畫、空格 
            String number = cursor 
                .getString( 
                    cursor.getColumnIndex(ContactsContract.CommonDataKinds.Phone.NUMBER)) 
                .replace("-", ""); 
            rb.setText(number); 
            // 如果該號碼已經加入發送人名單,默認勾選該號碼 
            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布局文件對應的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="獲取聯系人"/> 
  <Button  
    android:id="@+id/bt1" 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:text="發送信息"/> 
 
</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>

以上是“android短信管理器SmsManager有什么用”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

普兰店市| 肥东县| 鹤山市| 措美县| 彭山县| 潮安县| 涟源市| 鹤壁市| 榆社县| 开阳县| 池州市| 武山县| 平乡县| 樟树市| 西盟| 嘉善县| 黄陵县| 永和县| 庆云县| 铜川市| 新竹市| 股票| 麦盖提县| 巴彦淖尔市| 凯里市| 铜梁县| 浠水县| 县级市| 石屏县| 仙游县| 昔阳县| 灵宝市| 苏尼特右旗| 龙胜| 深圳市| 长丰县| 兴海县| 文成县| 安顺市| 德钦县| 巴彦县|