Prevent Auto Popping Keyboard



This code segment let you to prevent auto popping keyboard. If you’re using editText in your layout, auto popping keyboard would you really angry. Therefore, get rid of it :)
// Prevent to auto popping keyboard
this.getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_HIDDEN);

You should use this code at your activity’s @OnCreate method.
If you have a question, ask me :)

How to extract filename from Uri?

Now, we can extract filename with and without extension :) You will convert your bitmap to uri and get the real path of your file. Now w...