↧
One App In Two Weeks
I really want to learn and improve my programming skill in Android, but never have a chance to do it. Like everybody else, I always find an excuse to get away from this. But after reading One App in...
View ArticleRounded TextView in Android
Create res/drawable/rounded.xml 1 2 3 4 5 6 <?xml version="1.0" encoding="UTF-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android"> <solid android:color="#ffffff"/>...
View ArticleHow to Make Tiled Background in Android
Assuming you have tile pattern name type.png, you need to create xml in drawable directory. background.xml 1 2 3 4 5 6 7 <?xml version="1.0" encoding="utf-8"?> <bitmap...
View ArticleRemove Shadow from ListView in Android
If you need to remove shadow from top and bottom of your ListView, you can do the following : android:fadingEdge="none" For example : 1 2 3 4 5 6 <ListView android:fadingEdge="none"...
View Article