CCListView problem

I test an example about CCListView, it works very well on IOS,but I port the same code to Android,the CCListView can’t display ,the code is as same as IOS,anyone know the reason?or the CCLisView just support IOS?? Thank u……

Did ExtensionsTest—>TextureWatcherTest also crash on your android device?
In the tests project, only TexturewatcherTest will use CCListView. So plz check it.

I’m sorry,I can’t see TexturewatcherTest in my tests project, where is it??

ExtensionTest—>TextureWatcherTest.

sorry, there indeed isn’t TextureWacherTest in ExtensionTest,my version is 2.0,there are CocosBuilderTest ControlExtensionTest,NofificationCenterTest, not TextureWacherTest.

Look into ExtensionTest.cpp.

void ExtensionsMainLayer::menuCallback(CCObject* pSender)
{
    CCMenuItemFont* pItem = (CCMenuItemFont*)pSender;
    int nIndex = pItem->getZOrder() - kItemTagBasic;

    switch (nIndex)
    {
    case TEST_NOTIFICATIONCENTER:
        {
            runNotificationCenterTest();
        }
        break;
    case TEST_CCCONTROLBUTTON:
        {
            CCControlSceneManager* pManager = CCControlSceneManager::sharedControlSceneManager();
            CCScene* pScene = pManager->currentControlScene();
            CCDirector::sharedDirector()->replaceScene(pScene);
        }
        break;
    case TEST_TEXTUREWATCHER:  //////////////////////////////////////////////////////////////////////// -------here-----------////////////////////////
        {
            static bool s_bOpened = false;
            s_bOpened = !s_bOpened;
            CCTextureWatcher::sharedTextureWatcher()->setDisplayWatcher(s_bOpened);
        }
        break;
    case TEST_COCOSBUILDER:
        {
            TestScene* pScene = new CocosBuilderTestScene();
            if (pScene)
            {
                pScene->runThisTest();
                pScene->release();
            }
        }
        break;
    default:
        break;
    }
}