More seek bars in ApiDemos

Change-Id: I4a868da4ebfd527609d9983d5236d89624c2c011
This commit is contained in:
Alan Viverette
2015-05-29 16:24:22 -07:00
parent 7d7be2075a
commit 75f0029e5f
3 changed files with 53 additions and 8 deletions

View File

@@ -18,6 +18,9 @@ package com.example.android.apis.view;
import android.app.Activity;
import android.os.Bundle;
import android.widget.CheckBox;
import android.widget.CompoundButton;
import android.widget.CompoundButton.OnCheckedChangeListener;
import android.widget.SeekBar;
import android.widget.TextView;
@@ -39,10 +42,20 @@ public class SeekBar1 extends Activity implements SeekBar.OnSeekBarChangeListene
setContentView(R.layout.seekbar_1);
mSeekBar = (SeekBar)findViewById(R.id.seek);
mSeekBar = (SeekBar) findViewById(R.id.seek);
mSeekBar.setOnSeekBarChangeListener(this);
mProgressText = (TextView)findViewById(R.id.progress);
mTrackingText = (TextView)findViewById(R.id.tracking);
mProgressText = (TextView) findViewById(R.id.progress);
mTrackingText = (TextView) findViewById(R.id.tracking);
((CheckBox) findViewById(R.id.enabled)).setOnCheckedChangeListener(
new OnCheckedChangeListener() {
@Override
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
findViewById(R.id.seekMin).setEnabled(isChecked);
findViewById(R.id.seekMax).setEnabled(isChecked);
mSeekBar.setEnabled(isChecked);
}
});
}
public void onProgressChanged(SeekBar seekBar, int progress, boolean fromTouch) {