ตัวอย่างนี้สาธิตวิธีการวาดรูปทรงดาวใน Android
ขั้นตอนที่ 1 − สร้างโครงการใหม่ใน Android Studio ไปที่ไฟล์ ⇒ โครงการใหม่และกรอกรายละเอียดที่จำเป็นทั้งหมดเพื่อสร้างโครงการใหม่
ขั้นตอนที่ 2 − เพิ่มรหัสต่อไปนี้ใน res/layout/activity_main.xml
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="https://schemas.android.com/apk/res/android" xmlns:tools="https://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>
ในโค้ดด้านบนนี้ เราได้ถ่าย imageview และเพิ่ม background เป็น background.xml
ขั้นตอนที่ 3 − เพิ่มรหัสต่อไปนี้ใน drawable/ background.xml
<vector xmlns:android="https://schemas.android.com/apk/res/android" android:width="24dp" android:height="24dp" android:autoMirrored="true" android:viewportWidth="512" android:viewportHeight="512"> <path android:fillColor="#D80027" android:pathData="M512,198.525l-176.891,-25.704L256,12.53l-79.108,160.291L0, 198.525l128,124.769L97.784,499.47L256,416.291l158.217, 83.179l-30.219,-176.176L512,198.525zM256,376.749l-111.731, 58.74l21.338,-124.415l-90.393,-88.111l124.92,-18.152L256, 91.613l55.867,113.198l124.918,18.152l-90.395,88.111l21.34, 124.415L256,376.749z" /> </vector>
มาลองเรียกใช้แอปพลิเคชันของคุณกัน ฉันคิดว่าคุณได้เชื่อมต่ออุปกรณ์มือถือ Android จริงกับคอมพิวเตอร์ของคุณ ในการรันแอพจาก android studio ให้เปิดไฟล์กิจกรรมของโปรเจ็กต์แล้วคลิกไอคอน Run จากแถบเครื่องมือ เลือกอุปกรณ์มือถือของคุณเป็นตัวเลือก จากนั้นตรวจสอบอุปกรณ์มือถือของคุณซึ่งจะแสดงหน้าจอเริ่มต้นของคุณ –