एंड्रॉइड में एसएमएस व्यू को लिखें


167

मैं Android के साथ एक एसएमएस भेजना चाहता हूं।

एसएमएस भेजने का इरादा क्या है?

मैं संदेश क्षेत्र में अपने पूर्व-परिभाषित पाठ के साथ कम्पोज़ एसएमएस दृश्य दिखाना चाहता हूं।


1
पूरी कहानी के लिए आपको इस एक्ट्रेस को पढ़ना चाहिए ।
गुयेन मिन्ह बिनह

मैं यहाँ कुछ ऐसा ही कर रहा हूँ !!! stackoverflow.com/questions/14452808/…
toobsco42

@ toobsco42: नहीं, आप सटीक ओपोसिट कर रहे हैं। आप स्वयं एसएमएस भेज रहे हैं और यह प्रश्न मानक एसएमएस एप्लिकेशन के माध्यम से कॉल करता है ।
Jan Hudec

आप दोहरे सिम उपकरणों का भी समर्थन कर सकते हैं, इसे देखें: stackoverflow.com/a/30677542/2267723
मैहर अबुथ्रा

यह लेख एंड्रॉइड पर एसएमएस / एमएमएस की आसान व्याख्या करता है, एसएमएस भेजने और एसएमएस प्राप्त करने के लिए बस कोड उदाहरण प्रदान करता है: codeproject.com/Articles/1044639/…
Rou1997

जवाबों:


199

आप निम्नलिखित कोड का उपयोग कर सकते हैं:

startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("sms:"
                        + phoneNumber)));

सुनिश्चित करें कि आप phoneNumberउस फ़ोन नंबर पर सेट हैं जिसे आप संदेश भेजना चाहते हैं

आप (टिप्पणियों से) एसएमएस पर एक संदेश जोड़ सकते हैं:

Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("sms:" + phoneNumber));     
intent.putExtra("sms_body", message); 
startActivity(intent);

87
आपके कोड के लिए धन्यवाद। और मैं जोड़ना चाहता हूं, क्योंकि मुझे अपना पूर्वनिर्धारित पाठ लगाने की आवश्यकता है। मुझे यह समाधान मिला है इरादे का इरादा = नया इरादा (Intent.ACTION_VIEW, Uri.parse ("sms:" + phoneNumber)); आशय .putExtra ("sms_body", संदेश); startActivity (इरादा);
djk

1
संपर्क सूची से "फोननंबर" कैसे सेट करें?
सईद एम।

@djk धन्यवाद मैं सभी संपर्कों को पढ़ना चाहता हूं और ऑटो पूर्ण के साथ एसएमएस भेजने के लिए खुद का पेज चाहता हूं लेकिन मैं किसी भी अच्छे ट्यूटोरियल के संपर्कों को पढ़ने में सक्षम नहीं हूं?
गुरु 12

मैं इसे करने के लिए डिफ़ॉल्ट एसएमएस कंपोज़ विजेट का उपयोग करूंगा। बस फोन नंबर को खाली छोड़ दें (यह वैकल्पिक है)
shem

1
नमस्ते। मैं थोक एसएमएस भेजना चाहता हूं। जैसे सिंगल क्लिक पर 10,000 एसएमएस भेजते हैं। क्या यह संभव है ? मैंने सुना है कि एंड्रॉइड हर 30 मिनट में 30 एसएमएस भेजते हैं। plz मेरी मदद करें
व्रजेश

151

इसने मेरे लिए काम किया।

public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
    Button btnSendSMS = (Button) findViewById(R.id.btnSendSMS);
    btnSendSMS.setOnClickListener(new View.OnClickListener() {
        public void onClick(View v) {
            sendSMS("5556", "Hi You got a message!");
           /*here i can send message to emulator 5556. In Real device 
            *you can change number*/
        }
    });
}

//Sends an SMS message to another device

private void sendSMS(String phoneNumber, String message) {
    SmsManager sms = SmsManager.getDefault();
    sms.sendTextMessage(phoneNumber, null, message, null, null);
}

आप इस लाइन को AndroidManifest.xml में जोड़ सकते हैं

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

इस पर एक नजर

यह आपके लिए मददगार हो सकता है।


11
प्रश्न मानक कंपोज़ व्यू में एसएमएस दिखाने के लिए कहता है। यह सटीक विपरीत है, उपयोगकर्ता की पीठ के पीछे एसएमएस भेज रहा है, नहीं?
Jan Hudec

