2020-04-18 03:09:30 +05:30
|
|
|
/*
|
|
|
|
* Copyright 2020 Anjani Kumar <anjanik012@gmail.com>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License as
|
|
|
|
* published by the Free Software Foundation; either version 2 of
|
|
|
|
* the License or (at your option) version 3 or any later version
|
|
|
|
* accepted by the membership of KDE e.V. (or its successor approved
|
|
|
|
* by the membership of KDE e.V.), which shall act as a proxy
|
|
|
|
* defined in Section 14 of version 3 of the license.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
package org.kde.kdeconnect.Plugins.ClibpoardPlugin;
|
|
|
|
|
|
|
|
import androidx.appcompat.app.AppCompatActivity;
|
|
|
|
|
|
|
|
import android.content.ClipData;
|
|
|
|
import android.content.ClipboardManager;
|
|
|
|
import android.content.Context;
|
|
|
|
import android.os.Bundle;
|
|
|
|
import android.view.WindowManager;
|
|
|
|
import android.widget.Toast;
|
|
|
|
|
|
|
|
import org.kde.kdeconnect.BackgroundService;
|
|
|
|
import org.kde.kdeconnect.Device;
|
|
|
|
import org.kde.kdeconnect_tp.R;
|
|
|
|
|
|
|
|
import java.util.ArrayList;
|
|
|
|
|
|
|
|
/*
|
|
|
|
An activity to access the clipboard on Android 10 and later by raising over other apps.
|
|
|
|
This is invisible and doesn't require any interaction from the user.
|
|
|
|
This should be called when a change in clipboard is detected. This can be done by manually
|
|
|
|
when user wants to send the clipboard or by reading system log files which requires a special
|
|
|
|
privileged permission android.permission.READ_LOGS.
|
|
|
|
https://developer.android.com/reference/android/Manifest.permission#READ_LOGS
|
|
|
|
This permission can be gained by only from the adb by the user.
|
|
|
|
https://www.reddit.com/r/AndroidBusters/comments/fh60lt/how_to_solve_a_problem_with_the_clipboard_on/
|
|
|
|
|
|
|
|
Currently this activity is bering triggered from a button in Foreground Notification.
|
|
|
|
* */
|
|
|
|
public class ClipboardFloatingActivity extends AppCompatActivity {
|
|
|
|
|
|
|
|
private ArrayList<Device> connectedDevices = new ArrayList<>();
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onWindowFocusChanged(boolean hasFocus) {
|
|
|
|
super.onWindowFocusChanged(hasFocus);
|
|
|
|
if (hasFocus) {
|
|
|
|
// We are now sure that clipboard can be accessed from here.
|
|
|
|
ClipboardManager clipboardManager = (ClipboardManager) getSystemService(Context.CLIPBOARD_SERVICE);
|
|
|
|
ClipData.Item item;
|
|
|
|
if (clipboardManager.hasPrimaryClip()) {
|
|
|
|
item = clipboardManager.getPrimaryClip().getItemAt(0);
|
|
|
|
String content = item.coerceToText(this).toString();
|
|
|
|
for (Device device : connectedDevices) {
|
|
|
|
ClipboardPlugin clipboardPlugin = (ClipboardPlugin) device.getPlugin("ClipboardPlugin");
|
|
|
|
if (clipboardPlugin != null) {
|
|
|
|
clipboardPlugin.propagateClipboard(content);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Toast.makeText(this, R.string.pref_plugin_clipboard_sent, Toast.LENGTH_SHORT).show();
|
|
|
|
}
|
|
|
|
finish();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void onCreate(Bundle savedInstanceState) {
|
|
|
|
super.onCreate(savedInstanceState);
|
2020-04-18 03:41:46 +05:30
|
|
|
setContentView(R.layout.activity_clipboard_floating);
|
2020-04-18 03:09:30 +05:30
|
|
|
WindowManager.LayoutParams wlp = getWindow().getAttributes();
|
|
|
|
wlp.dimAmount = 0;
|
|
|
|
wlp.flags = WindowManager.LayoutParams.FLAG_LAYOUT_NO_LIMITS |
|
|
|
|
WindowManager.LayoutParams.FLAG_NOT_TOUCH_MODAL;
|
|
|
|
|
|
|
|
getWindow().setAttributes(wlp);
|
|
|
|
ArrayList<String> connectedDeviceIds = getIntent().getStringArrayListExtra("connectedDeviceIds");
|
|
|
|
if (connectedDeviceIds != null) {
|
|
|
|
for (String deviceId : connectedDeviceIds) {
|
|
|
|
connectedDevices.add(BackgroundService.getInstance().getDevice(deviceId));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|