Answers for "how to do circle form button in android studio"

C#
0

circle button android

XAML Code

<ImageButton Source="images/button1.png"	//This button is through an image
             Padding="10,10,10,10"
             WidthRequest="45"
             HeightRequest="45"								
             BackgroundColor="#FFFFFF" 		//You can use opacity too for example: #FDFFFFFF
             CornerRadius="108"				//To curve the button							
             x:Name="button1"
             Clicked="button1_Clicked">
</ImageButton>
Posted by: Guest on April-21-2021

Code answers related to "how to do circle form button in android studio"

C# Answers by Framework

Browse Popular Code Answers by Language