How Do I Add the Star Wars Intro to My iOs and Android Mobile Apps?
Ask-a-Geek! developer Brenton House shows us how to add a Star Wars intro to your iOS and Android apps!
Join the DZone community and get the full member experience.
Join For Free
Dear Geek,
I really want to try to add some 3D animations to my iOS and Android mobile app built with Titanium SDK. Specifically, I am trying to recreate the Star Wars intro with the scrolling text for May the 4th. I need it to work on both iOS and Android so any guidance you can give me would be very helpful!
- TITANIUM PADAWAN
Dear Padawan,
Do or do not. There is no try! ����
Titanium Mobile SDK supports all sorts of animations and since today is May the 4th, I will do you one better and not only show you how to do the animations BUT ALSO provide you with the code you need to recreate the Star Wars intro in Titanium Mobile for BOTH iOS and Android!
TL;DR
If you are in a hurry, you can jump to the solution where I provide the source code for a working Titanium app for both iOS and Android, but I encourage you to look at some of the explanations below to help understand what the code is doing.
Check out a demo video of the completed Titanium app with the Star Wars intro!
Understanding Animations
There are a couple things to understand about animations and the differences in the underlying platforms (iOS and Android). iOS supports 3D Matrix-type animations whereas Android only supports 2D Matrix animations. That doesn't mean that we can't do what you are looking for. It just means we need to use different functions for each. Here are some of the most common classes/properties used with animating a view.
Titanium.UI.Matrix3D
- Apply a 3D Matrix to a view in iOSTitanium.UI.Matrix2D
- Apply a 2D Matrix to a view in iOS and AndroidTi.UI.Animation
- Apply one or more animations to any view in iOS and Android.- - Property available on every Android view that allows rotation around x-axis
- - Property available on every Android view that allows rotation around y-axis
Star Wars: The Code
As you know, Titanium Mobile apps for iOS and Android are cross-platform native which means they are written in JavaScript and XML and then a native app (in Objective-C/Swift or Java) is created at compile-time. To accomplish the task of creating the Star Wars Intro
, We only need one view and controller.
- The blue text that starts with "A long time ago in a galaxy..."
- The title (May the 4th 2020 - for this app)
- The yellow text that scrolls up and back
Everything else is pretty much just the standard, default app that you get when you create a new cross-platform native mobile app using Titanium!
Star Wars: The View
The view starwars.xml
will be used to define the views that we will need to create for this. Notice that some of the views are hidden (visibility = false) so that they can be shown later in the sequence.
Star Wars: The Controller
The controller starwars.js
is a JavaScript file where we define and execute the animations. They are broken into 3 different functions, with each one kicking off the next after they are complete.
Solution
You can find the code for a complete working mobile application for iOS and Android that includes the Star Wars intro here! Enjoy and May the 4th be with you always!!
https://github.com/brentonhouse/may-the-4th
Published at DZone with permission of Brenton House, DZone MVB. See the original article here.
Opinions expressed by DZone contributors are their own.
Trending
-
Design Patterns for Microservices: Ambassador, Anti-Corruption Layer, and Backends for Frontends
-
Comparing Cloud Hosting vs. Self Hosting
-
Competing Consumers With Spring Boot and Hazelcast
-
RBAC With API Gateway and Open Policy Agent (OPA)
Comments