Thursday, March 14, 2013

Set transparent background in textbox / Remove backround of text box in android

You just need to set background property as nulll in xml file, like this

<EditText
        android:id="@+id/mytext"
        android:layout_width="30dp"
        android:layout_height="56dp"
        android:background="@null"
      >

No comments:

Post a Comment