3

当使用现代版本的 Android --- Honeycomb 或更高版本 --- 如果硬件合适,则支持显示鼠标指针。例如,在华硕 Transformer 或东芝 AC100 笔记本电脑上。

是否有任何 API 允许在这些设备之一上运行的应用程序以编程方式更改其鼠标指针?(或者在应用程序窗口中完全隐藏指针。)

4

1 回答 1

4

此功能是在 Android 7.0 中添加的。您可以选择一个预设系统指针或从位图中制作一个。您也可以隐藏指针。

Android 7.0 文档: https ://developer.android.com/about/versions/nougat/android-7.0#custom_pointer_api

PointerIcon 类: https ://developer.android.com/reference/android/view/PointerIcon.html

我用它来自定义 WebView 的指针。您需要创建一个类来扩展要更改指针的视图。

如果您使用可绘制的位图,则应将其放在适当的密度文件夹中(drawable-mdpi .. drawable-xxxhdpi。)如果不这样做,系统将自动缩放它,并且看起来非常模糊。系统默认指针似乎在 18dp 左右。

位图示例:

package com.example.packageName;

import android.annotation.TargetApi;
import android.content.Context;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.os.Build;
import android.util.AttributeSet;
import android.view.MotionEvent;
import android.view.PointerIcon;
import android.webkit.WebView;

public class CustomWebview extends WebView {

    private Bitmap bmCursor;
    private PointerIcon pntCursor;

    public CustomWebview(Context context, AttributeSet attrs) {
        super(context, attrs);
        if (Build.VERSION.SDK_INT >= 24) {
            bmCursor = BitmapFactory.decodeResource(getResources(), R.drawable.cursor);
            pntCursor = PointerIcon.create(bmCursor,0,0);
        }
    }

    @TargetApi(24)
    @Override
    public PointerIcon onResolvePointerIcon(MotionEvent me, int pointerIndex) {
        return pntCursor;
    }
}

系统指针示例:

package com.example.packageName;

import android.annotation.TargetApi;
import android.content.Context;
import android.util.AttributeSet;
import android.view.MotionEvent;
import android.view.PointerIcon;
import android.webkit.WebView;

public class CustomWebview extends WebView {
    Context c;
    public CustomWebview(Context context, AttributeSet attrs) {
        super(context, attrs);
        c = context;
    }

    @TargetApi(24)
    @Override
    public PointerIcon onResolvePointerIcon(MotionEvent me, int pointerIndex) {
        return PointerIcon.getSystemIcon(c, PointerIcon.TYPE_CROSSHAIR);
    }
}

使用PointerIcon.TYPE_NULL将隐藏光标。

因为我为 WebView 使用了自己的类,所以我不得不com.example.packageName.CustomWebview在我的布局的 xml 中将它的标签重命名为。像这样。

<?xml version="1.0" encoding="utf-8"?>
<com.example.packageName.CustomWebview xmlns:android="http://schemas.android.com/apk/res/android"
         android:layout_width="match_parent"
         android:layout_height="match_parent"
         android:padding="0px"
         android:layout_margin="0px"
         android:scrollbars="none"
         android:nestedScrollingEnabled="false"
         android:background="@drawable/webview_style"
         android:foreground="@drawable/webview_style"
         android:id="@+id/webGame" />

还有一种view.setPointerIcon(PointerIcon)方法,但它似乎不会永久更改视图的指针。

于 2019-04-02T20:06:29.537 回答