吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 675|回复: 5
收起左侧

[求助] 怎么单独写每个列表的点击事件?

[复制链接]
yule520184 发表于 2023-8-12 19:06
IMG_20230812_185851.jpg

免费评分

参与人数 2热心值 +2 收起 理由
fjk2001 + 1 谢谢@Thanks!
b12312312 + 1 我很赞同!

查看全部评分

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

0Ling0 发表于 2023-8-13 02:29
switch ?
asd124689 发表于 2023-8-13 06:43
rwj1990 发表于 2023-8-13 07:53
-- 创建项目数组
data = {}
color_table = {0xffff1744, 0xff651fff, 0xff00b0ff, 0xff00e5ff, 0xff00c853, 0xffffd600, 0xffffab00, 0xffff6d00}
text_table = {"学习", "工作", "健身", "购物", "唱歌", "电影", "料理", "待开"}

-- 创建适配器
adp = LuaAdapter(activity, data, item)

-- 添加数据
for i = 1, #color_table do
    table.insert(data, {
        card = {
            CardBackgroundColor = color_table[i],
        },
        text = {
            Text = text_table[i],
        },
    })
end

-- 设置适配器
grid.Adapter = adp

-- 设置点击事件
local function onItemClick(position)
    print("点击了:" .. text_table[position])
end

grid.onItemClick = function(_, _, _, position)
    onItemClick(position + 1) -- Lua 数组索引从 1 开始,而 Android 中从 0 开始
    return true
end
如果你需要更详细的点击,在 onItemClick 函数中添加相应的逻辑条件
k6661 发表于 2023-8-13 08:58
asd124689 发表于 2023-8-13 06:43
不懂就问 这是什么语言

应该是lua
 楼主| yule520184 发表于 2023-8-13 11:09
rwj1990 发表于 2023-8-13 07:53
-- 创建项目数组
data = {}
color_table = {0xffff1744, 0xff651fff, 0xff00b0ff, 0xff00e5ff, 0xff00c85 ...

嗯!恍然大悟!感谢大佬!
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-11-24 21:02

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表