Created
December 19, 2015 12:04
-
-
Save JoachimR/1a5de1ddb4431880ed84 to your computer and use it in GitHub Desktop.
Android material flat button v7 compat
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<Button xmlns:android="http://schemas.android.com/apk/res/android" | |
xmlns:tools="http://schemas.android.com/tools" | |
android:id="@+id/btn_flat" | |
style="?android:attr/borderlessButtonStyle" | |
android:layout_width="match_parent" | |
android:layout_height="wrap_content" | |
android:maxLines="1" | |
android:text="btn_flat" | |
android:textColor="@color/colorAccent" | |
android:textSize="18sp" | |
tools:ignore="HardcodedText" /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<Button xmlns:android="http://schemas.android.com/apk/res/android" | |
xmlns:tools="http://schemas.android.com/tools" | |
android:id="@+id/btn_flat" | |
android:layout_width="match_parent" | |
android:layout_height="wrap_content" | |
android:layout_marginBottom="4dp" | |
android:layout_marginEnd="4dp" | |
android:layout_marginRight="4dp" | |
android:background="?attr/selectableItemBackground" | |
android:maxLines="1" | |
android:text="btn_flat" | |
android:textColor="@color/colorAccent" | |
android:textSize="18sp" | |
tools:ignore="HardcodedText" /> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment