Category Archives: Android

Implement transparent status bar for android.support.v7.widget.Toolbar

Mangihin.com is a website that provides useful information, please share if there is interesting information that can help you. Thank you Implement transparent status bar for android.support.v7.widget.Toolbar: – Follow the steps in “Replace ActionBar with android.support.v7.widget.Toolbar” to implement a simplest toolbar. – Edit styles.xml to add the item of “android:windowTranslucentStatus”. Edit MainActivity.java to set the padding (with… Read More »

Download NASA Software for Free!

Mangihin.com is a website that provides useful information, please share if there is interesting information that can help you. Thank you The NASA Software Catalog offers an extensive portfolio of software products for a wide variety of technical applications! You can access the full catalog for FREE at https://software.nasa.gov/

Developer Preview of Android O

Mangihin.com is a website that provides useful information, please share if there is interesting information that can help you. Thank you Google share a first developer preview of the next version of Android OS: Android O. Android O introduces a number of new features and APIs to use in your apps. read more: Android Developers… Read More »

Android O hands-on preview: Top 10 features!

Mangihin.com is a website that provides useful information, please share if there is interesting information that can help you. Thank you A look at the top 10 new features in Android O! For more on the new version of Android, check out the site!http://www.androidcentral.com/android-o

Android ListView with CheckBox

Mangihin.com is a website that provides useful information, please share if there is interesting information that can help you. Thank you This example show how to implement ListView with CheckBox, modified from the post “Custom ListView with ImageView”. At the beginning, I tried to implement OnCheckedChangeListener for the CheckBox; to handle the check state. But, it will… Read More »

Introduction videos for Android Things

Mangihin.com is a website that provides useful information, please share if there is interesting information that can help you. Thank you I found two Youtube videos good for Android Things, published by The Linux Foundation. Android Things: High Level Introduction – Anisha Dattatraya & Geeta Krishna, Intel Corporation An overview of the basic concepts behind Android… Read More »

Read Exif tag of JPG using ExifInterface(FileDescriptor)

Mangihin.com is a website that provides useful information, please share if there is interesting information that can help you. Thank you android.media.ExifInterface is a class for reading and writing Exif tags in a JPEG file or a RAW image file. Supported formats are: JPEG, DNG, CR2, NEF, NRW, ARW, RW2, ORF, PEF, SRW and RAF.… Read More »

Read Exif tag of JPG using ExifInterface(InputStream)

Mangihin.com is a website that provides useful information, please share if there is interesting information that can help you. Thank you Last post show how to open image of jpeg using Intent.ACTION_OPEN_DOCUMENT (added in API level 19), then display the image and read the Exif tag using ExifInterface (FileDescriptor)(added in API level 24). Here is… Read More »

Read Exif tag of JPG using ExifInterface(String filename)

Mangihin.com is a website that provides useful information, please share if there is interesting information that can help you. Thank you Last posts show how to Read Exif tag of JPG using ExifInterface(FileDescriptor) and using ExifInterface(InputStream). But both ExifInterface(FileDescriptor) and ExifInterface(InputStream) added in API level 24, Android 7.0. In this post, I will show how to use ExifInterface(String filename),… Read More »