fragment_video_play_article.xml
1.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
xmlns:app="http://schemas.android.com/apk/res-auto"
tools:ignore="MissingDefaultResource">
<com.wd.player.widget.VideoAndLivePlayerView
android:id="@+id/playerView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:playResourceType="DETAIL"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintStart_toStartOf="parent"/>
<ImageView
android:id="@+id/btn_close"
android:layout_width="@dimen/rmrb_dp20"
android:layout_height="@dimen/rmrb_dp20"
android:layout_margin="@dimen/rmrb_dp6"
android:src="@mipmap/icon_close_white_video"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
android:visibility="gone"/>
<androidx.appcompat.widget.AppCompatSeekBar
android:id="@+id/window_seekbar"
style="@style/style_window_seekbar"
android:thumb="@android:color/transparent"
android:layout_width="match_parent"
android:layout_height="@dimen/rmrb_dp2"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
android:visibility="gone"/>
</androidx.constraintlayout.widget.ConstraintLayout>