videoso.txt 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221
  1. -- 设置为竖屏模式
  2. activity.setRequestedOrientation(1)
  3. import "android.content.pm.ActivityInfo"
  4. import "android.view.WindowManager"
  5. import "android.graphics.Color"
  6. import "android.graphics.drawable.GradientDrawable"
  7. 标题='免费影院'
  8. 引擎='搜索'
  9. -- 搜索功能
  10. function 搜索()
  11. local text = edit.text -- 获取输入框内容
  12. local 网址 = "https://m.txcgb.site/mov/ruyi/seacher.php?wd=" .. text
  13. webView.loadUrl(网址) -- 加载搜索页面
  14. end
  15. function home()
  16. items={"小米翻译","影视搜索","百度百科"}
  17. AlertDialog.Builder(this)
  18. .setTitle("")
  19. .setItems(items,{onClick=function(l,v)
  20. if v==0 then
  21. 运行代码(读取文件(FILES.."tools/fanyi.txt"))
  22. end
  23. if v==1 then
  24. 运行代码(读取文件(FILES.."tools/videoso.txt"))
  25. end
  26. if v==2 then
  27. 运行代码(读取文件(FILES.."tools/baike.txt"))
  28. end
  29. if v==3 then
  30. end
  31. end})
  32. .show()
  33. end
  34. -- 监听返回键(true不退出,false退出)
  35. function onKeyDown(code, event)
  36. if code == KeyEvent.KEYCODE_BACK then -- 如果是返回键
  37. end
  38. return false
  39. end
  40. -- 设置状态栏颜色为青色
  41. activity.getWindow().addFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS)
  42. activity.getWindow().setStatusBarColor(Color.parseColor("#00BCD4")) -- 青色
  43. -- 设置按钮动画
  44. function 水珠动画(view, time)
  45. import "android.animation.ObjectAnimator"
  46. ObjectAnimator().ofFloat(view, "scaleX", {1.1, 0.9, 1, 0.9, 1}).setDuration(time).start()
  47. ObjectAnimator().ofFloat(view, "scaleY", {1.1, 0.9, 1, 0.9, 1}).setDuration(time).start()
  48. end
  49. -- 获取状态栏高度
  50. function getStatusBarHeight()
  51. local resources = activity.getResources()
  52. local resourceId = resources.getIdentifier("status_bar_height", "dimen", "android")
  53. local height = resources.getDimensionPixelSize(resourceId)
  54. return height
  55. end
  56. -- 创建圆角背景
  57. function 创建圆角背景(颜色, 圆角半径)
  58. local drawable = GradientDrawable()
  59. drawable.setShape(GradientDrawable.RECTANGLE)
  60. drawable.setColor(颜色)
  61. drawable.setCornerRadius(圆角半径)
  62. return drawable
  63. end
  64. -- 正文内容开始
  65. duo = {
  66. LinearLayout; -- 线性布局
  67. orientation = "vertical"; -- 布局方向
  68. layout_height = "fill"; -- 布局高度
  69. layout_width = "fill"; -- 布局宽度
  70. BackgroundColor = "#FFFFFF"; -- 背景颜色
  71. {
  72. LinearLayout;
  73. orientation = "horizontal";
  74. layout_width = "fill";
  75. layout_height = "86dp";
  76. BackgroundColor = "0xff1e8a86";
  77. gravity = "center_vertical"; -- 垂直居中
  78. paddingBottom = "-28dp";
  79. {
  80. TextView;
  81. layout_weight = "0.35"; -- 关键:占据剩余空间
  82. layout_width = "0dp"; -- 当使用weight时宽度要设为0dp
  83. layout_height = "wrap_content";
  84. textColor = "#FFFFFF";
  85. text = " 🏠";
  86. textSize = "20sp";
  87. layout_marginLeft = "15dp";
  88. onClick = function()
  89. home()
  90. end;
  91. };
  92. {
  93. TextView;
  94. layout_weight = "0.5"; -- 关键:占据剩余空间
  95. layout_width = "0dp"; -- 当使用weight时宽度要设为0dp
  96. layout_height = "wrap_content";
  97. textColor = "#FFFFFF";
  98. text = 标题;
  99. textSize = "20sp";
  100. onClick = function()
  101. local 网址 = "https://m.txcgb.site/mov/"
  102. webView.loadUrl(网址) -- 加载搜索页面
  103. end;
  104. };
  105. {
  106. TextView;
  107. layout_width = "wrap_content";
  108. layout_height = "wrap_content";
  109. textColor = "#FFFFFF";
  110. text = "退出";
  111. textSize = "20sp";
  112. layout_marginRight = "15dp"; -- 右侧间距
  113. gravity = "center_vertical"; -- 垂直居中
  114. gravity = "right"; -- 文字右对齐
  115. onClick = function()
  116. activity.finish()
  117. end;
  118. }
  119. };
  120. {
  121. LinearLayout; -- 输入区域
  122. orientation = "vertical";
  123. layout_width = "fill";
  124. layout_height = "wrap";
  125. layout_margin = "16dp";
  126. {
  127. CardView; -- 输入框卡片
  128. layout_width = "fill";
  129. layout_height = "wrap";
  130. CardBackgroundColor = "#FFFFFF"; -- 卡片背景颜色
  131. radius = "12dp"; -- 圆角
  132. elevation = "4dp"; -- 阴影
  133. {
  134. LinearLayout;
  135. orientation = "horizontal";
  136. layout_width = "fill";
  137. layout_height = "wrap";
  138. padding = "8dp";
  139. {
  140. EditText;
  141. id = "edit";
  142. layout_width = "0dp";
  143. layout_height = "48dp";
  144. layout_weight = "1"; -- 占据剩余空间
  145. background = "#00000000"; -- 透明背景
  146. gravity = "left|center"; -- 文字左对齐并居中
  147. textSize = "16sp"; -- 文本大小
  148. singleLine = true; -- 单行输入
  149. text="";
  150. hint = "输入关键词"; -- 提示文字
  151. hintTextColor = "#888888"; -- 提示文字颜色
  152. textColor = "#000000"; -- 输入文字颜色
  153. };
  154. {
  155. Button;
  156. id = "sousuo";
  157. layout_width = "70dp";
  158. layout_height = "48dp";
  159. background = 创建圆角背景(Color.parseColor("#ff1e8a86"), 24); -- 按钮背景颜色
  160. textColor = "#FFFFFF"; -- 按钮文字颜色
  161. text = "搜索";
  162. --------
  163. onClick = function()
  164. 水珠动画(sousuo, 150) -- 按钮动画
  165. if edit.text == "" then
  166. print("请输入查看内容")
  167. else
  168. print("正在打开中…")
  169. 搜索()
  170. end
  171. -------
  172. end;
  173. };
  174. };
  175. };
  176. };
  177. {
  178. CardView; -- 搜索结果卡片
  179. layout_margin = "16dp"; -- 边距
  180. layout_gravity = "center"; -- 居中
  181. elevation = "8dp"; -- 阴影
  182. layout_width = "fill"; -- 宽度
  183. layout_height = "fill"; -- 高度
  184. CardBackgroundColor = "#dddddddd"; -- 卡片背景颜色
  185. radius = "12dp"; -- 圆角
  186. {
  187. LuaWebView; -- 浏览器控件
  188. layout_width = "fill"; -- 宽度
  189. layout_height = "fill"; -- 高度
  190. id = "webView"; -- WebView 的 ID
  191. };
  192. };
  193. };
  194. activity.setContentView(loadlayout(duo))
  195. local 网址 = "https://m.txcgb.site/mov/tuijian/"
  196. webView.loadUrl(网址) -- 加载搜索页面