B4J Question Container Page

BarryW

Active Member
Licensed User
Longtime User
Hi. I would like to create an app with pages like tabpane or pagination. Is there any way to hide the tab header text and make it full screen on its parent or to hide the page number of pagination also to make it full screen to its parent.

upload_2017-8-21_13-2-53.png


Here is my layout. I've done on clicking the listview then changing the page of pagination the only problem is to hide the page number (navigation) on the bottom.

Tnx
 

keirS

Well-Known Member
Licensed User
Longtime User
You can uses a tab pane and hide the tab header using CSS.

B4X:
.tab-pane {-fx-tab-max-height:0;}
.tab-pane .tab-header-area {
visibility: hidden ;}
 
Upvote 0
Top