2

タッチ スクロールをサポートするタッチ アプリケーション (モバイル デバイス用ではない) を Java で作成する方法を探しています。私はこれまで検索してきましたが、これがどのように行われるかを調査しています-見つけたのは MT4J ( http://www.mt4j.org/ ) ですが、それはサポートされていないようです (間違っている場合は修正してください) )。私の質問は、水平タッチ/スワイプでスクロールイベントをエミュレートするにはどうすればよいですか?

手伝ってくれてありがとう!敬具、アレックス

4

2 に答える 2

4

これは、JScrollPane をサブクラス化することにより、タッチ アンド ドラッグ スクローラーを実装します。

タッチとドラッグだけでは十分ではないため、マウス ボタンを離したときにスクロールが「スロー」されるように運動量を追加しました。

「バウンス」の所有者に対して訴訟を起こす余裕がないため、スクロールの最後に「バウンス」はありません。

ビューが jlist の場合は問題なく動作しますが、パネルがその時点でドラッグされていた場合、応答を変更する必要があるコンポーネントがビューにある可能性があるため、完全にはカプセル化されていません。また、JRadioButton、JCheckBox などの一部のコンポーネントは、マウス クリックをコンテナに渡さずに消費するため、TouchScroll の MouseListener と MouseMotionListener をそれらに追加する必要があります。

import java.awt.Component;
import java.awt.event.MouseEvent;
import java.awt.event.MouseListener;
import java.awt.event.MouseMotionListener;

import javax.swing.JScrollBar;
import javax.swing.JScrollPane;

public class TouchScroll extends JScrollPane implements MouseListener,   MouseMotionListener {
private JScrollBar vbar = this.getVerticalScrollBar();

public TouchScroll(Component view){ // 1-arity CONSTRUCTOR
    super(view);
    view.addMouseListener(this);
    view.addMouseMotionListener(this);
}
public TouchScroll() {  super();    }   // 0-arity CONSTRUCTOR

public void setViewportView(Component view) {
    super.setViewportView(view);
    view.addMouseListener(this);
    view.addMouseMotionListener(this);
}

private static boolean wasdragged = false;  // other MouseListeners may need to know this ...
public boolean wasDragged() {       return wasdragged;  }   // ... this gives them safe access

static int lastY = 0, distY = 0;
double momentum = 0;    // not really physical momentum but it will be used to 'throw' the scroll when the mouse button is released
static boolean lbdown = false;
@Override
public void mouseDragged(MouseEvent e) {
    wasdragged = true;      
    distY = 0;
    int currentY = e.getYOnScreen();
    if(lbdown) {
        distY =  lastY - currentY;
        vbar.setValue(distY + vbar.getValue());
        if(Math.abs(distY) > 1)
            momentum = distY + distY;   // magnify and log the momentum for later use
    }
    lastY = currentY;
}

@Override
public void mousePressed(MouseEvent e) {
    if (e.getButton() == MouseEvent.BUTTON1) {
        lastY = e.getYOnScreen();
        lbdown = true;
    }
}

@Override
public void mouseReleased(MouseEvent e) {
    if (e.getButton() == MouseEvent.BUTTON1)
        lbdown = false;
    if(wasdragged)
        wasdragged = false;

    if(Math.abs(momentum) <= 4.0)   // then assume that the mouse wasn't moving (much) when the button was released
        return;
    // otherwise 'throw' the scroll
    int max = vbar.getMaximum();
    int count;
    double brakingforce = 1.04;     // set an initial braking force
    for(count = 1000; count > 0; count--){  // don't allow it to accidentally go on forever
        momentum = momentum / brakingforce; // apply the brake
        if(Math.abs(momentum) < 1.5)
            brakingforce = 1.02;    // ease off the brake towards the end (gives a slight overrun ala iOS)
        if(Math.abs(momentum) < 1.0)    // bring it to a halt
            break;
        int val = vbar.getValue();
        if(val < 0 || val > max)    // prevent overrun
            break;
        vbar.setValue((int) momentum + val);    // increment the scroll bar
        try {
            Thread.sleep(10);       // slow the loop down so the user can see the scroll
        } catch (InterruptedException e1) {
            e1.printStackTrace();
        }
    }
}

public void mouseMoved(MouseEvent e) {}
public void mouseClicked(MouseEvent e) {}
public void mouseEntered(MouseEvent e) {}
public void mouseExited(MouseEvent e) {}

}

これを適用する方法の「基本的な」例を次に示します。

panel = new JPanel();
jlist = new JList(list);
scroller = new TouchScroll(jlist);
panel.add(scroller);

マウスのリリースに応答するコンポーネントは、次のようなことを行う必要がある場合があります。

public void mouseReleased(MouseEvent e) {   
    if(scroller.wasDragged())
        return;
    actionENTER();
}

最後に、前述のように、マウス イベントを消費するコンポーネントは、スクローラーに次のように通知する必要があります。

JCheckBox checkbox = new JCheckBox(text);
checkbox.addMouseMotionListener(scroller);
checkbox.addMouseListener(scroller);
于 2016-07-06T14:53:02.907 に答える
1

JavaFX のタッチ イベント フレームワークを使用できます。

スクロール イベントの処理に関するリンクされたチュートリアルのサンプル コードを次に示します。

rect.setOnScroll(new EventHandler<ScrollEvent>() {
        @Override public void handle(ScrollEvent event) {
            if (!event.isInertia()) {
                rect.setTranslateX(rect.getTranslateX() + event.getDeltaX());
                rect.setTranslateY(rect.getTranslateY() + event.getDeltaY());
            }
            log("Rectangle: Scroll event" +
                ", inertia: " + event.isInertia() + 
                ", direct: " + event.isDirect());
            event.consume();
        }
});

rect.setOnScrollStarted(new EventHandler<ScrollEvent>() {
        @Override public void handle(ScrollEvent event) {
            inc(rect);
            log("Rectangle: Scroll started event");
            event.consume();
        }
});

rect.setOnScrollFinished(new EventHandler<ScrollEvent>() {
        @Override public void handle(ScrollEvent event) {
            dec(rect);
            log("Rectangle: Scroll finished event");
            event.consume();
        }
});
于 2013-05-09T21:32:45.250 に答える