ก่อนจะยกตัวอย่างเราควรรู้ว่าพิกัดสัมบูรณ์คืออะไร หมายถึงตำแหน่งที่แน่นอน (x,y) ของมุมมองบนตัวจัดการหน้าต่าง ตัวอย่างนี้สาธิตวิธีรับพิกัดสัมบูรณ์ของมุมมอง
ขั้นตอนที่ 1 − สร้างโครงการใหม่ใน Android Studio ไปที่ไฟล์ ⇒ โครงการใหม่และกรอกรายละเอียดที่จำเป็นทั้งหมดเพื่อสร้างโครงการใหม่
ขั้นตอนที่ 2 − เพิ่มรหัสต่อไปนี้ใน res/layout/activity_main.xml
<?xml version = "1.0" encoding = "utf-8"?> <RelativeLayout 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:padding = "16dp" tools:context = ".MainActivity" android:background = "#dde4dd"> <TextView android:id = "@+id/text" android:layout_marginLeft = "100dp" android:layout_width = "wrap_content" android:layout_height = "wrap_content" android:text = "Hello World!" /> </RelativeLayout>
ใน xml ด้านบน เราได้ให้ Textview หนึ่งรายการ เมื่อผู้ใช้คลิกที่ textview มันจะแสดงตำแหน่งของมุมมองบน Toast
ขั้นตอนที่ 3 − เพิ่มรหัสต่อไปนี้ใน src/MainActivity.java
package com.example.andy.myapplication; import android.graphics.Point; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.view.TextureView; import android.view.View; import android.widget.TextView; import android.widget.Toast; public class MainActivity extends AppCompatActivity { TextView textView; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); textView = findViewById(R.id.text); textView.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { int[] location = new int[2]; textView.getLocationOnScreen(location); Toast.makeText(MainActivity.this,"X axis is "+location[0] +"and Y axis is "+location[1],Toast.LENGTH_LONG).show(); } }); } public static Point getLocationOnScreen(View view) { int[] location = new int[2]; view.getLocationOnScreen(location); return new Point(location[0], location[1]); } }
ในโค้ดด้านบน เมื่อผู้ใช้คลิกที่ textview มันจะแสดงพิกัดที่แน่นอนบนหน้าจอ มาลองเรียกใช้แอปพลิเคชันของคุณกัน ฉันคิดว่าคุณได้เชื่อมต่ออุปกรณ์มือถือ Android จริงกับคอมพิวเตอร์ของคุณ ในการรันแอพจาก android studio ให้เปิดไฟล์กิจกรรมของโปรเจ็กต์แล้วคลิกไอคอน Run จากแถบเครื่องมือ เลือกอุปกรณ์มือถือของคุณเป็นตัวเลือก แล้วตรวจสอบอุปกรณ์มือถือของคุณซึ่งจะแสดงหน้าจอเริ่มต้นของคุณ -
ในผลลัพธ์ข้างต้นเป็นหน้าจอเริ่มต้น เมื่อผู้ใช้คลิกที่ textview จะแสดงผลลัพธ์ดังภาพ -