In this tutorial I will show you how to make the edit text not gaining focus when the activity starts. Sometimes this auto-focus can be annoying because the keyboard shows…
In this tutorial I will show you how to make some custom states which will be used on an ImageButton. Of course, this states could be used for edit text…
If you want your CheckBox to be unselectable then you have to do this: checkBox.setEnabled(false); And that’s all. Your checkbox will not be selectable 🙂
In Android you can pull out the database only from emulator (you could pull out the database from a phone/device only if it is rooted). So if you want to…
In this tutorial I will show you how to make a request to an URL. This tutorial might help you also, if you encountered the “Blank Page” problem (I have encountered…
In this tutorial I will present you how to hide the android soft keyboard and how to show it too. You might need to hide the keyboard, if, for example,…
Once I had this problem: I had an ExapandableListView with groups and children. When I wanted to expand a group the list was scrolling to the end every time. After…