How to make a background button selector in XML?
Step 1:Â Create an XML in the drawable folder and name it selected_item.xml (or any another name you want but to be suggestive). The code in this xml will be: <shape android=”http://schemas.android.com/apk/res/android” shape=”rectangle”> <solid color=”#80000000″></solid> </shape> The color=”#80000000″ is transparent black. Step 2:Â Create an XML again, in the drawable folder an name it not_selected.xml. The code […]