I am trying to create a borderless button, but I also have many other styles for my button and I want to design button borderless by embedding code into my style.xml file.
One way I found was: By using style="?android:attr/borderlessButtonStyle" in my layout file.
<Button
android:id="@+id/button_send"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/button_send"
android:onClick="sendMessage"
style="?android:attr/borderlessButtonStyle" />
But I want to make this happen in style.xml and I don't know what values does ' _______ take?