यदि इसमें एपोस्ट्रोपी है तो यह संदेश भेजने में विफल रहता है।
berserk

39

नीचे दिए गए कोड को आज़माएं और फिर sendSMS("99999999999", "message");वांछित संख्या में एसएमएस भेजने के लिए कॉल करें ।

//---sends an SMS message to another device---
@SuppressWarnings("deprecation")
private void sendSMS(String phoneNumber, String message)
{        
    Log.v("phoneNumber",phoneNumber);
    Log.v("MEssage",message);
    PendingIntent pi = PendingIntent.getActivity(this, 0,
    new Intent(this, **DummyClasshere.class**), 0);                
    SmsManager sms = SmsManager.getDefault();
    sms.sendTextMessage(phoneNumber, null, message, pi, null);        
}

कृपया AndroidManifest.xmlफ़ाइल में निम्नलिखित अनुमति दें ।

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

आशा है कि यह मदद कर सकता है।

टिप्पणी से अपडेट करें : DummyClasshere.class किसी भी प्रक्रिया या वर्ग जिसमें यू को नेविगेट करने की आवश्यकता है, किए बिना एक गतिविधि है।

आप DummyClasshere.class के स्थान पर Object.class का उपयोग कर सकते हैं।


किसी भी प्रक्रिया को करने के बिना एक गतिविधि। इसके अलावा जिस कक्षा में आपको नेविगेट करने की आवश्यकता है ..
सेंथिल मिलीग्राम

मैं सिर्फ उपयोग new Intent()करता हूं और वह करता है।
ओस्मियम यूएसए

अगर संदेश (sms) भेजा गया तो आपको कैसे पता चलेगा?
निंजा कोडिंग

28

यह निश्चित रूप से काम करेगा, इसमें किसी भी इरादे का उपयोग किए बिना संदेश भेजें।

SmsManager smsManager =     SmsManager.getDefault();
smsManager.sendTextMessage("Phone Number", null, "Message", null, null);

इस कोड का उपयोग बैकग्राउंड में मैसेज भेजने के लिए किया जाता है (मैसेज कंपोज़र को नहीं दिखाते) , यह ब्रॉडकास्टर रिसीवर के अंदर भी काम कर सकता है । यदि आप ब्रॉडकास्ट रिसीवर से संदेश भेजना चाहते हैं।

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

1
+1। मेरी आवश्यकता के लिए काम किया। लेकिन मुझे एक बात याद आ रही है। यह संदेश मेरे भेजे गए आइटम में दिखाई नहीं देता है। ऐसा क्यों हैं?
ताहिर अकरम

हमने sms भेजने के लिए डिफ़ॉल्ट इन्टेन प्रक्रिया का उपयोग नहीं किया है, हम सिर्फ Sms मैनेजर का उपयोग कर रहे हैं। इरादा SmsManager के लॉग को बनाए रखने के लिए मिलेंगे।
द्विवेदी जी

हाँ। यह मेरे लिए बहुत उपयोगी है। लेकिन sms भेजने के बाद दिए गए कन्फर्मेशन मैसेज का मतलब बेहतर हो सकता है।
गुनासेलन

3
मैं सिर्फ कोशिश में इस ब्लॉक को जोड़ने की सलाह दूंगा।
तनवीर शेख

10

एंड्रॉइड में, हमारे पास वर्ग SmsManager है जो एसएमएस ऑपरेशन का प्रबंधन करता है जैसे डेटा, टेक्स्ट, और एसएमएस संदेश भेजना। स्थिर ऑब्जेक्ट SmsManager.getDefault () को कॉल करके इस ऑब्जेक्ट को प्राप्त करें।

SmsManager Javadoc

एसएमएस भेजने के लिए नमूना कोड प्राप्त करने के लिए निम्नलिखित लिंक की जाँच करें:

Android में एसएमएस संदेश भेजने और प्राप्त करने पर लेख


10

आशा है कि यह कोड आपकी मदद करता है :)

