Jeffrey
Jeffrey

Reputation: 49

how could I simulate the back key with tizen

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

Answers (1)

Mehedi Alamgir
Mehedi Alamgir

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);

Ref: https://developer.tizen.org/development/guides/native-application/user-interface/efl/hardware-input-handling/managing-menu-and-back-key-events

Upvotes: 1

Related Questions