{"id":2105,"date":"2020-02-22T16:16:54","date_gmt":"2020-02-22T06:16:54","guid":{"rendered":"https:\/\/learntodroid.com\/?p=2105"},"modified":"2020-02-22T16:17:01","modified_gmt":"2020-02-22T06:17:01","slug":"how-to-create-rounded-corners-for-a-button-in-android","status":"publish","type":"post","link":"http:\/\/10.0.0.14:32769\/how-to-create-rounded-corners-for-a-button-in-android\/","title":{"rendered":"How to Create Rounded Corners for a Button in Android"},"content":{"rendered":"\n
Making buttons in your Android app look nice is an important part of the user experience. As you design and build your app you are likely to eventually want to create rounded corners for your buttons.<\/p>\n\n\n\n
Android offers a default button that is not always intuitive to style the way you want, in many cases you will even need to use drawables to get the look and feel you are after.<\/p>\n\n\n\n
To create a rounded corners for a button in Android you will need to:<\/strong><\/p>\n\n\n\n In this post I have included code samples for creating a button with rounded corners in Android which you can make use of in your Android app.<\/p>\n\n\n\n In addition to this I have included sections in this post about styling rounded buttons in different ways such as:<\/p>\n\n\n\n In this section of the post I will show you how to create a button with rounded corners in Android that looks like the image below.<\/p>\n\n\n\n First you will need to create a new drawable resource inside the “res\/drawable” directory.<\/p>\n\n\n\n To create a drawable in Android Studio, expand the “res\/drawable” directory and right click on the “drawable” folder. Hover over the “New” menu and select the “Drawable resource file” menu item.<\/p>\n\n\n\n Enter a file name for the new drawable and select the “OK” button. This will create the drawable resource file.<\/p>\n\n\n\n For this button we will be applying a solid background color to it. There is a resource file for centralizing of all the colors in your Android app located in the “res\/values” directory called colors.xml, where you can add the background color of the button.<\/p>\n\n\n\n Colors are defined using a hexadecimal value, if you are interested in a useful free tool to help you locate the hexadecimal value for a color check out htmlcolorcodes.com<\/a> in your web browser. <\/p>\n\n\n\n Edit the colors.xml file in Android Studio and add a new color to be used for the rounded button’s background color. See the code snippet below showing how colors are defined inside the colors.xml file. <\/p>\n\n\nCreating a Button with Rounded Corners in Android<\/h2>\n\n\n\n
<\/figure><\/div>\n\n\n\n
<\/figure>\n\n\n\n
<\/figure>\n\n\n\n
<\/figure>\n\n\n\n
<\/figure>\n\n\n\n