1 Ocak 2018 Pazartesi

ClipboardManager Sınıfı

Giriş
Panoyu tüm uygulamalar okuyabilir. Açıklaması şöyle.
Any app/service can read your clipboard data. In fact, there is a lot of code online which creates a service running with a listener in the background, which will inform the app whenever the content on the clipboard changes, along with the content.
addPrimaryClipChangedListener metodu
Şöyle yaparız.
ClipboardManager cm = ...;
cm.addPrimaryClipChangedListener(
  new ClipboardManager.OnPrimaryClipChangedListener() {
    @Override
    public void onPrimaryClipChanged() {
      ...
    }
});
getText metodu
Şöyle yaparız.
String str = cm.getText().toString();

Hiç yorum yok:

Yorum Gönder