您可以使用TVSDK來擷取可以顯示在搜尋列上的媒體資訊。
等候您的播放器處於準備狀態。
使用擷取目前的播放點時間 MediaPlayer.getCurrentTime
方法。
這會傳回虛擬時間軸上目前的播放點位置(以毫秒為單位)。 此時間是相對於已解析資料流而計算的,該資料流可能包含多個替代內容的例項,例如多個廣告或拼接到主資料流中的廣告插播。 對於即時/線性串流,傳回的時間一律在播放視窗範圍內。
long getCurrentTime() throws IllegalStateException;
擷取資料流的播放範圍並決定持續時間。
使用 mediaPlayer.getPlaybackRange
取得虛擬時間軸時間範圍的方法。
TimeRange getPlaybackRange() throws IllegalStateException;
剖析時間範圍,使用 mediacore.utils.TimeRange
.
若要決定持續時間,請從範圍的結尾減去開始時間。
這包括插入資料流(廣告)中的其他內容持續時間。
對於VOD,範圍一律從零開始,而結束值等於主要內容持續時間與插入到資料流(廣告)中之其他內容持續時間的和。
對於線性/即時資產,範圍表示播放視窗範圍,此範圍在播放期間會變更。
TVSDK會呼叫您的 onUpdated
回呼表示媒體專案已重新整理,而且其屬性(包括播放範圍)已更新。
使用上的可用方法 MediaPlayer
和 SeekBar
在Android SDK中公開可用以設定搜尋列引數的類別。
例如,以下是包含下列內容的可能版面 SeekBar
和兩個 TextView
元素。
<LinearLayout
android:id="@+id/controlBarLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:background="@android:color/black"
android:orientation="horizontal" >
<TextView
android:id="@+id/playerCurrentTimeText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="7dp"
android:text="00:00"
android:textColor="@android:color/white" />
<SeekBar
android:id="@+id/playerSeekBar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1" />
<TextView
android:id="@+id/playerTotalTimeText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="7dp"
android:text="00:00"
android:textColor="@android:color/white" />
</LinearLayout>
使用計時器定期擷取目前時間並更新SeekBar。
以下範例使用 Clock.java
helper類別做為計時器,可在參考播放器PrimetimeReference中使用。 此類別會設定事件監聽器,並觸發 onTick
每秒發生一次事件,或是您可以指定的另一個逾時值。
playbackClock = new Clock(PLAYBACK_CLOCK, CLOCK_TIMER);
playbackClockEventListener = new Clock.ClockEventListener() {
@Override
public void onTick(String name) {
// Timer event is received. Update the SeekBar here.
}
};
playbackClock.addClockEventListener(playbackClockEventListener);
在每個時鐘刻度上,此範例會擷取媒體播放器目前的位置並更新SeekBar。 它使用兩個TextView元素將目前時間和播放範圍結束位置標示為數值。
@Override
public void onTick(String name) {
if (mediaPlayer != null && mediaPlayer.getStatus() == PlayerState.PLAYING) {
handler.post(new Runnable() {
@Override
public void run() {
seekBar.setProgress((int)
mediaPlayer.getCurrentTime());
currentTimeText.setText(timeStampToText(
mediaPlayer.getCurrentTime()));
totalTimeText.setText(timeStampToText(
mediaPlayer.getPlaybackRange().getEnd()));
}
});
}
}