17

I try to remove red border around GridView to completely fill screen my calendar(without padding from left, right and top).

margin=0
padding=0
background=@null 

isn't fix the problem. I don't use any 9path background image. what's the problem ?

enter image description here

Hawkins
  • 407
  • 1
  • 5
  • 15

2 Answers2

46

Your "issue" is the selector. You can change it using: android:listSelector.

You can try removing the selector with android:listSelector="@null or creating a custom one. Here's a tutorial.

Macarse
  • 91,829
  • 44
  • 175
  • 230
0

The following sets the color around the image to white:

android:listSelector="@drawable/solid_white"

SwDevMan81
  • 48,814
  • 22
  • 151
  • 184
Rickey
  • 1
  • 1