This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // I was unhappy about there was close to no control over the "pageControl" | |
| // in scrollableViews, so I hacked my own | |
| // ----- | |
| // Configuration | |
| var pageColor = "#c99ed5"; | |
| PagingControl = function(scrollableView){ | |
| var container = Titanium.UI.createView({ | |
| height: 60 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * This sample lets you record and share video with Appcelerator Titanium on Android. | |
| * Tested on 3.2.1 of TITANIUM MOBILE SDK, should work on 3.x. I don't know about previous versions. | |
| * | |
| * Based on https://gist.github.com/dawsontoth/832488 | |
| * which does not fire the activity callback on 3.x | |
| */ | |
| /** | |
| * First, create our UI. We'll have two buttons: record, and share. |
OlderNewer