ysdq.txt 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. -- 设置为竖屏模式
  2. activity.setRequestedOrientation(1)
  3. function hexToColor(hex)
  4. -- 去掉 # 前缀
  5. hex = hex:gsub("#", "")
  6. -- 将十六进制转换为数字
  7. local color = tonumber(hex, 16)
  8. return color
  9. end
  10. local hexColor = "#ff009688"
  11. local MyColor = hexToColor(hexColor)
  12. 写入文件(随机色,MyColor)
  13. 读取颜色(随机色,随机色)
  14. layout = {
  15. LinearLayout,
  16. orientation ='vertical',
  17. layout_width = 'fill',
  18. layout_height = 'fill',
  19. background = '#ffffff',
  20. {
  21. TextView,
  22. text = '影视推荐',
  23. textSize = '20sp',
  24. textColor = '#333333',
  25. layout_gravity = "center|bottom",
  26. layout_marginTop = '35px',
  27. },
  28. {
  29. TextView,
  30. layout_width = '97.4%w',
  31. layout_height = '5px',
  32. layout_marginTop = '10dp',
  33. layout_marginBottom = '10dp',
  34. layout_gravity = 'center',
  35. backgroundColor = MyColor
  36. },
  37. {
  38. GridView,
  39. id = "list",
  40. numColumns = 3,
  41. layout_width = 'fill',
  42. layout_height = 'fill',
  43. horizontalSpacing = "3dp",
  44. verticalSpacing = "0dp",
  45. layout_gravity = "center",
  46. OverScrollMode = 2
  47. }
  48. }
  49. webView.addView(loadlayout(layout))
  50. function 布局边框(边框粗细, 边框颜色, 背景颜色, 圆角大小)
  51. import "android.graphics.drawable.GradientDrawable"
  52. drawable = GradientDrawable()
  53. drawable.setShape(GradientDrawable.RECTANGLE)
  54. drawable.setStroke(边框粗细, tonumber(边框颜色))
  55. drawable.setColor(tonumber(背景颜色))
  56. drawable.setCornerRadius(圆角大小)
  57. return drawable
  58. end
  59. item = {
  60. LinearLayout,
  61. layout_height = "48dp",
  62. layout_width = "fill",
  63. {
  64. LinearLayout,
  65. layout_height = "fill",
  66. layout_width = "fill",
  67. layout_margin = "5dp",
  68. BackgroundDrawable = 布局边框(4,MyColor, 0x00000000, 15),
  69. {
  70. TextView,
  71. id = "name",
  72. layout_height = "fill",
  73. layout_width = "fill",
  74. gravity = "center",
  75. textColor = "#FF000000"
  76. },
  77. {
  78. TextView,
  79. id = "tools",
  80. layout_width = "0dp",
  81. layout_height = "0dp"
  82. }
  83. }
  84. }
  85. adapter = LuaAdapter(activity, item)
  86. function getToolsText(v)
  87. return v.Tag.tools and v.Tag.tools.text or ""
  88. end
  89. list.onItemClick = function(l, v, p, i)
  90. local toolsText = getToolsText(v)
  91. if toolsText:find '://' then
  92. 子页面('安卓',toolsText)
  93. else
  94. -------------------
  95. WEB小程序(toolsText)
  96. -------------------
  97. end
  98. end
  99. list.onItemLongClick = function(l, v, p, i)
  100. local toolsText = getToolsText(v)
  101. if toolsText:find '://' then
  102. if v.Tag.name.text:find '多功能工具' or v.Tag.name.text:find '本地' or v.Tag.name.text:find '历史记录' then
  103. print("软件内置工具,不支持使用系统默认浏览器打开😃!")
  104. return true
  105. end
  106. 调用浏览器(toolsText)
  107. return true
  108. else
  109. return true
  110. end
  111. end
  112. list.Adapter = adapter
  113. local dataList = {
  114. {name = "三维空间\nsan.txcgb.site", tools = "http://san.txcgb.site/jx/so/"},
  115. {name = "web10301\nm.txcgb.site", tools = "https://m.txcgb.site/jx/so/"},
  116. {name = "web10613\nmov.txcgb.site", tools = "https://mov.txcgb.site/jx/so/"},
  117. {name = "三维空间\ntxcgb.v2free.cf", tools = "http://txcgb.v2free.cf/jx/so/"},
  118. {name = "web10301\nyu.v2free.cf", tools = "https://yu.v2free.cf/jx/so/"},
  119. {name = "web10613\nmov.v2free.cf", tools = "https://mov.v2free.cf/jx/so/"},
  120. -- {name = "多功能工具", tools = "file:///android_asset/index.html"},
  121. {name = "本地导航", tools = "http://192.168.10.110:44444/dh/index.htm"},
  122. {name = "三维空间免费", tools = "http://txcgb.web3v.work/dh/"},
  123. {name="腾讯视频",tools ="https://film.qq.com/weixin/all.html?t=movie&ptag=viphome"},
  124. {name="优酷视频",tools ="http://www.youku.com/"},
  125. {name="芒果TV",tools ="http://m.mgtv.com/#/channel/home"},
  126. {name="爱奇艺",tools ="https://m.iqiyi.com/dianying"},
  127. {name="哔哩哔哩电影",tools ="https://m.bilibili.com/channel/v/movie/chinese"},
  128. {name="搜狐视频",tools ="https://m.tv.sohu.com/"},
  129. {name="乐视视频",tools ="http://m.le.com/"},
  130. }
  131. for _, data in ipairs(dataList) do
  132. adapter.add(data)
  133. end