Android控件之-SeekBar_移动开发_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > 移动开发 > Android控件之-SeekBar

Android控件之-SeekBar

 2010/12/15 8:01:04  ko8e  http://ko8e.javaeye.com  我要评论(0)
  • 摘要:拖动条类似于进度条,但是进度条不可以控制。拖动条可以被用户控制,在SeekBar中要监听3个事件。分别是:1.数值的改变(onProgressBar)2.开始拖动(onStarTrackingTouch)3.停止拖动(onStopTrackingTouch)packagecom.ko8e;importandroid.app.Activity;importandroid.os.Bundle;importandroid.widget.SeekBar;importandroid.widget
  • 标签:android 控件 Android控件

拖动条类似于进度条,但是进度条不可以控制。

拖动条可以被用户控制,在SeekBar中要监听3个事件。

分别是:

1.数值的改变(onProgressBar

2.开始拖动(onStarTrackingTouch)

3.停止拖动(onStopTrackingTouch)

package com.ko8e;

import android.app.Activity;
import android.os.Bundle;
import android.widget.SeekBar;
import android.widget.TextView;
import android.widget.Toast;

public class MyActivity extends Activity {
    /** Called when the activity is first created. */
	TextView textView1 = null;
	TextView textView2 = null;
	SeekBar sb = null;
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        
        textView1 = (TextView) findViewById(R.id.textView1);
        textView2 = (TextView) findViewById(R.id.textView2);
        sb = (SeekBar) findViewById(R.id.seekBar);
        
        textView1.setText("初始值:" + sb.getProgress());
        sb.setOnSeekBarChangeListener(new SeekBar.OnSeekBarChangeListener() {
			
			public void onStopTrackingTouch(SeekBar seekBar) {
				Toast.makeText(getApplicationContext(), "onStopTrackingTouch", Toast.LENGTH_SHORT).show();
			}
			
			public void onStartTrackingTouch(SeekBar seekBar) {
				Toast.makeText(getApplicationContext(), "onStartTrackingTouch", Toast.LENGTH_SHORT).show();
			}
			
			public void onProgressChanged(SeekBar seekBar, int progress,
					boolean fromUser) {
				textView2.setText("当前进度值:" + sb.getProgress());
				Toast.makeText(getApplicationContext(), "onProgressChanged", Toast.LENGTH_SHORT).show();
			}
		});
        
    }
    
}

?main.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    >
<SeekBar
	android:id="@+id/seekBar"
	android:layout_width="fill_parent"
	android:layout_height="wrap_content"
	android:max="100"
	android:progress="30"
	android:secondaryProgress="70"
	/>
	<TextView  
	android:id="@+id/textView1"
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    />
    <TextView  
	android:id="@+id/textView2"
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    />
</LinearLayout>
?
上一篇: Android控件之-ProgressDialog 下一篇: SQLite
发表评论
用户名: 匿名