Michael Gangolf

Results 231 issues of Michael Gangolf

Simple method to put your app into background: `Ti.UI.Android.moveToBackground();` **Current workarounds are:** using an intent ``` var intent = Ti.Android.createIntent({ action: Ti.Android.ACTION_MAIN, flags: Ti.Android.FLAG_ACTIVITY_NEW_TASK }); intent.addCategory(Ti.Android.CATEGORY_HOME); Ti.Android.currentActivity.startActivity(intent); ``` or hyperloop....

feature

New property to adjust the playback speed in a VideoPlayer. **Test** Add a video `video.mp4` to the assets folder. ```js var vidWin = Titanium.UI.createWindow({ title: 'Video View Demo', backgroundColor: '#fff'...

feature

For 14 years the default value for `setSupportMultipleWindows()` is `true` which always tries to create new windows when clicking on a link with target _blank inside a webview. That breaks...

feature
improvement

Currently the Ti.UI.Tab `selected` event doesn't return the values it should be according to the docs. The issue is that the data is set to `null` instead of `focusEventData` **Test**...

Currently the `activeTintColor` is used for the ripple color (our touchFeedbackColor) on a BottomNavigation Tab. The `touchFeedbackColor` is mentioned in the docs already but it doesn't have any effect. This...

current log length it 4059. This PR will split up long logs and outputs them in chunks. **Test** ``` Ti.API.info("something long"); console.log("somenthing long"); ``` Use https://www.blindtextgenerator.com/lorem-ipsum to generate a long...

improvement

The current implementation of the battery level/state properties are returning the stored values from the BroadcastReceiver. Android introduced a way to query the value using the BatteryManager starting in 21...

improvement

* Ti 7x * touch to focus * autoFlash parameter * HIGH by default * doFocus() * onFocus event * orientation

add a button to fetch the current GPS position inside the app

enhancement

## Hacktoberfest If you want to take part in Hacktoberfest have a look at https://hacktoberfest.digitalocean.com/ > Hacktoberfest encourages participation in the open source community, which grows bigger every year. Complete...

help wanted
good first issue
hacktoberfest