jmad_reward_view.xml 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:tools="http://schemas.android.com/tools"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent"
  6. android:orientation="vertical"
  7. >
  8. <LinearLayout
  9. android:id="@+id/ll_video_player"
  10. android:layout_width="match_parent"
  11. android:layout_height="match_parent"
  12. android:visibility="gone">
  13. <FrameLayout
  14. android:id="@+id/fl_container"
  15. android:layout_width="match_parent"
  16. android:layout_height="match_parent">
  17. <com.Jcat.Adsdk.view.NiceVideoPlayer
  18. android:id="@+id/nice_video_player"
  19. android:layout_width="match_parent"
  20. android:layout_height="match_parent"
  21. >
  22. </com.Jcat.Adsdk.view.NiceVideoPlayer>
  23. </FrameLayout>
  24. </LinearLayout>
  25. <RelativeLayout
  26. android:id="@+id/ll_page"
  27. android:layout_width="match_parent"
  28. android:layout_height="match_parent"
  29. android:visibility="visible"
  30. android:orientation="vertical">
  31. <com.Jcat.Adsdk.view.WebImageView
  32. android:id="@+id/image_page"
  33. android:layout_width="match_parent"
  34. android:layout_height="match_parent"></com.Jcat.Adsdk.view.WebImageView>
  35. <RelativeLayout
  36. android:layout_width="300dp"
  37. android:layout_height="match_parent"
  38. android:background="#50000000"
  39. android:layout_alignParentRight="true"
  40. >
  41. <Button
  42. android:id="@+id/page_close_btn"
  43. android:layout_width="28dp"
  44. android:layout_height="28dp"
  45. android:background="@drawable/jmad_close"
  46. android:scaleType="fitXY"
  47. android:layout_alignParentRight="true"
  48. android:layout_marginRight="20dp"
  49. android:layout_marginTop="20dp"
  50. />
  51. <LinearLayout
  52. android:layout_width="wrap_content"
  53. android:layout_height="wrap_content"
  54. android:layout_centerInParent="true"
  55. android:orientation="vertical"
  56. android:gravity="center"
  57. >
  58. <com.Jcat.Adsdk.view.RoundImageView
  59. android:id="@+id/app_icon"
  60. android:layout_width="55dp"
  61. android:layout_height="55dp"
  62. android:src="@drawable/jmad_img_placeholder"
  63. />
  64. <TextView
  65. android:id="@+id/mainTitleView"
  66. android:layout_width="wrap_content"
  67. android:layout_height="wrap_content"
  68. android:text="奇迹MU"
  69. android:textColor="@color/jmfont_white"
  70. android:textSize="22sp"
  71. android:layout_marginTop="20dp"
  72. />
  73. <TextView
  74. android:id="@+id/tv_gameDesc"
  75. android:layout_width="240dp"
  76. android:layout_height="wrap_content"
  77. android:layout_marginTop="20dp"
  78. android:lines="3"
  79. android:text=""
  80. android:textColor="@color/jmfont_white"
  81. android:textSize="18sp" />
  82. <LinearLayout
  83. android:layout_width="wrap_content"
  84. android:layout_height="wrap_content"
  85. android:layout_marginTop="15dp"
  86. android:layout_gravity="center"
  87. android:gravity="center">
  88. <ImageView style="@style/jmad_big_star_style" />
  89. <ImageView style="@style/jmad_big_star_style" />
  90. <ImageView style="@style/jmad_big_star_style" />
  91. <ImageView style="@style/jmad_big_star_style" />
  92. <ImageView style="@style/jmad_big_star_style" />
  93. <TextView
  94. android:layout_width="wrap_content"
  95. android:layout_height="wrap_content"
  96. android:textColor="@color/jmfont_white"
  97. android:text="4.9"
  98. android:textSize="16sp"
  99. android:layout_marginLeft="5dp"
  100. />
  101. </LinearLayout>
  102. <TextView
  103. android:id="@+id/tv_starCount"
  104. android:layout_width="wrap_content"
  105. android:layout_height="wrap_content"
  106. android:layout_marginTop="10dp"
  107. android:singleLine="true"
  108. android:text="(255)"
  109. android:textColor="#646161"
  110. android:textSize="15sp" />
  111. <Button
  112. android:id="@+id/download_btn"
  113. android:layout_width="120dp"
  114. android:layout_height="36dp"
  115. android:background="@drawable/jmad_button_bg"
  116. android:text="立即下载"
  117. android:textColor="@color/jmfont_white"
  118. android:layout_marginTop="15dp"
  119. android:textSize="14sp" />
  120. </LinearLayout>
  121. </RelativeLayout>
  122. </RelativeLayout>
  123. </LinearLayout>