其他分享
首页 > 其他分享> > android实时显示触屏坐标

android实时显示触屏坐标

作者:互联网

原文链接:https://blog.csdn.net/qq_38124598/article/details/78519181

原文链接:https://blog.csdn.net/qq_38124598/article/details/78519181
 

这里是通过自定义view(继承TextView)获取触屏坐标时改变控件内容来实现显示触屏坐标的。

新建一个java文件,命名为MyView:

package com.touchaction;
 
import android.content.*;
import android.util.*;
import android.widget.*;
import android.graphics.*;
import android.view.*;
 
public class MyView extends TextView
{
    //定义坐标变量,初始化
    private float x=0f, y=0f;
    //三个构造函数
    public MyView (Context context)
    {
        super(context);
    }
    public MyView (Context context, AttributeSet set)
    {
        super(context, set);
    }
    public MyView (Context context, AttributeSet set, int defStyleAttr)
    {
        super(context, set, defStyleAttr);
    }
 
    @Override
    protected void onDraw(Canvas canvas)
    {
        // TODO: Implement this method
        super.onDraw(canvas);
        //改变TextView对象内容
        setText("坐标("+(int)x+","+(int)y+")");
    }
 
    @Override
    public boolean onTouchEvent(MotionEvent event)
    {
        // TODO: Implement this method
        //修改触屏坐标
        x = event.getX();
        y = event.getY();
        //通知当前控件更新
        invalidate();
        //true表示已处理该方法
        return true;
    }
    
}

main.xml,使用自定义view,属性改成fill_parent:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:gravity="center"
    android:orientation="vertical"
    >
 
    <com.touchaction.MyView
        android:textSize="30dp"
        android:gravity="center_horizontal"
        android:text="@string/hello_world"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent" />
 
</LinearLayout>

string.xml:

<resources>
    <string name="app_name">Coordinate</string>
    <string name="hello_world"></string>
</resources>

运行效果

标签:parent,坐标,context,MyView,import,android,public,触屏
来源: https://blog.csdn.net/weixin_38535507/article/details/101204457