Skip to content

Instantly share code, notes, and snippets.

@MasoudFallahpour
Created July 15, 2020 05:23
Show Gist options
  • Save MasoudFallahpour/07199241b7b710c652a26800a83de47a to your computer and use it in GitHub Desktop.
Save MasoudFallahpour/07199241b7b710c652a26800a83de47a to your computer and use it in GitHub Desktop.
Using shapeAppearance attribute to set a custom shape for a button
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent">
<com.google.android.material.button.MaterialButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:text="Click Me!"
app:shapeAppearance="@style/ShapeAppearance.Button.CutCorners" />
</FrameLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment