Reputation: 49
I am developing a tizen native application in samsung gear s2,and I want to simulate press the back key event to get to prevous page,how could I get this? thanks
Upvotes: 0
Views: 482
Reputation: 203
EEXT_CALLBACK_BACK is Hardware Back key event
Register the Back key event callback
eext_object_event_callback_add(ad->win, EEXT_CALLBACK_BACK, win_back_cb, ad);
Upvotes: 1