<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"    android:layout_width="fill_parent"    android:layout_height="fill_parent"    android:orientation="vertical" >    <TextView        android:layout_width="fill_parent"        android:layout_height="wrap_content"        android:text="@string/hello" />    <SeekBar        android:id="@+id/seekBar1"        android:layout_width="match_parent"        android:layout_height="wrap_content" />    <TextView        android:id="@+id/textView1"        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:text="TextView" /></LinearLayout>




package com.pandy.seekbar;import android.app.Activity;import android.os.Bundle;import android.view.View;import android.widget.SeekBar;import android.widget.TextView;public class SeekBarDemoActivity extends Activity {    /** Called when the activity is first created. */private SeekBar seekBar1;private TextView textView1;     @Override    public void onCreate(Bundle savedInstanceState) {        super.onCreate(savedInstanceState);        setContentView(R.layout.main);                seekBar1 = (SeekBar)findViewById(R.id.seekBar1);        textView1 = (TextView)findViewById(R.id.textView1);                seekBar1.setVisibility(View.VISIBLE);                seekBar1.setOnSeekBarChangeListener(new SeekBar.OnSeekBarChangeListener() {@Overridepublic void onStopTrackingTouch(SeekBar seekBar) {// TODO Auto-generated method stubtextView1.setText("onStopTrackingTouch....");}@Overridepublic void onStartTrackingTouch(SeekBar seekBar) {// TODO Auto-generated method stubtextView1.setText("onStartTrackingTouch....");}@Overridepublic void onProgressChanged(SeekBar seekBar, int progress,boolean fromUser) {// TODO Auto-generated method stubtextView1.setText("onProgressChanged:"+progress);}});            }}

更多相关文章

  1. 代码中设置drawableleft
  2. android 3.0 隐藏 系统标题栏
  3. Android开发中activity切换动画的实现
  4. Android(安卓)学习 笔记_05. 文件下载
  5. Android中直播视频技术探究之—摄像头Camera视频源数据采集解析
  6. 技术博客汇总
  7. android 2.3 wifi (一)
  8. AndRoid Notification的清空和修改
  9. Android中的Chronometer

随机推荐

  1. Android 面试题集(精华收藏版)
  2. Android Bluetooth 蓝牙强度Rssi
  3. Android之网络Http之判断是否连接服务器
  4. Layout___一行多列填充父窗口
  5. android app 静默安装
  6. iphone4抖动效果源码
  7. Android实现滑动加载数据的方法
  8. Android系统显示原理简介
  9. android带有占位符的国际化
  10. 10本最新的Android开发电子书免费下载