Android broadcastReceiver on receive method2019 Community Moderator ElectionIs there a way to run Python on Android?How do save an Android Activity state using save instance state?Close/hide the Android Soft KeyboardWhy is the Android emulator so slow? How can we speed up the Android emulator?“Debug certificate expired” error in Eclipse Android pluginsIs there a unique Android device ID?What is 'Context' on Android?Proper use cases for Android UserManager.isUserAGoat()?Sending and Receiving SMS and MMS in Android (pre Kit Kat Android 4.4)Timer.schedule different in Activity and BroadcastReceiver
What (if any) is the reason to buy in small local stores?
When did hardware antialiasing start being available?
What are the rules for concealing thieves' tools (or items in general)?
Do I need an EFI partition for each 18.04 ubuntu I have on my HD?
PTIJ: Where did Achashverosh's years wander off to?
What is it called when someone votes for an option that's not their first choice?
Why is "la Gestapo" feminine?
The English Debate
How are passwords stolen from companies if they only store hashes?
What kind of footwear is suitable for walking in micro gravity environment?
Can other pieces capture a threatening piece and prevent a checkmate?
PTIJ: Which Dr. Seuss books should one obtain?
Could any one tell what PN is this Chip? Thanks~
Does convergence of polynomials imply that of its coefficients?
Why didn’t Eve recognize the little cockroach as a living organism?
Does fire aspect on a sword, destroy mob drops?
If I cast the Enlarge/Reduce spell on an arrow, what weapon could it count as?
Hackerrank All Women's Codesprint 2019: Name the Product
Why does Surtur say that Thor is Asgard's doom?
Would this string work as string?
Why doesn't the fusion process of the sun speed up?
Why is indicated airspeed rather than ground speed used during the takeoff roll?
Why is this tree refusing to shed its dead leaves?
Air travel with refrigerated insulin
Android broadcastReceiver on receive method
2019 Community Moderator ElectionIs there a way to run Python on Android?How do save an Android Activity state using save instance state?Close/hide the Android Soft KeyboardWhy is the Android emulator so slow? How can we speed up the Android emulator?“Debug certificate expired” error in Eclipse Android pluginsIs there a unique Android device ID?What is 'Context' on Android?Proper use cases for Android UserManager.isUserAGoat()?Sending and Receiving SMS and MMS in Android (pre Kit Kat Android 4.4)Timer.schedule different in Activity and BroadcastReceiver
I send data from one activity to another one but when I receive that data in my 2nd acitivity I cannot use that data for further purposes. But when I use that data for displaying TOAST message everything works well. I want when I send data from activity to another and open that activity that activity will show bottomsheet and in other cases do not show . For example:
public BroadcastReceiver mMessageReceiver = new BroadcastReceiver()
@Override
public void onReceive(Context context, Intent intent)
// Get extra data included in the Intent
busNumber = intent.getStringExtra("busNumber");
switch (busNumber)
case "1":
mMap.clear();
busNo_1();
mBottomSheetBehavior.setState(BottomSheetBehavior.STATE_COLLAPSED);
mBottomSheetBehavior.setPeekHeight(140);
break;
case "9":
mMap.clear();
busNo_9();
mBottomSheetBehavior.setState(BottomSheetBehavior.STATE_COLLAPSED);
mBottomSheetBehavior.setPeekHeight(140);
break;
default:
mMap.clear();
mBottomSheetBehavior.setPeekHeight(0);
;
It is the first time when I used broadcast receiver. I tried sending with intents and interfaces but it did not work.
And this is my adapter from where I send the data:
holder.mView.setOnClickListener(new View.OnClickListener()
@Override
public void onClick(View v)
String busNumber = holder.busesNumber.getText().toString();
Intent intent = new Intent("custom-message");
// intent.putExtra("quantity",Integer.parseInt(quantity.getText().toString()));
intent.putExtra("busNumber",busNumber);
LocalBroadcastManager.getInstance(mCtx).sendBroadcast(intent);
Intent mapIntent = new Intent(mCtx, MapActivity.class);
mCtx.startActivity(mapIntent);
);
android broadcastreceiver
|
show 16 more comments
I send data from one activity to another one but when I receive that data in my 2nd acitivity I cannot use that data for further purposes. But when I use that data for displaying TOAST message everything works well. I want when I send data from activity to another and open that activity that activity will show bottomsheet and in other cases do not show . For example:
public BroadcastReceiver mMessageReceiver = new BroadcastReceiver()
@Override
public void onReceive(Context context, Intent intent)
// Get extra data included in the Intent
busNumber = intent.getStringExtra("busNumber");
switch (busNumber)
case "1":
mMap.clear();
busNo_1();
mBottomSheetBehavior.setState(BottomSheetBehavior.STATE_COLLAPSED);
mBottomSheetBehavior.setPeekHeight(140);
break;
case "9":
mMap.clear();
busNo_9();
mBottomSheetBehavior.setState(BottomSheetBehavior.STATE_COLLAPSED);
mBottomSheetBehavior.setPeekHeight(140);
break;
default:
mMap.clear();
mBottomSheetBehavior.setPeekHeight(0);
;
It is the first time when I used broadcast receiver. I tried sending with intents and interfaces but it did not work.
And this is my adapter from where I send the data:
holder.mView.setOnClickListener(new View.OnClickListener()
@Override
public void onClick(View v)
String busNumber = holder.busesNumber.getText().toString();
Intent intent = new Intent("custom-message");
// intent.putExtra("quantity",Integer.parseInt(quantity.getText().toString()));
intent.putExtra("busNumber",busNumber);
LocalBroadcastManager.getInstance(mCtx).sendBroadcast(intent);
Intent mapIntent = new Intent(mCtx, MapActivity.class);
mCtx.startActivity(mapIntent);
);
android broadcastreceiver
What do you mean by "cannot use data for further purposes"? In which case bottomsheet don not show? Can you share the specific code where you are facing the issue?
– Rick Sanchez
Mar 9 at 7:57
I have shared the code
– White
Mar 9 at 17:28
my switch statement doesnt work
– White
Mar 9 at 17:28
if busnumber which I get from first activity is equal to "1" it will show bottomsheet with information related to 1 and so on
– White
Mar 9 at 17:30
@Rick Sanchez, in other cases when I used that switch statement everything worked good for example if user selects "1" from textview it shows me bottom sheet
– White
Mar 9 at 17:31
|
show 16 more comments
I send data from one activity to another one but when I receive that data in my 2nd acitivity I cannot use that data for further purposes. But when I use that data for displaying TOAST message everything works well. I want when I send data from activity to another and open that activity that activity will show bottomsheet and in other cases do not show . For example:
public BroadcastReceiver mMessageReceiver = new BroadcastReceiver()
@Override
public void onReceive(Context context, Intent intent)
// Get extra data included in the Intent
busNumber = intent.getStringExtra("busNumber");
switch (busNumber)
case "1":
mMap.clear();
busNo_1();
mBottomSheetBehavior.setState(BottomSheetBehavior.STATE_COLLAPSED);
mBottomSheetBehavior.setPeekHeight(140);
break;
case "9":
mMap.clear();
busNo_9();
mBottomSheetBehavior.setState(BottomSheetBehavior.STATE_COLLAPSED);
mBottomSheetBehavior.setPeekHeight(140);
break;
default:
mMap.clear();
mBottomSheetBehavior.setPeekHeight(0);
;
It is the first time when I used broadcast receiver. I tried sending with intents and interfaces but it did not work.
And this is my adapter from where I send the data:
holder.mView.setOnClickListener(new View.OnClickListener()
@Override
public void onClick(View v)
String busNumber = holder.busesNumber.getText().toString();
Intent intent = new Intent("custom-message");
// intent.putExtra("quantity",Integer.parseInt(quantity.getText().toString()));
intent.putExtra("busNumber",busNumber);
LocalBroadcastManager.getInstance(mCtx).sendBroadcast(intent);
Intent mapIntent = new Intent(mCtx, MapActivity.class);
mCtx.startActivity(mapIntent);
);
android broadcastreceiver
I send data from one activity to another one but when I receive that data in my 2nd acitivity I cannot use that data for further purposes. But when I use that data for displaying TOAST message everything works well. I want when I send data from activity to another and open that activity that activity will show bottomsheet and in other cases do not show . For example:
public BroadcastReceiver mMessageReceiver = new BroadcastReceiver()
@Override
public void onReceive(Context context, Intent intent)
// Get extra data included in the Intent
busNumber = intent.getStringExtra("busNumber");
switch (busNumber)
case "1":
mMap.clear();
busNo_1();
mBottomSheetBehavior.setState(BottomSheetBehavior.STATE_COLLAPSED);
mBottomSheetBehavior.setPeekHeight(140);
break;
case "9":
mMap.clear();
busNo_9();
mBottomSheetBehavior.setState(BottomSheetBehavior.STATE_COLLAPSED);
mBottomSheetBehavior.setPeekHeight(140);
break;
default:
mMap.clear();
mBottomSheetBehavior.setPeekHeight(0);
;
It is the first time when I used broadcast receiver. I tried sending with intents and interfaces but it did not work.
And this is my adapter from where I send the data:
holder.mView.setOnClickListener(new View.OnClickListener()
@Override
public void onClick(View v)
String busNumber = holder.busesNumber.getText().toString();
Intent intent = new Intent("custom-message");
// intent.putExtra("quantity",Integer.parseInt(quantity.getText().toString()));
intent.putExtra("busNumber",busNumber);
LocalBroadcastManager.getInstance(mCtx).sendBroadcast(intent);
Intent mapIntent = new Intent(mCtx, MapActivity.class);
mCtx.startActivity(mapIntent);
);
android broadcastreceiver
android broadcastreceiver
edited Mar 12 at 16:53
White
asked Mar 7 at 19:05
WhiteWhite
5118
5118
What do you mean by "cannot use data for further purposes"? In which case bottomsheet don not show? Can you share the specific code where you are facing the issue?
– Rick Sanchez
Mar 9 at 7:57
I have shared the code
– White
Mar 9 at 17:28
my switch statement doesnt work
– White
Mar 9 at 17:28
if busnumber which I get from first activity is equal to "1" it will show bottomsheet with information related to 1 and so on
– White
Mar 9 at 17:30
@Rick Sanchez, in other cases when I used that switch statement everything worked good for example if user selects "1" from textview it shows me bottom sheet
– White
Mar 9 at 17:31
|
show 16 more comments
What do you mean by "cannot use data for further purposes"? In which case bottomsheet don not show? Can you share the specific code where you are facing the issue?
– Rick Sanchez
Mar 9 at 7:57
I have shared the code
– White
Mar 9 at 17:28
my switch statement doesnt work
– White
Mar 9 at 17:28
if busnumber which I get from first activity is equal to "1" it will show bottomsheet with information related to 1 and so on
– White
Mar 9 at 17:30
@Rick Sanchez, in other cases when I used that switch statement everything worked good for example if user selects "1" from textview it shows me bottom sheet
– White
Mar 9 at 17:31
What do you mean by "cannot use data for further purposes"? In which case bottomsheet don not show? Can you share the specific code where you are facing the issue?
– Rick Sanchez
Mar 9 at 7:57
What do you mean by "cannot use data for further purposes"? In which case bottomsheet don not show? Can you share the specific code where you are facing the issue?
– Rick Sanchez
Mar 9 at 7:57
I have shared the code
– White
Mar 9 at 17:28
I have shared the code
– White
Mar 9 at 17:28
my switch statement doesnt work
– White
Mar 9 at 17:28
my switch statement doesnt work
– White
Mar 9 at 17:28
if busnumber which I get from first activity is equal to "1" it will show bottomsheet with information related to 1 and so on
– White
Mar 9 at 17:30
if busnumber which I get from first activity is equal to "1" it will show bottomsheet with information related to 1 and so on
– White
Mar 9 at 17:30
@Rick Sanchez, in other cases when I used that switch statement everything worked good for example if user selects "1" from textview it shows me bottom sheet
– White
Mar 9 at 17:31
@Rick Sanchez, in other cases when I used that switch statement everything worked good for example if user selects "1" from textview it shows me bottom sheet
– White
Mar 9 at 17:31
|
show 16 more comments
0
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%2f55051097%2fandroid-broadcastreceiver-on-receive-method%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
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.
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%2f55051097%2fandroid-broadcastreceiver-on-receive-method%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
What do you mean by "cannot use data for further purposes"? In which case bottomsheet don not show? Can you share the specific code where you are facing the issue?
– Rick Sanchez
Mar 9 at 7:57
I have shared the code
– White
Mar 9 at 17:28
my switch statement doesnt work
– White
Mar 9 at 17:28
if busnumber which I get from first activity is equal to "1" it will show bottomsheet with information related to 1 and so on
– White
Mar 9 at 17:30
@Rick Sanchez, in other cases when I used that switch statement everything worked good for example if user selects "1" from textview it shows me bottom sheet
– White
Mar 9 at 17:31