public class MainActivity extends Activity {
    private int mMessageSentParts;
    private int mMessageSentTotalParts;
    private int mMessageSentCount;
     String SENT = "SMS_SENT";
     String DELIVERED = "SMS_DELIVERED";
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        Button button=(Button)findViewById(R.id.button1);
        button.setOnClickListener(new OnClickListener() {

            @Override
            public void onClick(View v) {
                // TODO Auto-generated method stub
                String phoneNumber = "0000000000";
                String message = "Hello World!";
                sendSMS(phoneNumber,message);


            }
        });



    }


    public void sendSMS(String phoneNumber,String message) {
        SmsManager smsManager = SmsManager.getDefault();


         String SENT = "SMS_SENT";
            String DELIVERED = "SMS_DELIVERED";

            SmsManager sms = SmsManager.getDefault();
            ArrayList<String> parts = sms.divideMessage(message);
            int messageCount = parts.size();

            Log.i("Message Count", "Message Count: " + messageCount);

            ArrayList<PendingIntent> deliveryIntents = new ArrayList<PendingIntent>();
            ArrayList<PendingIntent> sentIntents = new ArrayList<PendingIntent>();

            PendingIntent sentPI = PendingIntent.getBroadcast(this, 0, new Intent(SENT), 0);
            PendingIntent deliveredPI = PendingIntent.getBroadcast(this, 0, new Intent(DELIVERED), 0);

            for (int j = 0; j < messageCount; j++) {
                sentIntents.add(sentPI);
                deliveryIntents.add(deliveredPI);
            }

            // ---when the SMS has been sent---
            registerReceiver(new BroadcastReceiver() {
                @Override
                public void onReceive(Context arg0, Intent arg1) {
                    switch (getResultCode()) {
                    case Activity.RESULT_OK:
                        Toast.makeText(getBaseContext(), "SMS sent",
                                Toast.LENGTH_SHORT).show();
                        break;
                    case SmsManager.RESULT_ERROR_GENERIC_FAILURE:
                        Toast.makeText(getBaseContext(), "Generic failure",
                                Toast.LENGTH_SHORT).show();
                        break;
                    case SmsManager.RESULT_ERROR_NO_SERVICE:
                        Toast.makeText(getBaseContext(), "No service",
                                Toast.LENGTH_SHORT).show();
                        break;
                    case SmsManager.RESULT_ERROR_NULL_PDU:
                        Toast.makeText(getBaseContext(), "Null PDU",
                                Toast.LENGTH_SHORT).show();
                        break;
                    case SmsManager.RESULT_ERROR_RADIO_OFF:
                        Toast.makeText(getBaseContext(), "Radio off",
                                Toast.LENGTH_SHORT).show();
                        break;
                    }
                }
            }, new IntentFilter(SENT));

            // ---when the SMS has been delivered---
            registerReceiver(new BroadcastReceiver() {
                @Override
                public void onReceive(Context arg0, Intent arg1) {
                    switch (getResultCode()) {

                    case Activity.RESULT_OK:
                        Toast.makeText(getBaseContext(), "SMS delivered",
                                Toast.LENGTH_SHORT).show();
                        break;
                    case Activity.RESULT_CANCELED:
                        Toast.makeText(getBaseContext(), "SMS not delivered",
                                Toast.LENGTH_SHORT).show();
                        break;
                    }
                }
            }, new IntentFilter(DELIVERED));
  smsManager.sendTextMessage(phoneNumber, null, message, sentPI, deliveredPI);
           /* sms.sendMultipartTextMessage(phoneNumber, null, parts, sentIntents, deliveryIntents); */
    }
}

7

अगर मैं किसी की मदद कर सकता हूं तो मैं अपना एसएमएस तरीका जोड़ता हूं। SmsManager.sendTextMessage के साथ सावधान रहें, यदि पाठ बहुत लंबा है, तो संदेश दूर नहीं जाता है। आपको एन्कोडिंग के आधार पर अधिकतम लंबाई का सम्मान करना होगा। जब 160 से कम वर्ण होते हैं तो अधिक जानकारी यहाँ SMS प्रबंधक उत्परिवर्तित संदेश भेजते हैं

// हर जगह का उपयोग करने के लिए

SMSUtils.sendSMS(context, phoneNumber, message);

// प्रकट

<!-- SMS -->
<uses-permission android:name="android.permission.SEND_SMS"/>
<uses-permission android:name="android.permission.READ_PHONE_STATE"/>

 <receiver
     android:name=".SMSUtils"
     android:enabled="true"
     android:exported="true">
     <intent-filter>
         <action android:name="SMS_SENT"/>
         <action android:name="SMS_DELIVERED"/>
      </intent-filter>
 </receiver>

//जावा

public class SMSUtils extends BroadcastReceiver {

    public static final String SENT_SMS_ACTION_NAME = "SMS_SENT";
    public static final String DELIVERED_SMS_ACTION_NAME = "SMS_DELIVERED";

