96 reputation
5
bio website
location
age
visits member for 5 months
seen Mar 12 at 15:55
stats profile views 5

Jan
15
comment Intent.getExtras() always returns null
can you post code that puts extras in intent?
Jan
7
comment Inter Application Communication in Android
Refer this stackoverflow.com/questions/8150003/…
Jan
7
comment How can I remove a single character such as(') on my LargeText View in android
I think I misunderstood your question, your problem is your ' in sentence is being replaced by (?) , Am I correct?
Jan
7
comment registering to receive GCM for Android, where to and how many times?
Write it in onCreate of Application class only
Jan
7
comment How can I remove a single character such as(') on my LargeText View in android
Try It\'s a crazy day
Jan
7
comment layout_width attribute android
I think @martenson is right, please accept his answer, if it has solved you problem
Jan
6
comment Can no longer deploy my app (Application already deployed. No need to reinstall)
Try clean build
Jan
6
comment On Rotation I get “Unable to destroy activity … Can not perform this action after onSaveInstanceState”
I mean to say if it is not alllowing you to pop back fragments in OnDestroy then write that code in onConfigurationChanged Method, this will be called on orientation change
Jan
6
comment On Rotation I get “Unable to destroy activity … Can not perform this action after onSaveInstanceState”
Can you shift your troubling code to onConfigurationChanged()
Jan
5
answered Calling functions provided by the Activity class from anywhere
Jan
5
comment Calling functions provided by the Activity class from anywhere
You can pass instance of particular activity to non-activity class and use it. MOst of the cases Context will be sufficient.
Jan
4
answered error passing TextView values between classes
Jan
4
comment error passing TextView values between classes
the method setText() your are using expects string resource id. If above did not help then resultA.setText((CharSequence)firstNum.add(secNum).toString());
Jan
4
comment error passing TextView values between classes
Change resultA.setText(firstNum.add(secNum).toString()); to resultA.setText((String)firstNum.add(secNum).toString());
Jan
4
comment Android ScrollView With Clickable TextViews
umm I you may need to do that.
Jan
4
comment android image view taking lot of space than mentioned by weight
Set layout_width = 0dp for the LinearLayout holding Imageview.
Jan
4
comment How to call a method when user comes from outside of application but not when user is inside application
Do you mean your onRestart in not getting called?
Jan
4
answered Android ScrollView With Clickable TextViews
Jan
4
comment moving a process to the background using AsyncTask
Do you face "ANR" , I mean do you see "Force Close" "Wait" error dialog. If it is the case then yes, you need asynctask to do your database work. Post logcat if
Jan
4
awarded  Commentator