gpt4 book ai didi

android - Android 上的自定义鼠标指针

转载 作者:行者123 更新时间:2023-11-29 01:55:06 24 4
gpt4 key购买 nike

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

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

最佳答案

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

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

指针图标类: https://developer.android.com/reference/android/view/PointerIcon.html

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

如果您使用位图可绘制对象,您应该将其放在适当的密度文件夹中(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 使用了自己的类,所以我不得不在布局的 xml 中将其标记重命名为 com.example.packageName.CustomWebview。像这样。

<?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) 方法,但它似乎不会永久更改 View 的指针。

关于android - Android 上的自定义鼠标指针,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15636855/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com