Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Android

วิธีการวาดรูปร่างใกล้เคียงใน Android?


ตัวอย่างนี้สาธิตวิธีการวาดรูปทรงที่ใกล้เคียงใน 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="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>

มาลองเรียกใช้แอปพลิเคชันของคุณกัน ฉันคิดว่าคุณได้เชื่อมต่ออุปกรณ์มือถือ Android จริงกับคอมพิวเตอร์ของคุณ ในการรันแอพจาก android studio ให้เปิดไฟล์กิจกรรมของโปรเจ็กต์แล้วคลิกไอคอน Run จากแถบเครื่องมือ เลือกอุปกรณ์มือถือของคุณเป็นตัวเลือก จากนั้นตรวจสอบอุปกรณ์มือถือของคุณซึ่งจะแสดงหน้าจอเริ่มต้นของคุณ –

วิธีการวาดรูปร่างใกล้เคียงใน Android?