AsymmetricGridView
AsymmetricGridView copied to clipboard
Black vertical and horizontal borders
I have a problems appears on android API <=16. The grid have Black vertical and horizontal borders. I tried to change gridview background and its parent also, but no thing changed
I have a problems appears on android API <=16. The grid have Black vertical and horizontal borders. I tried to change gridview background and its parent also, but no thing changed

I am also facing similar issue. @mostafazakaria you got any solution for this ? Any thread that would help me ?
@shabbirsphinx Yes I made a workaround by adding two xml files to my project drawable folder
- item_divider_horizontal.xml
<?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android"> <size android:width="3dip" /> <solid android:color="@android:color/transparent"/> </shape>
2)item_divider_vertical.xml
<?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android"> <size android:height="3dip" /> <solid android:color="@android:color/transparent"/> </shape>
This will override the default style which has black borders