mirror of
https://github.com/syncthing/syncthing-android.git
synced 2024-11-26 22:31:16 +00:00
Only copy device ID when finger lifts
This commit is contained in:
parent
7ddee2f953
commit
499309fcc1
1 changed files with 5 additions and 3 deletions
|
@ -184,9 +184,11 @@ public class DrawerFragment extends Fragment implements RestApi.OnReceiveSystemI
|
||||||
mDeviceId.setOnTouchListener(new View.OnTouchListener() {
|
mDeviceId.setOnTouchListener(new View.OnTouchListener() {
|
||||||
@Override
|
@Override
|
||||||
public boolean onTouch(View view, MotionEvent motionEvent) {
|
public boolean onTouch(View view, MotionEvent motionEvent) {
|
||||||
mActivity.getApi().copyDeviceId(mDeviceId.getText().toString());
|
if (motionEvent.getAction() == MotionEvent.ACTION_UP) {
|
||||||
view.performClick();
|
mActivity.getApi().copyDeviceId(mDeviceId.getText().toString());
|
||||||
return true;
|
return true;
|
||||||
|
}
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
mCpuUsage.setText(new DecimalFormat("0.00").format(info.cpuPercent) + "%");
|
mCpuUsage.setText(new DecimalFormat("0.00").format(info.cpuPercent) + "%");
|
||||||
|
|
Loading…
Reference in a new issue