How To Draw Different Types of Circles in Android - GeeksforGeeks
How To Draw Different Types of Circles in Android - GeeksforGeeks
- GeeksforGeeks
In this article, we will show you how you could create different types of circles. Now to
start with, follow the below steps once the IDE is ready.
We use cookies to ensure you have the best browsing experience on our website. By using our site, you acknowledge Got It !
that you have read and understood our Cookie Policy & Privacy Policy
https://www.geeksforgeeks.org/how-to-draw-different-types-of-circles-in-android/ 1/11
8/28/23, 11:52 AM How to Draw Different Types of Circles in Android? - GeeksforGeeks
To create a new project in Android Studio please refer to How to Create/Start a New
Project in Android Studio. We demonstrated the application in Kotlin, so make sure you
select Kotlin as the primary language while creating a New Project.
Name the file according to the circle. For the first file, we named it circle_1.
We use cookies to ensure you have the best browsing experience on our website. By using our site, you acknowledge
that you have read and understood our Cookie Policy & Privacy Policy
https://www.geeksforgeeks.org/how-to-draw-different-types-of-circles-in-android/ 2/11
8/28/23, 11:52 AM How to Draw Different Types of Circles in Android? - GeeksforGeeks
Circle 1 is a simple circle that has nobody color and only an outline. For the same, the
code is given below.
XML
<stroke
android:width="5sp"
android:color="#0f9d58"/>
</shape>
Sale Ends In 09 : 37 : 26 Data Types Array String Functions Collections Oops Android Android Studio Kotlin And
We use cookies to ensure you have the best browsing experience on our website. By using our site, you acknowledge
that you have read and understood our Cookie Policy & Privacy Policy
https://www.geeksforgeeks.org/how-to-draw-different-types-of-circles-in-android/ 3/11
8/28/23, 11:52 AM How to Draw Different Types of Circles in Android? - GeeksforGeeks
In Circle 2, we have attributed it with only body color. Refer to the code below.
XML
<solid
android:color="#0f9d58"/>
</shape>
In this circle, we have combined the above two attributes, i.e., boundary color and body
color. The code for the same is given below.
We use cookies to ensure you have the best browsing experience on our website. By using our site, you acknowledge
that you have read and understood our Cookie Policy & Privacy Policy
https://www.geeksforgeeks.org/how-to-draw-different-types-of-circles-in-android/ 4/11
8/28/23, 11:52 AM How to Draw Different Types of Circles in Android? - GeeksforGeeks
XML
<solid
android:color="#0f9d58"/>
<stroke
android:width="5sp"
android:color="@color/black"/>
</shape>
Navigate to the app > res > layout > activity_main.xml and add the below code to that
file. Below is the code for the activity_main.xml file. We shall be displaying all three
circles for which we need to add three ImageViews.
XML
<ImageView
We use cookies to ensure you have the best browsing experience on our website. By using our site, you acknowledge
android:id="@+id/circle_1"
that you have read and understood our Cookie Policy & Privacy Policy
https://www.geeksforgeeks.org/how-to-draw-different-types-of-circles-in-android/ 5/11
8/28/23, 11:52 AM How to Draw Different Types of Circles in Android? - GeeksforGeeks
android:layout_width="100sp"
android:layout_height="100sp"
android:src="@drawable/circle_1"
android:layout_centerHorizontal="true"
android:layout_marginTop="30sp"/>
<ImageView
android:id="@+id/circle_2"
android:layout_below="@id/circle_1"
android:layout_width="100sp"
android:layout_height="100sp"
android:src="@drawable/circle_2"
android:layout_centerHorizontal="true"
android:layout_marginTop="30sp"/>
<ImageView
android:id="@+id/circle_3"
android:layout_below="@id/circle_2"
android:layout_width="100sp"
android:layout_height="100sp"
android:src="@drawable/circle_3"
android:layout_centerHorizontal="true"
android:layout_marginTop="30sp"/>
</RelativeLayout>
Kotlin
package org.geeksforgeeks.myapplication
import androidx.appcompat.app.AppCompatActivity
import android.os.Bundle
Output:
You can see the three types of circles that we created previously. Circle 1 has only
boundary color, Circle 2 has only body color, and Circle 3 has both boundary and body
color.
We use cookies to ensure you have the best browsing experience on our website. By using our site, you acknowledge
that you have read and understood our Cookie Policy & Privacy Policy
https://www.geeksforgeeks.org/how-to-draw-different-types-of-circles-in-android/ 6/11
8/28/23, 11:52 AM How to Draw Different Types of Circles in Android? - GeeksforGeeks
Similar Reads
Different Types of Act ivit ies in What Are t he Different Types of
Android St udio Bars Available in Android?
Previous Next
Article Contributed By :
aashaypawar
We use cookies to ensure you have the best browsing experience on our website. By using our site, you acknowledge
aashaypawar
that you have read and understood our Cookie Policy & Privacy Policy
https://www.geeksforgeeks.org/how-to-draw-different-types-of-circles-in-android/ 7/11
8/28/23, 11:52 AM How to Draw Different Types of Circles in Android? - GeeksforGeeks
Company Explore
About Us Job-A-Thon Hiring Challenge
Legal Hack-A-Thon
Careers GfG Weekly Contest
In Media Offline Classes (Delhi/NCR)
Contact Us DSA in JAVA/C++
We use cookies to ensure youAdvertise withbrowsing
have the best us Master System Design
experience on our website. By using our site, you acknowledge
that you have read and understood our Cookie Policy & Privacy Policy
https://www.geeksforgeeks.org/how-to-draw-different-types-of-circles-in-android/ 8/11
8/28/23, 11:52 AM How to Draw Different Types of Circles in Android? - GeeksforGeeks
Master CP
https://www.geeksforgeeks.org/how-to-draw-different-types-of-circles-in-android/ 9/11
8/28/23, 11:52 AM How to Draw Different Types of Circles in Android? - GeeksforGeeks
Commerce UPSC
Accountancy Polity Notes
Business Studies Geography Notes
Economics History Notes
Management Science and Technology Notes
Income Tax Economics Notes
Finance Important Topics in Ethics
UPSC Previous Year Papers
https://www.geeksforgeeks.org/how-to-draw-different-types-of-circles-in-android/ 10/11
8/28/23, 11:52 AM How to Draw Different Types of Circles in Android? - GeeksforGeeks
We use cookies to ensure you have the best browsing experience on our website. By using our site, you acknowledge
that you have read and understood our Cookie Policy & Privacy Policy
https://www.geeksforgeeks.org/how-to-draw-different-types-of-circles-in-android/ 11/11