r = this->AddControl(__pListView);
TryCatch(E_SUCCESS == r, , "AddControl() failed by %s.", GetErrorMessage(r));
- SetDefaultContentType();
-
return r;
CATCH:
delete __pListView;
return r;
}
-void
-MainForm::SetDefaultContentType(void)
-{
- __pListView->Draw();
- CheckContentTypeList((int)CONTENT_TYPE_OTHER);
-}
-
result
MainForm::SearchContent(void)
{
if (__pListView->IsItemChecked(i))
{
__pListView->SetItemChecked(i, false);
- __pListView->RefreshList(i, LIST_REFRESH_TYPE_ITEM_MODIFY);
}
}
}
if (checkFlag == false)
{
__pListView->SetItemChecked(prevCheck, true);
- __pListView->RefreshList(prevCheck, LIST_REFRESH_TYPE_ITEM_MODIFY);
}
}
MainForm::OnSceneActivatedN(const Tizen::Ui::Scenes::SceneId& previousSceneId,
const Tizen::Ui::Scenes::SceneId& currentSceneId, Tizen::Base::Collection::IList* pArgs)
{
- // TODO:
- // Add your scene activate code here
AppLog("OnSceneActivatedN");
+
+ __pListView->UpdateList();
+ CheckContentTypeList((int)CONTENT_TYPE_OTHER);
}
void
MainForm::OnSceneDeactivated(const Tizen::Ui::Scenes::SceneId& currentSceneId,
const Tizen::Ui::Scenes::SceneId& nextSceneId)
{
- // TODO:
- // Add your scene deactivate code here
AppLog("OnSceneDeactivated");
}
{
CheckContentTypeList(__contentType);
}
+
+ listView.Invalidate(true);
}
void