[android-developers] Update Activity

2012-09-05 Thread Ehsan Sadeghi
I use this code as a broadcast receiver : package ir.smspeik.sms; import android.content.BroadcastReceiver; import android.content.Context; import android.content.Intent; import android.os.Bundle; import android.telephony.SmsMessage; import

Re: [android-developers] Update Activity

2012-09-05 Thread Asheesh Arya
check your permission in android manifest file -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to

Re: [android-developers] Update Activity

2012-09-05 Thread Ehsan Sadeghi
And how can I change that? در چهارشنبه 5 سپتامبر 2012، ساعت 15:29:06 (UTC+4:30)، asheesh arya نوشته: check your permission in android manifest file در چهارشنبه 5 سپتامبر 2012، ساعت 15:29:06 (UTC+4:30)، asheesh arya نوشته: check your permission in android manifest file -- You received

[android-developers] Update Activity after GCM message

2012-08-10 Thread Wolfgang
Hey guys, I have a activity called GetList. This class contains a listview whose data comes from my server. My server sends a message through GCM and the phone receives it and displays the message. I am trying to get the app to refresh the listview when a message is received. However the

[android-developers] Update activity UI from service using observer pattern

2011-06-20 Thread Vadim S. Khondar
Hello to everyone. I have an application with service doing background work by instantiating AsyncTasks and activity displaying progress of that work. As soon as updates are expected to be quite often I preferred to make connection between service and activity through listener rather than via

[android-developers] Update activity A from another activity B

2011-02-15 Thread Ivan
Hi guys, I am looking for the best way to solve the following problem: I have 3 activities, lets say A,B and C, which transition linearly A- B-C. What happens exactly is that in A an item from a listview is clicked. which shows detailed information in B. Then in B a button click progresses to C.

Re: [android-developers] Update activity A from another activity B

2011-02-15 Thread Marcin Orlowski
persist state to DB. Both of them require some significant effort in You can use SharedPreferences -- Regards, Marcin -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

[android-developers] update activity/layout from within broadcast receiver

2010-06-29 Thread AUandroid
I have a layout with two buttons, I want to disable or make unclikable one of the buttons when internet connection is lost and back to clickable when connection is regained. From my broadcast receiver I am calling another class(which extends activity and thus can call findViewById) which is

[android-developers] Update Activity from BroadcastReceiver

2010-03-03 Thread julius
Hi, Does anyone know how I might go about accessing an Activity in an application from a BroadcastReceiver (in the same application)? (I have some state information in the Activity I'd like to update) I'm not sure if there is a best practice for it. Thanks for any help. -- You received this