It may be a daft question but the tabs themselves are quite big, is there a way to make the tab button (not the view just the tab part at the top) smaller in height?
Dave
Dave
It may be a daft question but the tabs themselves are quite big, is there a way to make the tab button (not the view just the tab part at the top) smaller in height?
I shall try to find out how to make the app different sizes for different phones and test via an emulator as my next task is to adapt the app display to the available size as currently all my apps are for 320x480.
Dim dens As Float
dens = Density
Dim lv As LayoutValues
lv = GetDeviceLayoutValues
If lv.Width > 599 Then
LayoutWidth = 800
If dens = 1.5 Then
Activity.LoadLayout("800x480x240")
Else
Activity.LoadLayout("800x480x160")
End If
Else
LayoutWidth = 480
Activity.LoadLayout("480x320x160")
End If
B4X:Dim dens As Float dens = Density Dim lv As LayoutValues lv = GetDeviceLayoutValues If lv.Width > 599 Then LayoutWidth = 800 If dens = 1.5 Then Activity.LoadLayout("800x480x240") Else Activity.LoadLayout("800x480x160") End If Else LayoutWidth = 480 Activity.LoadLayout("480x320x160") End If