If you are using API level >= 14, you can easily use a TextureView to mirror the preview image back to the original. for SurfaceView you can apply Matrix to a captured Bitmap in onPictureTaken method. private Camera.PictureCallback mPicture = new Camera.PictureCallback() { @Override …
Android Nougat Support : FileProvider Concept
In Android N, Opening a file from the SD card is different. When targeting Android N, file:// URIs are not allowed anymore. We should use content:// URIs instead. FileProvider class is used to give access to the particular file or folder to make them accessible …
Openfire auto startup
1. Add link from /etc/init.d top openfire binary sudo ln -s /opt/openfire/bin/openfire /etc/init.d/openfire 2. Register the link with system to fire up openfire on start up update-rc.d openfire defaults Restart system and success!
Frame By Frame Animation On Marker Android.
Frame By Frame Animation: Frame by frame animation is an animation in which sequence of images replaces on image view. This animation supports on image view in android. Problem: How to do same animation on google map location marker ? Impediment: addMarker() method of GoogleMap …
Setup openfire In Ubuntu 14.04
Port Open for installation of openfire : General Port 5269, 7777, 5229 http ports 9090 , 5222, 7070, 5262, 5275 https ports 9091, 5223, 7443, 5263, 5276 Installation steps for installing openfire In Ubuntu 14.04 — sudo apt-get update * If java is installed then …
Solution for MySQL Error : Host ‘host_name’ is blocked
If the following error occurs, it means that mysqld has received many connection requests from the given host that were interrupted in the middle: Host ‘host_name’ is blocked because of many connection errors. Unblock with ‘mysqladmin flush-hosts’ The value of the max_connect_errors system variable determines …
How to Install and Configure Sparkweb
Sparkweb is web-based XMPP client used to connect to your XMPP server like Openfire. To install and configure sparkweb first of all you must have your openfire server installed and running successfully to achieve the goal. It can be used to test chat functionality, in Web browser. Sparkweb …
Get typing status of EditText in Android
You can determine whether the user is typing or not you have to create one CustomEditText class which extends to EditText. This type of functionality is widely used in Chat application. Here is a snippet of CustomEditText public class CustomTypingEditText extends CustomEditTextNormal implements TextWatcher { …
Firebase customise notification when app is in background or killed
Firebase will not call your onMessageReceived when your app is in background or killed, and you can’t customise your notification. System generated notification will show. to make firebase library to call your onMessageReived in every cases a) Foreground b) Background c) Killed you must not …
Defining item click listener for RecyclerView in Android
Android RecyclerView doesn’t come with the Item Click Listener that you have with ListView. You will have to implement the item clicke listener yourself. Below link have an example of how to implement the view holder item clicker listener in RecyclerView. In a nutshell, The Activity …