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-
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:...
-
Android digital signage how-to
Here are a few techniques in programming Android for digital signage on IAdea players: Hide home bar and show full screen Play video Caching media files
-
WiFi information
In digital signage, it is often desirable to know the network connection status of the device to decide the appropriate content to play. For example, when network connection is down, it may be desi...