123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical"
- >
- <LinearLayout
- android:id="@+id/ll_video_player"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:visibility="gone">
- <FrameLayout
- android:id="@+id/fl_container"
- android:layout_width="match_parent"
- android:layout_height="match_parent">
- <com.Jcat.Adsdk.view.NiceVideoPlayer
- android:id="@+id/nice_video_player"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- >
- </com.Jcat.Adsdk.view.NiceVideoPlayer>
- </FrameLayout>
- </LinearLayout>
- <RelativeLayout
- android:id="@+id/ll_page"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:visibility="visible"
- android:orientation="vertical">
- <com.Jcat.Adsdk.view.WebImageView
- android:id="@+id/image_page"
- android:layout_width="match_parent"
- android:layout_height="match_parent"></com.Jcat.Adsdk.view.WebImageView>
- <RelativeLayout
- android:layout_width="300dp"
- android:layout_height="match_parent"
- android:background="#50000000"
- android:layout_alignParentRight="true"
- >
- <Button
- android:id="@+id/page_close_btn"
- android:layout_width="28dp"
- android:layout_height="28dp"
- android:background="@drawable/jmad_close"
- android:scaleType="fitXY"
- android:layout_alignParentRight="true"
- android:layout_marginRight="20dp"
- android:layout_marginTop="20dp"
- />
- <LinearLayout
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerInParent="true"
- android:orientation="vertical"
- android:gravity="center"
- >
- <com.Jcat.Adsdk.view.RoundImageView
- android:id="@+id/app_icon"
- android:layout_width="55dp"
- android:layout_height="55dp"
- android:src="@drawable/jmad_img_placeholder"
- />
- <TextView
- android:id="@+id/mainTitleView"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="奇迹MU"
- android:textColor="@color/jmfont_white"
- android:textSize="22sp"
- android:layout_marginTop="20dp"
- />
- <TextView
- android:id="@+id/tv_gameDesc"
- android:layout_width="240dp"
- android:layout_height="wrap_content"
- android:layout_marginTop="20dp"
- android:lines="3"
- android:text=""
- android:textColor="@color/jmfont_white"
- android:textSize="18sp" />
- <LinearLayout
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginTop="15dp"
- android:layout_gravity="center"
- android:gravity="center">
- <ImageView style="@style/jmad_big_star_style" />
- <ImageView style="@style/jmad_big_star_style" />
- <ImageView style="@style/jmad_big_star_style" />
- <ImageView style="@style/jmad_big_star_style" />
- <ImageView style="@style/jmad_big_star_style" />
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:textColor="@color/jmfont_white"
- android:text="4.9"
- android:textSize="16sp"
- android:layout_marginLeft="5dp"
- />
- </LinearLayout>
- <TextView
- android:id="@+id/tv_starCount"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginTop="10dp"
- android:singleLine="true"
- android:text="(255)"
- android:textColor="#646161"
- android:textSize="15sp" />
- <Button
- android:id="@+id/download_btn"
- android:layout_width="120dp"
- android:layout_height="36dp"
- android:background="@drawable/jmad_button_bg"
- android:text="立即下载"
- android:textColor="@color/jmfont_white"
- android:layout_marginTop="15dp"
- android:textSize="14sp" />
- </LinearLayout>
- </RelativeLayout>
- </RelativeLayout>
- </LinearLayout>
|