I am building an app wherein I have set up an roPosterScreen, and on isListItemFocused() event, I am resetting the theme of the roAppManager.
However, I had a problem wherein the theme wasn't being set properly with the code
channel_index=msg.GetIndex()
app_theme_aa=get_theme_aa(channel_index)
app1.setTheme(app_theme_aa)
poster.Show()
I included an image_canvas,and I replaced the above code with
channel_index=msg.GetIndex()
app_theme_aa=get_theme_aa(channel_index)
image_canvas.setLayer(0,[])
image_canvas.show()
app1.setTheme(app_theme_aa)
poster.Show()
The app works fine on the left-right direction key presses, however, whenever I press the UP key after isListItemFocused() event gets fired, the app hangs
It exits in the other case.
What could be a solution to this problem ? Any help would be appreciated.
Regards,
Batheja Sumeet