ตัวอย่างนี้สาธิตวิธีการวาดรูปร่างความรักใน 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
<?xml version="1.0" encoding="utf-8"?> <vector xmlns:android="https://schemas.android.com/apk/res/android" android:autoMirrored="true" android:height="24dp" android:viewportHeight="492.719" android:viewportWidth="492.719" android:width="24dp" > <path android:fillColor="#D80027" android:pathData="M492.719,166.008c0,-73.486 -59.573,-133.056 -133.059,-133.056c-47.985, 0 -89.891,25.484 -113.302,63.569c-23.408,-38.085 -65.332,-63.569 -113.316, -63.569C59.556,32.952 0,92.522 0,166.008c0,40.009 17.729,75.803 45.671, 100.178l188.545,188.553c3.22,3.22 7.587,5.029 12.142,5.029c4.555, 0 8.922,-1.809 12.142,-5.029l188.545,-188.553C474.988,241.811 492.719, 206.017 492.719,166.008z"/> </vector>
มาลองเรียกใช้แอปพลิเคชันของคุณกัน ฉันคิดว่าคุณได้เชื่อมต่ออุปกรณ์มือถือ Android จริงกับคอมพิวเตอร์ของคุณ ในการรันแอพจาก android studio ให้เปิดไฟล์กิจกรรมของโปรเจ็กต์แล้วคลิกไอคอน Run จากแถบเครื่องมือ เลือกอุปกรณ์มือถือของคุณเป็นตัวเลือก จากนั้นตรวจสอบอุปกรณ์มือถือของคุณซึ่งจะแสดงหน้าจอเริ่มต้นของคุณ –