seekbar 其實也是一種 progressbar ,它是 progressbar 的間接派生類,因此 progressbar 可以用的方法, seekbar 都可以用。 1.
在布局檔案 (main.xml) 中,增加介面元素宣告如下:
xml version
="1.0"
encoding
="utf-8"
?>
<
linearlayout
xmlns:android
=""
android:orientation
="horizontal"
android:layout_width
="fill_parent"
android:layout_height
="fill_parent"
>
<
seekbar
android:id
="@+id/seekbar"
android:layout_width
="240px"
android:layout_height
="wrap_content"
android:max
="500"
/>
<
textview
android:id
="@+id/seekbar_tv"
android:layout_width
="80px"
android:layout_height
="wrap_content"
android:text = ""
/>
2. activity 所對應的**:
public class controlseekbar extends activity
implements
onseekbarchangelistener
public
void
onprogresschanged(seekbar sb,
intprogress,
boolean
fromuser)
public
void
onstarttrackingtouch(seekbar seekbar)
public
void
onstoptrackingtouch(seekbar seekbar)
} 執行結果 :
拖動 thumb 之前 :
拖動 thumb 到 400 處:
Delphi ListView的用法 常用技巧
delphi listview的用法 常用技巧 2008 02 03 11 37 增加 i listview1.items.count with listview1 do begin listitem items.add listitem.caption inttostr i listitem.su...
常用的Elasticseaerch檢索技巧彙總
本篇部落格是對前期工作中遇到es坑的一些小結,順手記錄下,方便日後查閱。為了講解不同型別es檢索,我們將要對包含以下型別的文件集合進行檢索 1 title 標題 2 authors 作者 3 summary 摘要 4 release data 發布日期 首先,讓我們借助 bulk api批量建立新的...
關於 分享一些常用的JavaScript技巧
有時候我們需要對乙個變數查檢其是否存在或者檢查值是否有乙個有效值,如果存在就返回 true 值。為了做這樣的驗證,我們可以使用 操作符來實現是非常的方便與簡單。對於變數可以使用 variable 做檢測,只要變數的值為 0 null undefined 或者 nan 都將返回的是 false,反之返...