FloatingService.java
package com.tchat.clickx;
import android.app.Service;
import android.content.Intent;
import android.os.IBinder;
import android.util.Log;
import android.view.MotionEvent;
import android.view.View;
import android.widget.ImageView;
import android.widget.TextView;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import com.lzf.easyfloat.EasyFloat;
import com.lzf.easyfloat.enums.ShowPattern;
import com.lzf.easyfloat.interfaces.OnFloatCallbacks;
public class FloatingService extends Service {
@Override
public void onCreate() {
super.onCreate();
EasyFloat.with(this)
.setShowPattern(ShowPattern.ALL_TIME)
.setLayout(R.layout.layout_floating).registerCallbacks(new OnFloatCallbacks() {
@Override
public void createdResult(boolean b, @Nullable String s, @Nullable View view) {
}
@Override
public void show(@NonNull View view) {
}
@Override
public void hide(@NonNull View view) {
}
@Override
public void dismiss() {
}
@Override
public void touchEvent(@NonNull View view, @NonNull MotionEvent event) {
ImageView imageView=view.findViewById(R.id.image);
int[] location = new int[2];
imageView.getLocationOnScreen(location); // 获取屏幕坐标
int x = location[0]; // 控件的 X 坐标(相对于屏幕)
int y = location[1]; // 控件的 Y 坐标(相对于屏幕)
// 获取控件的宽度和高度
int width = imageView.getWidth();
int height = imageView.getHeight();
// 计算中心位置
int centerX = x + width / 2;
int centerY = y + height / 2;
TextView textView = view.findViewById(R.id.text);
textView.setText(String.format("中心: %s/%s", centerX, centerY));
Log.d("FloatingWindow", "View中心坐标: X=" + centerX + ", Y=" + centerY);
}
@Override
public void drag(@NonNull View view, @NonNull MotionEvent motionEvent) {
}
@Override
public void dragEnd(@NonNull View view) {
}
}).setDragEnable(true).show();
}
@Nullable
@Override
public IBinder onBind(Intent intent) {
return null;
}
}
MainActivity.java
package com.tchat.clickx;
import android.content.Intent;
import android.net.Uri;
import android.os.Build;
import android.os.Bundle;
import android.provider.Settings;
import android.view.View;
import android.widget.Toast;
import androidx.annotation.Nullable;
import androidx.appcompat.app.AppCompatActivity;
import com.tchat.clickx.databinding.ActivityMainBinding;
public class MainActivity extends AppCompatActivity {
private ActivityMainBinding binding;
private static final int OVERLAY_PERMISSION_REQUEST_CODE = 1;
@Override
protected void onCreate(@Nullable Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
binding = ActivityMainBinding.inflate(getLayoutInflater());
setContentView(binding.getRoot());
binding.button.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
if (checkOverlayPermission()){
startFloatingService();
}
}
});
}
// 检查悬浮窗权限
private boolean checkOverlayPermission() {
if (!Settings.canDrawOverlays(this)) {
// 如果没有权限,请求权限
Intent intent = new Intent(Settings.ACTION_MANAGE_OVERLAY_PERMISSION,
Uri.parse("package:" + getPackageName()));
startActivityForResult(intent, OVERLAY_PERMISSION_REQUEST_CODE);
Toast.makeText(this, "请授予悬浮窗权限", Toast.LENGTH_LONG).show();
return false;
}
return true;
}
// 启动悬浮窗服务
private void startFloatingService() {
Intent intent = new Intent(MainActivity.this, FloatingService.class);
startService(intent);
}
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
if (requestCode == OVERLAY_PERMISSION_REQUEST_CODE) {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
if (Settings.canDrawOverlays(this)) {
startFloatingService();
} else {
Toast.makeText(this, "未获得悬浮窗权限", Toast.LENGTH_SHORT).show();
}
}
}
}
}
activity_main.xml
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<Button
android:id="@+id/button"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="开启悬浮窗"
app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
layout_floating.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical">
<ImageView
android:id="@+id/image"
android:layout_width="50dp"
android:layout_height="50dp"
android:src="@mipmap/icon" />
<TextView
android:id="@+id/text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="@color/black" />
</LinearLayout>