언어 설정

Menu
Sites
Language
Window creation

How to create a window with full screen so that autohide bar should not come (disabled)

Responses

10 댓글
Alex Dem

Hi,
If you mean always don't show indicator area (full screen):
1) Via Native UI Builder select your root form->Properties-> Style->Show Indidcator=false and Indidcator  Auto Hide =false

2) Programmatically, just create Form without FormStyle properties like FORM_STYLE_PORTRAIT_INDICATOR_AUTO_HIDE and FORM_STYLE_PORTRAIT_INDICATOR:
Form* pForm = new Form();
pForm->Construct(FORM_STYLE_NORMAL | FORM_STYLE_HEADER );

Alexey.

P puvvada

Thanks a lot it is working now .

I have followed this url https://developer.tizen.org/dev-guide/2.2.1/org.tizen.gettingstarted/html/tizen_overview/platform_privileges.htm to get platform previleges

and i have created a window with high priority   using Window::SetZOrderGroup(WINDOW_Z_ORDER_GROUP_HIGH) inside frame  On initialization method now

iam able to disable the home button but when iam pressing power button ,power pop message is comming for shutdown message 

 

then how to disable the power button and volume button ,otherwise power popmessage should  be hide below the frame

 

 

 

 

 

 

Alex Dem

Hi,
Just minor question:
Could you please provide exact (full)  repository URL for clone to obtain certificate with platform privileges (it is not quite clear for me from article)?
Alexey.

P puvvada

I have taken certificate from this url https://review.tizen.org/git/?p=framework/security/hash-signer.git;a=tree;h=0f8cb9ccabcf2fc4c9692613de8ca61e5a362c88;hb=bd8d04b0e94ae6cce668f6df9c93316eded01cd5

Alex Dem

Thank you!

Alexey.

Alex Dem

Just minor note:
If you ll use Window::SetZOrderGroup(WINDOW_Z_ORDER_GROUP_HIGHEST); you could disable to show volume slider bar (but volume value could be changed) over your app , but not power popup.
Alexey.

P puvvada

you are right , i tried with that  Window_Z_ORDER_GROUP_HIGH , volume  message is  not showing but i want to diasble those button atleast in my application context  and also power button pop message should be overlayed below my screen

Iam trying to develop lock screen  (invoked after boot completed ) with some authentication (user need to give  registered password )  when the authentication fails

  and eventhough user presses power and volume buttons,that message should be overlayed below my screen

 

 

 

 

 

Alex Ashirov

Hi,

AFAIK, you can't disable these system dialogs even you have platform level privileges.

P puvvada

In Tizen default lockscreen ,if i press volume up and down buttons then volume message is not showing

Alex Ashirov

You are right. But the default lock screen is system component and probably it uses some private APIs which are not available for regular applications. But anyway if you will find how to disable these screens please let us know.