Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

can anyone help what is the problem in my code

Activiy 1:

int view=1;
TabFunctionality.setFirstTabFunctionality(TabFunctionality.FIRST_TAB, 1);
Intent intent = new Intent(AdultTeeth.this, MainScreen.class);
Bundle b = new Bundle();
b.putInt("TEXT", view);                 
intent.putExtras(b);    
startActivityForResult(intent, TEETH_VIEW);
finish();

Activity 2:

Bundle b = this.getIntent().getExtras(); int view=b.getInt("TEXT");
share|improve this question
what error or exception u r getting ? – Android Killer Oct 1 '11 at 9:34
2  
Null pointer exception – user828948 Oct 1 '11 at 9:40
possible duplicate of How to pass integer from one activity to another? – Paresh Mayani Oct 1 '11 at 9:45
Also look at this: stackoverflow.com/questions/3047453/… – Paresh Mayani Oct 1 '11 at 9:46

4 Answers

You can directly use putExtra also.

Activity 1

Intent intent = new Intent(AdultTeeth.this, MainScreen.class);
intent.putExtra("int_value", int_variable);
startActivity(intent);

Activity 2

Intent intent = getIntent();
int temp = intent.getIntExtra("int_value", 0); // here 0 is the default value
share|improve this answer
Hi i should get the value of view ,but amm getting defaultvalue as value of view in second activity when i print the value of view – user828948 Oct 1 '11 at 9:46
In above u taken int_variable instead of that i took view as my integer value ;int view =1; – user828948 Oct 1 '11 at 9:50
when i try to print temp its giving 0 – user828948 Oct 1 '11 at 9:51
TabFunctionality.setFirstTabFunctionality(TabFunctionality.FIRST_TAB, 1); Intent intent = new Intent(AdultTeeth.this, MainScreen.class); intent.putExtra("TEXT", view); startActivity(intent); finish(); view=1 is global variable – user828948 Oct 1 '11 at 10:06
activity 2: Intent i1 = getIntent(); Show=i1.getIntExtra("TEXT",10); System.out.println("v-------------->"+Show); – user828948 Oct 1 '11 at 10:06

Passactivity:

 Intent i = new Intent(view.getContext(), Passactivity.class);        
 i.putExtra("font",selected_font);
 startActivity(i);

Receving activity

private int my_size;

 Intent i = getIntent();
     my_size = i.getIntExtra("size",20); // 20  for default value.
share|improve this answer
Hi i should get the value of view ,but amm getting defaultvalue as value of view in second activity when i print the value of view – user828948 Oct 1 '11 at 9:48
declare in global in both activities – RajaReddy PolamReddy Oct 1 '11 at 9:50
no yet same pbm – user828948 Oct 1 '11 at 9:58
i want see u r code how u declar – RajaReddy PolamReddy Oct 1 '11 at 10:46

use this code may its work. intent.putExtra("Text",view);

activity 2: int i=getIntent().getIntExtra("Text",0); where 0 is default value.

share|improve this answer
Hi i should get the value of view ,but amm getting defaultvalue as value of view in second activity when i print the value of view – user828948 Oct 1 '11 at 9:46
i dont know why its giving value of view 0 but i use this code many times it give the appropriate value which i put in activity 1.please make sure you dont put the value of view in Intent.putExtra("Text",view);check the value of view first in first activty – Ritesh Mehandiratta Oct 1 '11 at 9:57
okey let me check – user828948 Oct 1 '11 at 10:03
Intent i1 = getIntent(); Show=i1.getIntExtra("TEXT",10); System.out.println("v-------------->"+Show); – user828948 Oct 1 '11 at 10:07
@user828948 what is output? – Nik Patel Oct 1 '11 at 10:09
show 1 more comment

in first activity ::

intent1.putExtra("key",int_score);
startActivity(intent1);

second Activity ::

  Intent i1 = getIntent();  
  int temp = i1.getIntExtra("key",1);                                                                                                               int temp = i1.getIntExtra("tranningscore2", 1);
share|improve this answer
See the question what he is asking and what u r replying ? – Android Killer Oct 1 '11 at 9:37
@Android Power please dont DV becase he really need to this code.it is difficult to solve problem so i have give new solution. – Nik Patel Oct 1 '11 at 9:39
@AndroidPower you can upvote. – Nik Patel Oct 1 '11 at 9:39
fter this line Intent i1 = getIntent(); do i have to access by i1.getInt("TEXT"); right – user828948 Oct 1 '11 at 9:39
it is key which you have use in previous activity – Nik Patel Oct 1 '11 at 9:43
show 18 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.