首页 > 代码库 > android控件开发之SeekBar
android控件开发之SeekBar
android控件开发之SeekBar
本博文主要讲述的是SeekBar的使用,此控件在播放器中使用时相当的广泛。下面我们直接来看看代码吧!
mainActivity.java:
package com.example.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;
}
}
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;
}
}
主布局文件mail.xml:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
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>
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>
实现的效果如下:
当用户拖动SeekBar中的滑块时,会调用监听器中的相关方法,会打印出如下log:
android控件开发之SeekBar
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。