Questions tagged [activitytransitionapi]
7 questions
6
votes
0 answers
Android defaultSensor TYPE_SIGNIFICANT_MOTION returns null after 24 hours
I'm little bit confused why my Transitions API solution works usually for first day or two and after that stop receiving any updates. I dug deeper into it and found a lead that talks about how we need to have SIGNIFICAT_MOTION sensor active in order…

MaaAn13
- 264
- 5
- 24
- 54
5
votes
1 answer
Android Transitions API - stops receiving any updates after 24-48 hours
I'm using Transitions API and everything works fine for the first 24-48 hours - I receive physical activity changes from the API, but after 24-48 hours there's nothing.
Under Transitions API Receiver, I use Foreground Service that is still alive…

MaaAn13
- 264
- 5
- 24
- 54
5
votes
5 answers
Activity Transition API not working
I wish to use the new Activity transition API and after following the tutorial here I am not able to get the desired result.
This is the code I have for setting the activity transition I wish to detect :
public void setActivityTransitions() {
…

Parth Anjaria
- 3,961
- 3
- 30
- 62
3
votes
2 answers
Activity Transition API Calling Intent
ActivityTransitionUpdate returns null, always. But if I change it to requestactivityupdate it works fine. But I need the transition API. I do not understand why this is not working, especially since a couple of days ago it was working right.
I have…

Brian Pugliese
- 31
- 1
2
votes
0 answers
ActivityTransitions API not calling BroadcastReceiver on Samsung Deivce
I implemented the Activity Transitions API with a PendingIntent and a BroadcastReceiver as seen below. The code works perfectly fine on a Pixel 3a. However, on a Samsung A32 and Samsung S22 Pro, the Broadcast receiver is never reached, eventhough…

pxbn
- 21
- 4
0
votes
4 answers
Can't figure out why my ActivityTransition example doesn't work with BroadcastReceiver
I have looked at multiple examples and implementations, I have no more ideas to check. I hope for outside perspective to see if I have missed something. Here is complete project on github for full source
It doesn't give me any errors or anything, it…

somerandomusername
- 1,993
- 4
- 23
- 55
-1
votes
2 answers
How to add recycler view animation like telegram?
I am currently making a chat app and i want to add a feature like telegram. As you can see here, there is a animation in the recycler view as if i=t zooming or decreasing its size. You can also notice that animation while opening and closing the…
user17515464