Merge pull request #370 from Zillode/copy-id

Only copy device ID when finger lifts
This commit is contained in:
Zillode 2015-04-29 19:32:58 +02:00
commit cdffed64af
1 changed files with 5 additions and 3 deletions

View File

@ -184,9 +184,11 @@ public class DrawerFragment extends Fragment implements RestApi.OnReceiveSystemI
mDeviceId.setOnTouchListener(new View.OnTouchListener() {
@Override
public boolean onTouch(View view, MotionEvent motionEvent) {
mActivity.getApi().copyDeviceId(mDeviceId.getText().toString());
view.performClick();
return true;
if (motionEvent.getAction() == MotionEvent.ACTION_UP) {
mActivity.getApi().copyDeviceId(mDeviceId.getText().toString());
return true;
}
return false;
}
});
mCpuUsage.setText(new DecimalFormat("0.00").format(info.cpuPercent) + "%");