colors - Android on click menu style -


i have problem menu style. when perform click on menu item, rectangle surrounds text of item , have not found how change this.

anyone know how change ?

example : https://i.stack.imgur.com/pxcjo.png

thanks.

the link being styled when gains focus click. reset colours like:

a {background-color:#ff0000;}      /* unvisited link */ a:visited {background-color:#00ff00;}  /* visited link */ a:hover {background-color:#ff00ff;}  /* mouse on link */ a:active {background-color:#0000ff;}  /* selected link */ 

you'll need adjust colour appropriately


Comments

Popular posts from this blog

python - Operations inside variables -

Generic Map Parameter java -

arrays - What causes a java.lang.ArrayIndexOutOfBoundsException and how do I prevent it? -