    @Override
    public void onReceive(Context context, Intent intent) {
        //Detect l'envoie de sms
        if (intent.getAction().equals(SENT_SMS_ACTION_NAME)) {
            switch (getResultCode()) {
                case Activity.RESULT_OK: // Sms sent
                    Toast.makeText(context, context.getString(R.string.sms_send), Toast.LENGTH_LONG).show();
                    break;
                case SmsManager.RESULT_ERROR_GENERIC_FAILURE: // generic failure
                    Toast.makeText(context, context.getString(R.string.sms_not_send), Toast.LENGTH_LONG).show();
                    break;
                case SmsManager.RESULT_ERROR_NO_SERVICE: // No service
                    Toast.makeText(context, context.getString(R.string.sms_not_send_no_service), Toast.LENGTH_LONG).show();
                    break;
                case SmsManager.RESULT_ERROR_NULL_PDU: // null pdu
                    Toast.makeText(context, context.getString(R.string.sms_not_send), Toast.LENGTH_LONG).show();
                    break;
                case SmsManager.RESULT_ERROR_RADIO_OFF: //Radio off
                    Toast.makeText(context, context.getString(R.string.sms_not_send_no_radio), Toast.LENGTH_LONG).show();
                    break;
            }
        }
        //detect la reception d'un sms
        else if (intent.getAction().equals(DELIVERED_SMS_ACTION_NAME)) {
            switch (getResultCode()) {
                case Activity.RESULT_OK:
                    Toast.makeText(context, context.getString(R.string.sms_receive), Toast.LENGTH_LONG).show();
                    break;
                case Activity.RESULT_CANCELED:
                    Toast.makeText(context, context.getString(R.string.sms_not_receive), Toast.LENGTH_LONG).show();
                    break;
            }
        }
    }

    /**
     * Test if device can send SMS
     * @param context
     * @return
     */
    public static boolean canSendSMS(Context context) {
        return context.getPackageManager().hasSystemFeature(PackageManager.FEATURE_TELEPHONY);
    }

    public static void sendSMS(final Context context, String phoneNumber, String message) {

        if (!canSendSMS(context)) {
            Toast.makeText(context, context.getString(R.string.cannot_send_sms), Toast.LENGTH_LONG).show();
            return;
        }

        PendingIntent sentPI = PendingIntent.getBroadcast(context, 0, new Intent(SENT_SMS_ACTION_NAME), 0);
        PendingIntent deliveredPI = PendingIntent.getBroadcast(context, 0, new Intent(DELIVERED_SMS_ACTION_NAME), 0);

        final SMSUtils smsUtils = new SMSUtils();
        //register for sending and delivery
        context.registerReceiver(smsUtils, new IntentFilter(SMSUtils.SENT_SMS_ACTION_NAME));
        context.registerReceiver(smsUtils, new IntentFilter(DELIVERED_SMS_ACTION_NAME));

        SmsManager sms = SmsManager.getDefault();
        ArrayList<String> parts = sms.divideMessage(message);

        ArrayList<PendingIntent> sendList = new ArrayList<>();
        sendList.add(sentPI);

        ArrayList<PendingIntent> deliverList = new ArrayList<>();
        deliverList.add(deliveredPI);

        sms.sendMultipartTextMessage(phoneNumber, null, parts, sendList, deliverList);

        //we unsubscribed in 10 seconds 
        new Handler().postDelayed(new Runnable() {
            @Override
            public void run() {
                context.unregisterReceiver(smsUtils);
            }
        }, 10000);

    }
}

5
String phoneNumber = "0123456789";
String message = "Hello World!";

SmsManager smsManager = SmsManager.getDefault();
smsManager.sendTextMessage(phoneNumber, null, message, null, null);

अपनी AndroidManifest.xml फ़ाइल में निम्नलिखित अनुमति शामिल करें

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

4

ऊपर जो कुछ बताया गया है, वह केवल एक एसएमएस को 'लॉन्च करने के लिए तैयार' राज्य में रखने के लिए है। जैसा कि सेंथिल एमजी ने कहा है कि आप एसएमएस प्रबंधक का उपयोग करके एसएमएस सीधे भेज सकते हैं लेकिनSMSManager करने के लिए ले जाया गया हैandroid.telephony.SmsManager

मुझे पता है कि यह बहुत अधिक जानकारी नहीं है, लेकिन यह किसी दिन किसी की मदद कर सकता है।


