-
在bada软件开发中使用的常见控件--List
资源介绍
常用控件--List
监听方法:
virtual void OnItemStateChanged(const Osp::Ui::Control& source, int index, int itemId, Osp::Ui::ItemStatus status);
实现:
1. __pList->AddItemEventListener(*this);
2.
void Form1::OnItemStateChanged(const Osp::Ui::Control& source, int index, int itemId, Osp::Ui::ItemStatus status)
{
switch (index)
{
default:
AppLog("The Index of List Items is %d", index);
break;
}
}