IAdea Support
- Total activity 734
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 2
- Subscriptions 494
Articles
Recent activity by IAdea Support-
GPIO, Event Trigger, Interactivitiy - How to play different video contents when QR code scanned
Keyword: QR code scanner, Bar code, HTML5, Switch content, Lift and learn, SignApps Express, Widget Abstract When customer wants to play a different content by scanning a QR code or bar code tag, ...
-
How can I remote access the browser in IAdea player for debugging?
IAdea media appliance supports the remote debugging feature. The technique is very useful for software developers, especially web site developers. This article will show you how to establish a remo...
-
OAutho 2.0 - Resource Owner Password Credentials Grant
Client Credentials Client credentials includes client_id and client_secrete Client credentials are generated by IAdea console whenever an app is registered to it Client id is named by app’s packag...
-
How to hide home bar on IAdea player
Please use standard Android API (SYSTEM_UI_FLAG_IMMERSIVE_STICKY) to hide the bar. http://developer.android.com/training/system-ui/immersive.html On top of that, IAdea firmware has more beneficial...
-
How to proper exit APP to get back to basic configuration menu
To proper exit Android APP, AutoRecover must be informed otherwise it will restart your APP instantly and leave user no chance to access basic configuration settings. There are three ways to exit ...
-
Integrate Android APP with PNF-101 NFC module
Reading NFC card form PNF-101 NFC module is easy. Connect PNF-101 to the device then include the library from attached demo project and follow the demo project's function call to read badge or NFC...
-
How to create a RSS ticker through Scala Content Manager.
The RSS ticker is a common feature in digital signage application, Scala Content Manager also supports this feature for IAdea media players. In order to play RSS ticker on IAdea media players, the ...
-
Caching media files on Android
To cache media files on Android player, you should use the HttpClient API to download the media file. Note that you should not use HttpClient in your main UI thread. Doing so will cause ANRs. We r...
-
Play video in Android
To play a video in Android on IAdea players, use the Android VideoView API. You should download the media file to cache on player storage before attempting to play it. Here is how to do it.
-
Hide home bar and show full screen on Android
To enable full screen and hide home bar in Android, simply add this line to your activity in the AndroidManifest.xml file: android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen" See http:...