SeekBar控件的使用

    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">


            android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/hello_world" />


            android:id="@+id/seekBar"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        />



--------------------------------------------------------------

package com.example.seekbartest;


import android.support.v7.app.ActionBarActivity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.widget.SeekBar;




/*
 * 
 * 这个类的主要功能就是使用SeekBar 该控件主要就是播放条 可以进行拉动的
 * 使用该控件的步骤:
 * (1)写布局文件
 * (2)得到SeekBar的对象
 * (3)设置该控件的监听  SeekBar。OnSeekBarChangeListener
 * (4)对seekBar设置监听

 * */

public class MainActivity extends ActionBarActivity {

private SeekBar seekBar;

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);

seekBar =(SeekBar)findViewById(R.id.seekBar);
seekBar.setMax(100);//设置进度条的最大长度是多少
seekBar.setOnSeekBarChangeListener(new SeekBarListener());

}

class SeekBarListener implements SeekBar.OnSeekBarChangeListener{



/*
* 主要是进度条进度发生变化,该方法就会触发 无论是手动改变还是自己变化
* progress 是0~~~max之间的一个数值
* fromUser  代表是否是用户滑动
* */
@Override
public void onProgressChanged(SeekBar seekBar, int progress,
boolean fromUser) {
//表示当前的进度是多少
System.out.println(progress);
}


/*
* 在刚开始滑动滑块的瞬间
* */
@Override
public void onStartTrackingTouch(SeekBar seekBar) {
System.out.println("start=====>"+seekBar.getProgress());
}


/*
* 停止滑块滑动的瞬间
* */
@Override
public void onStopTrackingTouch(SeekBar seekBar) {
System.out.println("end=====>"+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;
}


@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
if (id == R.id.action_settings) {
return true;
}
return super.onOptionsItemSelected(item);
}
}


你可能感兴趣的:(android)