赞
踩
拖动条控件SeekBar
SeekBar:允许用户拖动滑块来改变值,因此拖动条通过用
于对系统的某种数值进行调节
Android:thumb 指定一个Drawable对象,该对象将作为自
定义滑块
SeekBar的常见属性
style="@android:style/Widget.SeekBar" 指定seekbar
的样式
android:max=“200” 指定seekbar的最大值为200,默认是
100
android:progress="75"指定seekbar的当前值为75
android:thumb 设置seekbar的滑动块样式
android:progressDrawable 设置seekbar的进度条的样式
其中指定seekbar的当前值,我们也可以通过代码设置,
如:seekBar.setProgress(75);
SeekBar的简单使用与事件监听
1.activity_main.xml
<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/
android"
xmlns:app="http://schemas.android.com/apk/res-
auto"
xmlns:tools=“http://schemas.android.com/tools”
android:layout_width=“match_parent”
android:layout_height=“match_parent”
android:fitsSystemWindows=“true”
tools:context=“com.example.seekbarui.MainActivity”
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width=“match_parent”
android:layout_height="?
attr/actionBarSize"
android:background="?
attr/colorPrimary"
app:popupTheme="@style/AppTheme.PopupOverlay" />
</android.support.design.widget.AppBarLayout>
<include layout="@layout/content_main" />
<android.support.design.widget.FloatingActionButto
n
android:id="@+id/fab"
android:layout_width=“wrap_content”
android:layout_height=“wrap_content”
android:layout_gravity=“bottom|end”
android:layout_margin="@dimen/fab_margin"
android:src="@android:drawable/ic_dialog_map" />
</android.support.design.widget.CoordinatorLayout>
2.content_main.xml
<?xml version="1.0" encoding="utf-8"?><RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/
android"
xmlns:app="http://schemas.android.com/apk/res-
auto"
xmlns:tools=“http://schemas.android.com/tools”
android:layout_width=“match_parent”
android:layout_height=“match_parent”
android:paddingBottom="@dimen/activity_vertical_ma
rgin"
android:paddingLeft="@dimen/activity_horizontal_ma
rgin"
android:paddingRight="@dimen/acti
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。