1
vote
0answers
47 views

How can I modify a textview from a non-activity class? Android

I want to modify a TextView from an alarmmanager class's onReceive method this class does not extend activity. The alarm sends an intent that creates a notification and I want to make it so clicking ...
0
votes
0answers
27 views

Android notification tray does not collapse after clicking ongoing notification

When clicking an ongoing event having remoteview with various butons, the activity loads up in the backgound and the notification tray does not collapse. I am getting this problem only on ICS 4.0. ...
-2
votes
1answer
61 views

Android-How to make Notification(RemoteViews) support EditText? [closed]

Is there a simple way? or can I achieve this by adding a customized EditText in Android SDK?
3
votes
1answer
532 views

Android Remote View Notifications

I have an android notification bar which uses a remote view. I have 2 buttons on there to play and pause audio and also an icon to return to the application. I want to be able to click the icon (or ...
0
votes
0answers
45 views

Is there a way to make OnClickPendingIntent of remoteviews works in versions of Android earlier than 4.0?

I have the following problem. The notifications of my application don't work well in versions of Android earlier than 4.0 because the OnClickPendingIntent doesn't works. How I can do?
0
votes
1answer
310 views

Is it possible to add onclick listeners to remoteviews in android

I have created a notification method as shown below: NotificationManager notificationManager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE); Notification notification; ...
0
votes
0answers
135 views

Animated ImageView inside RemoteView

I would like to put an icon with a simple animation inside Android notification. I tried putting an anim resource inside src attribute of an ImageView that I have put into a custom layout in the ...