I want to build background animation like in IOS default weather app. As i know, in ios used CAEmitterLayer for this purposes. Does android have a similar library for Jetpack Compose?
I don't think placing video in the background is a good idea.
IOS Weather app example:
Related
I have an Android app which renders a FAB with fan out options over other apps (like AZ Screen recorder. Refer image). I want to leverage Flutter for its ease of implementation for animations to render the UI for this overlay. I did not find any resources for this specific case under Add flutter to existing app section. Is it possible to use flutter to render this UI?
On android, I use the WindowManager.addView to add and later update the UI for overlay.
I'm actually building an IOS app with a Tab Navigation.
These Tabs mainly contains lists and tables (like a business app), except one which host a SpriteKit view controller with a "mini 2D game" (Single Scene, One background image and multiple small animated images who respond to gesture).
In the future I want to be able to port my app to Android with a native solution :
Rewriting the business part of the app in Kotlin, is Ok
Creating UI views with lists and tables, is Ok
Creating a 2D scene and displaying a 2D scene in a controller, fail ...
Does Android have an engine like that ?
Does somebody have an idea or one alternative to the SpriteKit/SceneKit view controller in Android ?
[EDIT]
My idea is not to convert the SpriteKit scene to display it in android, but to find a way to build the same app from scratch in android.
What would be the best way to go if I had to create a simple 2D scene (with simple animations and gesture control) and to display it in the rest of my android "business app" ?
Thanks,
Let's consider this use case:
I have an already developed app in android and iOS which is out here for a while. I would like to implement a library/package in Flutter that could run on Android and iOS projects. Let's say I want to store some data in the flutter part, trigger some events, and so on. I might not want to show any screen from flutter just a logic part would be here. Is it currently possible to do something like that? Just to reduce the effort to implement it natively in iOS and Android
Is it possible to add user-customized animated text to a video using Android Transition framework? My team currently has access to a library that can animate text, but it only works with Android View objects. Therefore, the library cannot be applied to video.
They are contemplating using FFMPEG port for rendering text animations to the video, but I would like to know if there is a simpler way.
There are a few commercial SDKs like magisto, but they seem to be too basic for what we are doing.
If this can be done using Android Transitions, what are your recommendations?
I'm planning a project which will uses JSON objects to display data on andorid mobile.
My application is some what similar to facebook application for android. It seems making detailed ui like facebook's like,comment will be time time consuming & webview seems to be better option in this case ?
need your suggestion.
I'm also planning same app to be developed on iPhone as well.
Refrence link
Android has enough support for JSON that you can easily use the native widgets for your application. By using native widgets, the Joe Default user will have a more normal (expected) user experience, since most of the application will work just like any other Android application works.
Another thing to take into consideration that by using native widgets, it will probably be easier to add support for different UI sizes (portrait and landscape mode in various sizes can be a pain to get right in a single webview).