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










0















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);


);









share|improve this question
























  • 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















0















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);


);









share|improve this question
























  • 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













0












0








0


1






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);


);









share|improve this question
















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






share|improve this question















share|improve this question













share|improve this question




share|improve this question








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

















  • 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












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
);



);













draft saved

draft discarded


















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















draft saved

draft discarded
















































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.




draft saved


draft discarded














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





















































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







Popular posts from this blog

Can't initialize raids on a new ASUS Prime B360M-A motherboard2019 Community Moderator ElectionSimilar to RAID config yet more like mirroring solution?Can't get motherboard serial numberWhy does the BIOS entry point start with a WBINVD instruction?UEFI performance Asus Maximus V Extreme

Identity Server 4 is not redirecting to Angular app after login2019 Community Moderator ElectionIdentity Server 4 and dockerIdentityserver implicit flow unauthorized_clientIdentityServer Hybrid Flow - Access Token is null after user successful loginIdentity Server to MVC client : Page Redirect After loginLogin with Steam OpenId(oidc-client-js)Identity Server 4+.NET Core 2.0 + IdentityIdentityServer4 post-login redirect not working in Edge browserCall to IdentityServer4 generates System.NullReferenceException: Object reference not set to an instance of an objectIdentityServer4 without HTTPS not workingHow to get Authorization code from identity server without login form

2005 Ahvaz unrest Contents Background Causes Casualties Aftermath See also References Navigation menue"At Least 10 Are Killed by Bombs in Iran""Iran"Archived"Arab-Iranians in Iran to make April 15 'Day of Fury'"State of Mind, State of Order: Reactions to Ethnic Unrest in the Islamic Republic of Iran.10.1111/j.1754-9469.2008.00028.x"Iran hangs Arab separatists"Iran Overview from ArchivedConstitution of the Islamic Republic of Iran"Tehran puzzled by forged 'riots' letter""Iran and its minorities: Down in the second class""Iran: Handling Of Ahvaz Unrest Could End With Televised Confessions""Bombings Rock Iran Ahead of Election""Five die in Iran ethnic clashes""Iran: Need for restraint as anniversary of unrest in Khuzestan approaches"Archived"Iranian Sunni protesters killed in clashes with security forces"Archived