Start an app and a function of that app when receiving an sms
I like to Develop an app which will change phone sound profile to normal on receiving a particular sms. How to set up a Broad Cast receiver to start the app as well as to start the activity
this is my code. I have have given each image button a function( change sounde profile- vibrate,silent,general). I want to trigger the general button when receiving an sms in a particular format (eg: change to general)
import android.app.Activity;
import android.media.AudioManager;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.ImageButton;
import android.widget.Toast;
public class MainActivity extends Activity {
ImageButton vibrate,silent,normal;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
vibrate = (ImageButton) findViewById(R.id.vibrate);
silent = (ImageButton) findViewById(R.id.silent);
normal = (ImageButton) findViewById(R.id.normal);
final AudioManager audioManager =
(AudioManager)
getSystemService(getApplicationContext().AUDIO_SERVICE);
vibrate.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
audioManager.setRingerMode(AudioManager.RINGER_MODE_VIBRATE);
Toast.makeText(getBaseContext(), "Mode: Vibration ",
Toast.LENGTH_SHORT).show();
}
});
silent.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
audioManager.setRingerMode(AudioManager.RINGER_MODE_SILENT);
Toast.makeText(getBaseContext(), "Mode: Silent ",
Toast.LENGTH_SHORT).show();
}
});
normal.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
audioManager.setRingerMode(AudioManager.RINGER_MODE_NORMAL);
Toast.makeText(getBaseContext(), "Mode: Ringing ",
Toast.LENGTH_SHORT).show();
}
});
}
}
}
please help
android android-broadcastreceiver
add a comment |
I like to Develop an app which will change phone sound profile to normal on receiving a particular sms. How to set up a Broad Cast receiver to start the app as well as to start the activity
this is my code. I have have given each image button a function( change sounde profile- vibrate,silent,general). I want to trigger the general button when receiving an sms in a particular format (eg: change to general)
import android.app.Activity;
import android.media.AudioManager;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.ImageButton;
import android.widget.Toast;
public class MainActivity extends Activity {
ImageButton vibrate,silent,normal;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
vibrate = (ImageButton) findViewById(R.id.vibrate);
silent = (ImageButton) findViewById(R.id.silent);
normal = (ImageButton) findViewById(R.id.normal);
final AudioManager audioManager =
(AudioManager)
getSystemService(getApplicationContext().AUDIO_SERVICE);
vibrate.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
audioManager.setRingerMode(AudioManager.RINGER_MODE_VIBRATE);
Toast.makeText(getBaseContext(), "Mode: Vibration ",
Toast.LENGTH_SHORT).show();
}
});
silent.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
audioManager.setRingerMode(AudioManager.RINGER_MODE_SILENT);
Toast.makeText(getBaseContext(), "Mode: Silent ",
Toast.LENGTH_SHORT).show();
}
});
normal.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
audioManager.setRingerMode(AudioManager.RINGER_MODE_NORMAL);
Toast.makeText(getBaseContext(), "Mode: Ringing ",
Toast.LENGTH_SHORT).show();
}
});
}
}
}
please help
android android-broadcastreceiver
There are many, many examples available that demonstrate how to receive incoming SMS. Have you tried any?
– Mike M.
Nov 20 at 20:45
@Mike sry..I have read some But could'nt understand it well.Can you help me in doing it?
– Jerin Joseph
Nov 20 at 20:50
I'm afraid this is not the right site for tutorials or step-by-step help. What you're asking, while not too difficult to do, does require several "moving parts". You're more likely to get help if you at least begin putting a solution together, and then come here when you hit a specific problem.
– Mike M.
Nov 20 at 20:58
add a comment |
I like to Develop an app which will change phone sound profile to normal on receiving a particular sms. How to set up a Broad Cast receiver to start the app as well as to start the activity
this is my code. I have have given each image button a function( change sounde profile- vibrate,silent,general). I want to trigger the general button when receiving an sms in a particular format (eg: change to general)
import android.app.Activity;
import android.media.AudioManager;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.ImageButton;
import android.widget.Toast;
public class MainActivity extends Activity {
ImageButton vibrate,silent,normal;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
vibrate = (ImageButton) findViewById(R.id.vibrate);
silent = (ImageButton) findViewById(R.id.silent);
normal = (ImageButton) findViewById(R.id.normal);
final AudioManager audioManager =
(AudioManager)
getSystemService(getApplicationContext().AUDIO_SERVICE);
vibrate.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
audioManager.setRingerMode(AudioManager.RINGER_MODE_VIBRATE);
Toast.makeText(getBaseContext(), "Mode: Vibration ",
Toast.LENGTH_SHORT).show();
}
});
silent.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
audioManager.setRingerMode(AudioManager.RINGER_MODE_SILENT);
Toast.makeText(getBaseContext(), "Mode: Silent ",
Toast.LENGTH_SHORT).show();
}
});
normal.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
audioManager.setRingerMode(AudioManager.RINGER_MODE_NORMAL);
Toast.makeText(getBaseContext(), "Mode: Ringing ",
Toast.LENGTH_SHORT).show();
}
});
}
}
}
please help
android android-broadcastreceiver
I like to Develop an app which will change phone sound profile to normal on receiving a particular sms. How to set up a Broad Cast receiver to start the app as well as to start the activity
this is my code. I have have given each image button a function( change sounde profile- vibrate,silent,general). I want to trigger the general button when receiving an sms in a particular format (eg: change to general)
import android.app.Activity;
import android.media.AudioManager;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.ImageButton;
import android.widget.Toast;
public class MainActivity extends Activity {
ImageButton vibrate,silent,normal;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
vibrate = (ImageButton) findViewById(R.id.vibrate);
silent = (ImageButton) findViewById(R.id.silent);
normal = (ImageButton) findViewById(R.id.normal);
final AudioManager audioManager =
(AudioManager)
getSystemService(getApplicationContext().AUDIO_SERVICE);
vibrate.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
audioManager.setRingerMode(AudioManager.RINGER_MODE_VIBRATE);
Toast.makeText(getBaseContext(), "Mode: Vibration ",
Toast.LENGTH_SHORT).show();
}
});
silent.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
audioManager.setRingerMode(AudioManager.RINGER_MODE_SILENT);
Toast.makeText(getBaseContext(), "Mode: Silent ",
Toast.LENGTH_SHORT).show();
}
});
normal.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
audioManager.setRingerMode(AudioManager.RINGER_MODE_NORMAL);
Toast.makeText(getBaseContext(), "Mode: Ringing ",
Toast.LENGTH_SHORT).show();
}
});
}
}
}
please help
android android-broadcastreceiver
android android-broadcastreceiver
asked Nov 20 at 20:42
Jerin Joseph
1
1
There are many, many examples available that demonstrate how to receive incoming SMS. Have you tried any?
– Mike M.
Nov 20 at 20:45
@Mike sry..I have read some But could'nt understand it well.Can you help me in doing it?
– Jerin Joseph
Nov 20 at 20:50
I'm afraid this is not the right site for tutorials or step-by-step help. What you're asking, while not too difficult to do, does require several "moving parts". You're more likely to get help if you at least begin putting a solution together, and then come here when you hit a specific problem.
– Mike M.
Nov 20 at 20:58
add a comment |
There are many, many examples available that demonstrate how to receive incoming SMS. Have you tried any?
– Mike M.
Nov 20 at 20:45
@Mike sry..I have read some But could'nt understand it well.Can you help me in doing it?
– Jerin Joseph
Nov 20 at 20:50
I'm afraid this is not the right site for tutorials or step-by-step help. What you're asking, while not too difficult to do, does require several "moving parts". You're more likely to get help if you at least begin putting a solution together, and then come here when you hit a specific problem.
– Mike M.
Nov 20 at 20:58
There are many, many examples available that demonstrate how to receive incoming SMS. Have you tried any?
– Mike M.
Nov 20 at 20:45
There are many, many examples available that demonstrate how to receive incoming SMS. Have you tried any?
– Mike M.
Nov 20 at 20:45
@Mike sry..I have read some But could'nt understand it well.Can you help me in doing it?
– Jerin Joseph
Nov 20 at 20:50
@Mike sry..I have read some But could'nt understand it well.Can you help me in doing it?
– Jerin Joseph
Nov 20 at 20:50
I'm afraid this is not the right site for tutorials or step-by-step help. What you're asking, while not too difficult to do, does require several "moving parts". You're more likely to get help if you at least begin putting a solution together, and then come here when you hit a specific problem.
– Mike M.
Nov 20 at 20:58
I'm afraid this is not the right site for tutorials or step-by-step help. What you're asking, while not too difficult to do, does require several "moving parts". You're more likely to get help if you at least begin putting a solution together, and then come here when you hit a specific problem.
– Mike M.
Nov 20 at 20:58
add a comment |
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53401196%2fstart-an-app-and-a-function-of-that-app-when-receiving-an-sms%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53401196%2fstart-an-app-and-a-function-of-that-app-when-receiving-an-sms%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
There are many, many examples available that demonstrate how to receive incoming SMS. Have you tried any?
– Mike M.
Nov 20 at 20:45
@Mike sry..I have read some But could'nt understand it well.Can you help me in doing it?
– Jerin Joseph
Nov 20 at 20:50
I'm afraid this is not the right site for tutorials or step-by-step help. What you're asking, while not too difficult to do, does require several "moving parts". You're more likely to get help if you at least begin putting a solution together, and then come here when you hit a specific problem.
– Mike M.
Nov 20 at 20:58