प्रश्न स्पष्ट रूप से एसएमएस स्वयं नहीं भेजने के लिए कहता है ।
जन हडेक

3

आशा है कि यह मदद कर सकता है ...

फ़ाइल नाम = MainActivity.java

import android.os.Bundle;
import android.app.Activity;
import android.telephony.SmsManager;
import android.view.Menu;
import android.view.inputmethod.InputMethodManager;
import android.widget.*;
import android.view.View.OnClickListener;
import android.view.*;


public class MainActivity extends Activity implements OnClickListener{


  Button click;
  EditText txt;
  TextView txtvw;

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

    click = (Button)findViewById(R.id.button);
    txt = (EditText)findViewById(R.id.editText);
    txtvw = (TextView)findViewById(R.id.textView1);

    click.setOnClickListener(this);
}

@Override
public void onClick(View v){


    txt.setText("");
    v = this.getCurrentFocus();

    try{
        SmsManager sms = SmsManager.getDefault();
        sms.sendTextMessage("8017891398",null,"Sent from Android",null,null);
    }
    catch(Exception e){
        txtvw.setText("Message not sent!");
    }
    if(v != null){
        InputMethodManager imm = (InputMethodManager)getSystemService(INPUT_METHOD_SERVICE);
        imm.hideSoftInputFromWindow(v.getWindowToken(),0);
    }

}

@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;
  }

}

AndroidManifest.xml में यह लाइन जोड़ें

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

यहां छवि विवरण दर्ज करें


3

यह मौजूदा एप्लिकेशन के माध्यम से पाठ संदेश भेजने की अनुमति देता है। फोननंबर - स्ट्रिंग है। यदि आप फ़ोन नंबर निर्दिष्ट नहीं करना चाहते हैं, तो खाली स्ट्रिंग का उपयोग करें ""।

Intent sendIntent = new Intent(Intent.ACTION_SENDTO, Uri.fromParts("smsto", phoneNumber, null));
sendIntent.putExtra("sms_body", "text message");
startActivity(sendIntent);

2

किटकैट और ऊपर से एसएमएस भेजें: - अपने AndroidManifest.xml में इस अनुमति जोड़ें

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

आपको मार्शमैलो और उसके बाद के संस्करण के लिए रनटाइम अनुमति को भी लागू करना चाहिए ।

AndroidManifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.defaultmessanginggit">

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

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
        <activity
            android:name=".ConversationListActivity"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity
            android:name=".ComposeSMSActivity"
            android:label="@string/title_activity_compose_sms" >
        </activity>
    </application>

</manifest>

जो कोड नीचे दिया जाएगा: -

activity_conversation_list.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    xmlns:tools="http://schemas.android.com/tools"
    android:orientation="vertical">

    <Button
        android:id="@+id/btn_send_msg"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Message" />
</LinearLayout> 

ConversationListActivity.java

public class ConversationListActivity extends FragmentActivity {

    /**
     * Whether or not the activity is in two-pane mode, i.e. running on a tablet
     * device.
     */
    private int PERMISSIONS_REQUEST_RECEIVE_SMS = 130;
    private Button btn_send_sms;

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

        btn_send_sms = (Button) findViewById(R.id.btn_send_msg);

        btn_send_sms.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {

                int hasSendSMSPermission = 0;
                if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.M) {
                    hasSendSMSPermission = checkSelfPermission(Manifest.permission.SEND_SMS);
                    if (hasSendSMSPermission != PackageManager.PERMISSION_GRANTED) {
                        requestPermissions(new String[]{Manifest.permission.SEND_SMS},
                                PERMISSIONS_REQUEST_RECEIVE_SMS);
                    } else if (hasSendSMSPermission == PackageManager.PERMISSION_GRANTED) {
                        Intent intent = new Intent(ConversationListActivity.this, ComposeSMSActivity.class);
                        startActivity(intent);
                    }
                }else{
                    Intent intent = new Intent(ConversationListActivity.this, ComposeSMSActivity.class);
                    startActivity(intent);
                }
            }
        });
    }
}

यह एसएमएस लेआउट के लिए और एसएमएस भेजने के लिए कोड है: -

activity_compose_sms.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

    <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:tools="http://schemas.android.com/tools"
        android:id="@+id/container"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        tools:ignore="MergeRootFrame" />
</LinearLayout>

fragment_compose_sms.xml

