fragment_start.xml
1.4 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
<FrameLayout 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:background="@color/bgColor"
tools:context="com.shunzhi.parent.ui.fragment.StartFragment">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<com.stx.xhb.xbanner.XBanner
android:id="@+id/xBanner"
android:layout_width="match_parent"
android:layout_height="match_parent"></com.stx.xhb.xbanner.XBanner>
<com.share.mvpsdk.view.MyVieoView
android:id="@+id/myVideoView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:visibility="visible" />
</LinearLayout>
<TextView
android:id="@+id/tvJump"
android:layout_width="@dimen/size_dp_50"
android:layout_height="@dimen/size_dp_50"
android:layout_gravity="right"
android:layout_margin="@dimen/size_dp_10"
android:background="@drawable/shape_xueqing_radius25"
android:gravity="center"
android:text="跳过"
android:textColor="@color/white"
android:textSize="@dimen/size_dp_12" />
</FrameLayout>