android控件开发之SeekBar
android控件开发之SeekBar
import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;
import android.widget.SeekBar;
public class MainActivity extends Activity {
private SeekBar mySeekBar = null;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
mySeekBar = (SeekBar)findViewById(R.id.mySeekBar);
//设置SeekBar的进度最大值
mySeekBar.setMax(100);
//绑定SeekBar的监听器
mySeekBar.setOnSeekBarChangeListener(new setSeekBarListener());
}
//创建SeekBar的监听器
class setSeekBarListener implements SeekBar.OnSeekBarChangeListener{
//当进度条的进度改变时,会调用此方法。可以根据fromUser判断,是否是用户手动调节进度
//progress 表示进度滑块当前的位置
@Override
public void onProgressChanged(SeekBar seekBar, int progress,
boolean fromUser) {
// TODO Auto-generated method stub
if(fromUser){
System.out.println("user change seekBar to -->" + progress);
}else{
System.out.println("system change seekBar to -->" + progress);
}
}
//当手动开始改变进度滑块的位置时调用此方法
@Override
public void onStartTrackingTouch(SeekBar seekBar) {
// TODO Auto-generated method stub
System.out.println("touch start -->" + seekBar.getProgress());
}
//当手动改变滑块位置结束时调用此方法
@Override
public void onStopTrackingTouch(SeekBar seekBar) {
// TODO Auto-generated method stub
System.out.println("touch stop -->" + seekBar.getProgress());
}
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
}
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".MainActivity" >
<TextView
android:id="@+id/myText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/hello_world" />
<SeekBar
android:id="@+id/mySeekBar"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@id/myText"
/>
</RelativeLayout>
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。