<?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. Flutter实现购物车动画
  2. XML解析和生成之--pull(android内置)
  3. 警惕针对中国移动手机用户的Android恶意
  4. Android(安卓)Launcher研究--手把手教你
  5. android自学总结
  6. Android手掌抑制功能的实现
  7. 我的Android进阶之旅------>Android中的
  8. App基于html/css/js的开发
  9. android中的多进程模式(IPC)
  10. Android内存分析工具:Memory Profiler