p7725_fullscreen_adv_view.xml
1.74 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
39
40
41
42
43
44
45
46
47
48
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<RelativeLayout
android:id="@+id/fullscreen_advs_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<android.support.v4.view.ViewPager
android:id="@+id/adv_pager"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
</android.support.v4.view.ViewPager>
<LinearLayout
android:id="@+id/viewGroup"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@id/adv_pager"
android:layout_marginTop="-60dp"
android:gravity="center_horizontal"
android:orientation="horizontal" >
</LinearLayout>
<RelativeLayout
android:id="@+id/layout_chck_backgroud"
android:layout_width="180dp"
android:layout_height="30dp"
android:layout_below="@id/adv_pager"
android:layout_centerHorizontal="true"
android:layout_marginTop="-30dp"
android:background="#D0000000" >
<CheckBox
android:id="@+id/chck_not_show_today"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:checked="false"
android:text="@string/p7725_sdk_not_show_today"
android:textColor="#FFFFFF" />
</RelativeLayout>
</RelativeLayout>
</RelativeLayout>