top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

Android SMS: How to send the 3 edittext values and 2 spinner values as a single message?

+2 votes
607 views

How to send the 3 edittext values and 2 spinner values as a single message to particular number while clicking send button?

posted Sep 11, 2014 by anonymous

Looking for an answer?  Promote on:
Facebook Share Button Twitter Share Button LinkedIn Share Button
Can u please provide more detail what u have tried and what u are trying to achieve. It is not very clear what you are trying to ask here. However I would suggest to have a look at the following

http://www.tutorialspoint.com/android/android_sending_sms.htm

Similar Questions
0 votes

Eg: If I want to send a message to destination number "**********", then what is the correct code to do it?

+1 vote

I need to inbuilt BarCode/QR Code scanning feature in one of my android application. I've one api of Zxing ( https://github.com/zxing/zxing) but required some other option.

+1 vote

I working on a project which needs adding a service with JNI to the system server and also a new daemon in init.rc script. I have successfully done this.
I might need the system service to periodically send SIGUSR1/2 signals to the daemon. Linux requires a sender of signals to be root. Do I have this privilege inside system server in Android?

+2 votes

I am using drop down menu (spinner) and I want know how to get value from drop down menu to a variable if user selects one?
Example : select city=Varanasi,Delhi,Chennai,Erode etc. and if user selects Chennai then store it to a java variable.

   String selectedCity;
   //after selecting from drop down menu
   selectedCity="Chennai";
...