CopyPastor

Detecting plagiarism made easy.

Score: 0.9499073818973873; Reported for: String similarity Open both answers

Possible Plagiarism

Reposted on 2017-01-05
by nzala

Original Post

Original - Posted on 2017-01-05
by nzala



            
Present in both answers; Present only in the new answer; Present only in the old answer;

TextView seek = (TextView)layout.findViewById(R.id.seek); SeekBar seekBar = (SeekBar)layout.findViewById(R.id.seekbar); seekBar.setProgress(0); seekBar.incrementProgressBy(0.5); seekBar.setMax(6); seekBar.setOnSeekBarChangeListener(new SeekBar.OnSeekBarChangeListener(){ @Override public void onProgressChanged(SeekBar seekBar, int progress, boolean fromUser) { progress = progress / 0.5; progress = progress * 0.5; seek.setText(String.valueOf(progress)); } @Override public void onStartTrackingTouch(SeekBar seekBar) { } @Override public void onStopTrackingTouch(SeekBar seekBar) { } });
TextView seek = (TextView)layout.findViewById(R.id.seek); SeekBar seekBar = (SeekBar)layout.findViewById(R.id.seekbar); seekBar.setProgress(0); seekBar.incrementProgressBy(1000); seekBar.setMax(10000); seekBar.setOnSeekBarChangeListener(new SeekBar.OnSeekBarChangeListener(){ @Override public void onProgressChanged(SeekBar seekBar, int progress, boolean fromUser) { progress = progress / 1000; progress = progress * 1000; seek.setText(String.valueOf(progress)); } @Override public void onStartTrackingTouch(SeekBar seekBar) { } @Override public void onStopTrackingTouch(SeekBar seekBar) { } });

        
Present in both answers; Present only in the new answer; Present only in the old answer;