changyong.txt 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  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. ---------
  93. if v.Tag.name.text:find '分享迷' then
  94. 写入文件(UA,塞班)
  95. 写入文件(UA标识,"塞班")
  96. 子页面('塞班',toolsText)
  97. else
  98. 子页面('安卓',toolsText)
  99. end
  100. ----------
  101. else
  102. WEB小程序(toolsText)
  103. ----------
  104. end
  105. end
  106. list.onItemLongClick = function(l, v, p, i)
  107. local toolsText = getToolsText(v)
  108. if toolsText:find '://' then
  109. if toolsText:find 'file://' then return true else
  110. --print("使用系统默认浏览器打开\n".. toolsText)
  111. 调用浏览器(toolsText)
  112. return true
  113. end
  114. else
  115. --print ('暂时没有添加长按功能噢😃!')
  116. return true
  117. end
  118. end
  119. list.Adapter = adapter
  120. local dataList = {
  121. {name="deepseek",tools="https://chat.deepseek.com/"},
  122. {name="豆包网页版",tools="https://www.doubao.com/chat/"},
  123. {name="kimi网页版",tools="https://kimi.moonshot.cn/"},
  124. {name="问小白",tools="https://www.wenxiaobai.com/chat/"},
  125. {name="更多AI网站",tools="https://hot.browser.miui.com/light/ai-tool-collection.html"},
  126. {name="永硕发布页",tools="http://cgb0523.ysupan.com/"},
  127. {name="蓝奏云",tools="https://up.woozooo.com/u"},
  128. {name="坚果云",tools="https://www.jianguoyun.com/d/home#/home"},
  129. {name="吾爱云盘",tools="https://wuaipan.com/"},
  130. {name="小米云",tools="https://i.mi.com/"},
  131. {name="分享迷",tools="https://www.fenxm.com/tv"},
  132. {name="盒子应用",tools="http://m.xlhs.com/k/dianshihezirj/"},
  133. {name="423下载",tools="https://www.423down.com/apk"},
  134. {name="YZJhr",tools="http://hr.yzjyy.com:8080/sapprd/common/login.jsp"},
  135. {name="网络剪贴板",tools="https://txtpad.cn/txcgb"},
  136. {name="学习Web开发",tools="https://developer.mozilla.org/zh-CN/docs/Learn"},
  137. {name="时间间隔计算",tools="file:///android_asset/htm/time/index.html"},
  138. {name="进制转换",tools="file:///android_asset/htm/2to10/index.html"},
  139. }
  140. for _, data in ipairs(dataList) do
  141. adapter.add(data)
  142. end