<RelativeLayout 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:paddingLeft="16dp"
    android:paddingRight="16dp"
    android:paddingTop="16dp"
    android:paddingBottom="16dp">

    <LinearLayout
        android:orientation="vertical"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_alignParentTop="true"
        android:layout_alignParentStart="true">

        <LinearLayout
            android:orientation="horizontal"
            android:layout_width="match_parent"
            android:layout_height="wrap_content">

            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="@string/compose_to"
                android:id="@+id/textView"
                android:layout_gravity="center_vertical" />

            <EditText
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:inputType="phone"
                android:ems="10"
                android:id="@+id/composeEditTextTo" />
        </LinearLayout>

        <LinearLayout
            android:orientation="horizontal"
            android:layout_width="match_parent"
            android:layout_height="wrap_content">
            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="@string/compose_message"
                android:id="@+id/textView2"
                android:layout_gravity="center_vertical" />

            <EditText
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:inputType="textMultiLine"
                android:ems="10"
                android:id="@+id/composeEditTextMessage"
                android:layout_weight="1" />

        </LinearLayout>

        <LinearLayout
            android:orientation="horizontal"
            android:layout_width="match_parent"
            android:layout_height="wrap_content">

            <Button
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="@string/compose_cancel"
                android:id="@+id/composeButtonCancel" />

            <Button
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="@string/compose_send"
                android:id="@+id/composeButtonSend" />
        </LinearLayout>

        <LinearLayout
            android:orientation="vertical"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:paddingTop="10dp"
            android:id="@+id/composeNotDefault"
            android:visibility="invisible">

            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:textAppearance="?android:attr/textAppearanceMedium"
                android:text="@string/compose_not_default"
                android:id="@id/composeNotDefault" />

            <Button
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="@string/compose_set_default"
                android:id="@+id/composeButtonSetDefault" />
        </LinearLayout>


    </LinearLayout>
</RelativeLayout>

ComposeSMSActivity.java

public class ComposeSMSActivity extends Activity {

    Activity mActivity;

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

        mActivity = this;

        if (savedInstanceState == null) {
            getFragmentManager().beginTransaction()
                    .add(R.id.container, new PlaceholderFragment())
                    .commit();
        }

        getActionBar().setDisplayHomeAsUpEnabled(true);

    }

    public static class PlaceholderFragment extends Fragment {

        public PlaceholderFragment() {
        }

        @Override
        public View onCreateView(LayoutInflater inflater, ViewGroup container,
                                 Bundle savedInstanceState) {
            final View rootView = inflater.inflate(R.layout.fragment_compose_sms, container, false);

            rootView.findViewById(R.id.composeButtonCancel).setOnClickListener(new View.OnClickListener() {
                @Override
                public void onClick(View v) {
                    NavUtils.navigateUpTo(getActivity(), new Intent(getActivity(), ConversationListActivity.class));
                }
            });

            rootView.findViewById(R.id.composeButtonSend).setOnClickListener(new View.OnClickListener() {
                @Override
                public void onClick(View v) {
                    String recipient = ((TextView) rootView.findViewById(R.id.composeEditTextTo)).getText().toString();
                    String message = ((TextView) rootView.findViewById(R.id.composeEditTextMessage)).getText().toString();

                    SmsManager smsManager = SmsManager.getDefault();
                    smsManager.sendTextMessage(recipient, "ME", message, null, null);
                }
            });

            return rootView;
        }
    }
}

बस।


0

आप किसी भी नंबर पर sms भेजने के लिए इसका उपयोग कर सकते हैं:

 public void sendsms(View view) {
        String phoneNumber = "+880xxxxxxxxxx";
        String message = "Welcome to sms";
        Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("sms:" + phoneNumber));
        intent.putExtra("sms_body", message);
        startActivity(intent);
    }

1
अद्यतन: यदि आप एसएमएस भेजने के लिए इरादे का उपयोग करते हैं, तो आपको android.permission.SEND_SMS अनुमति की आवश्यकता नहीं है।
नफीस अहमद

0

उपयोगकर्ता से संपर्क करने के लिए, लेकिन शरीर में अपना एसएमएस पाठ सम्मिलित करने देने के लिए आप टेल नंबर को छोड़ सकते हैं। कोड Xamarin Android के लिए है:

    var uri = Uri.Parse("smsto:"); //append your number here for explicit nb
    var intent = new Intent(Intent.ActionSendto, uri);
    intent.PutExtra("sms_body", text);
    Context.StartActivity(intent);

कहाँ पे

प्रसंग है Xamarin.Essentials.Platform.CurrentActivity ?? Application.Context

हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.