Testing YouTube Android Player API on Android phone & Android TV
I tested YouTube Android Player API on Android TV devices. Sadly it is not working well with Android TV’s YouTube app (“YouTube for Android TV”). Only YouTube A...
I tested YouTube Android Player API on Android TV devices. Sadly it is not working well with Android TV’s YouTube app (“YouTube for Android TV”). Only YouTube A...
Starting from conclusion Use Parcelable class is always encouraged for better performance, while it is much easier to use Serializable&...
How to import ActivityManagerNative? My first motivation was to use AndroidManagerNative class, even you can find this class in Android open source project...
What has changed from Android Lollipop to Marshmallow from user point of view on Android TV? Below is the noticeable changes when I use Nexus Player with Androi...
Continuing from AsyncTask usage summary. Interest is how to establish independence between Activity and AsyncTask? The answer is well summarized in the article,...
In the Appendix of this Tutorial, I will introduce useful Android common library/function. These are usually applicable not only for Android TV, but also for An...
I’ll introduce more functionality of Android NDK continuing from Android NDK set up introduction. Android NDK is not only a tool to build up .so library to...
Android NDK Develop environment set up summary Usually Android application is developed by Java, but you can use C/C++ source code together with Android ND...
How to use Live Templates Go to [File] → [Setting] → [Live Templates], already registered live templates are shown. We can check the Abbreviation, Description a...
Overview AsyncTask is useful when you are working on UI (main) thread, and want to do some (maybe long) background process, and want to get callback a...