- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to draw close shape in android?
This example demonstrate about How to draw close shape in android.
Step 1 − Create a new project in Android Studio, go to File ⇒ New Project and fill all required details to create a new project.
Step 2 − Add the following code to res/layout/activity_main.xml.
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" android:gravity="center" android:layout_marginTop="30dp" tools:context=".MainActivity"> <ImageView android:layout_width="100dp" android:layout_height="100dp" android:background="@drawable/background"/> </LinearLayout>
In the above code, we have taken imageview and added background as background.xml.
Step 3 − Add the following code to drawable/ background.xml
<vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="24dp" android:autoMirrored="true" android:viewportWidth="612" android:viewportHeight="612"> <path android:fillColor="#FF000000" android:pathData="M612,306C612,137.004 474.995,0 306,0C137.004,0 0,137.004 0, 306c0,168.995 137.004,306 306,306C474.995,612 612,474.995 612, 306zM168.3,424.032L286.333,306L168.3,187.967l19.667,-19.667L306, 286.333L424.032,168.3l19.668,19.667L325.667,306L443.7,424.032L424.032, 443.7L306,325.667L187.967,443.7L168.3,424.032z" /> </vector>
Let's try to run your application. I assume you have connected your actual Android Mobile device with your computer. To run the app from android studio, open one of your project's activity files and click Run icon from the toolbar. Select your mobile device as an option and then check your mobile device which will display your default screen –
Click here to download the project code
- Related Articles
- How to draw love shape in android?
- How to draw star shape in android?
- How to draw triangle shape in android?
- How to draw profile icon shape in android?
- How to draw tick mark with circle background shape in android?
- How to close all activities at once in android?
- How to draw a geometrical 2D shape in JavaFX?
- How to make back button twice to close an activity in Android?
- How to draw a line in Android?
- How to close or hide the virtual keyboard on Android?
- How to close all Android activities at once using Kotlin?
- How to draw text on Image in Android?
- How to close the notification panel after notification button is clicked in Android?
- How to write a SoftKeyboard open and close listener in an activity in Android?
- How to draw a line in Android using Kotlin?
