Back

CreateTabs

Hello World
Content:
- Methods

Tabs are useful if you have multiple subsections in your app. The user can then press the title of a tab and the control will automatically switch to the corresponding layout.

tab = app.CreateTabs( list, width, height, options ) → app object: Tabs

To add children to a tab layout you have to retreive it first (because they were already created by the control):
var layTab1 = tab.GetLayout( "TabName1" );
Then you canuse it as every normal layout control

Example - Basic

function OnStart()
{
    lay = app.CreateLayout( "linear", "VCenter,FillXY" );

    var tabs = app.CreateTabs( "Tab 1,Tab 2,Tab 3", 0.8, 0.8, "VCenter" );
    lay.AddChild( tabs );

    tab1 = tabs.GetLayout( "Tab 1" );
    tab1.SetBackGradient( "red", "green", "", "left-right" );

    tab1 = tabs.GetLayout( "Tab 2" );
    tab1.SetBackGradient( "green", "blue", "", "left-right" );

    tab1 = tabs.GetLayout( "Tab 3" );
    tab1.SetBackGradient( "blue", "red", "", "left-right" );

    app.AddLayout( lay );
}
Copy All       Run      

Methods

The following methods are available on the Tabs object:

Focus()
GetAbsHeight() → number: integer
GetAbsWidth() → number: integer
GetHeight( options ) → number
GetLayout( name ) → app object: Layout
GetLeft( options ) → number
GetParent() → app object
GetPosition( options ) → object: { left, top, right, bottom }
GetTop( options ) → number
GetType() → string: “Tabs”
GetVisibility() → string: “Show” or “Hide” or “Gone”
GetWidth( options ) → number
Gone()
Hide()
IsEnabled() → boolean
IsOverlap( obj, depth ) → boolean
IsVisible() → boolean
Method( name, types, p1, p2, p3, p4 ) → all types
     parent.AddTab( name )
SetScale( x, y )
Show()
boolean
app object
number
string
unknown
number: factor
number: fraction (0..1)
number: integer
number: milliseconds
number: -180..180
number: -100..100
number: 0..100
number: 0..0.99 or 1..256
string:
  hexadecimal: “#rrggbb”, “#aarrggbb”
  colourName: “red”, “green”, ...
string: comma “,” separated
string: path to file or folder ( “/absolute/...” or “relative/...” )
string: “Flip” or “FadeIn” or “FadeOut” or “CrossFade” or “SlideFromBottom” or “SlideFromLeft” or “SlideFromRight” or “SlideFromTop” or “SlideToBottom” or “SlideToLeft” or “SlideToRight” or “SlideToTop” or “ScaleFromBottom” or “ScaleFromLeft” or “ScaleFromRight” or “ScaleFromTop” or “ScaleToBottom” or “ScaleToLeft” or “ScaleToRight” or “ScaleToTop”
string: “px”
string: “screen”, “px”
string: “left-right” or “right-left” or “top-bottom” or “bottom-top” or “bl-tr” or “br-tl” or “tl-br” or “tr-bl”
string: “repeat”
string: “Add” or “Multiply” or “clear” or “darken” or “lighten” or “overlay” or “screen” or “xor” or “src_in” or “src_out” or “src_atop” or “src_over” or “dst_in” or “dst_out” or “dst_atop” or “dst_over”
string: “px” or “sp” or “dip” or “mm” or “pt”
string: “px” or “sp” or “dip” or “dp” or “mm” or “pt”
string: “Show” or “Hide” or “Gone”
string: “Linear.None” or “Quadratic.In/Out” or “Cubic.In/Out” or “Quartic.In/Out” or “Quintic.In/Out” or “Sinusoidal.In/Out” or “Exponential.In/Out” or “Circular.In/Out” or “Elastic.In/Out” or “Back.In/Out” or “Bounce.In/Out”
object: { source, action, count, x: [ x1, x2, x3 ], y: [ y1, y2, y3 ] }
object: { source, action, count, x: [ x1, x2, x3 ], y: [ y1, y2, y3 ] }
object: { source, action, count, x: [ x1, x2, x3 ], y: [ y1, y2, y3 ] }
object: { source, action, count, x: [ x1, x2, x3 ], y: [ y1, y2, y3 ] }
object: { x, y, w, w, sw, sh, rot }
app object: Layout
list: boolean,char,byte,short,int,long,float,double,String,CharSequence,...
function()
function( name )
function( src )
function( event )
function( event )
function( event )
function( event )
tab.AdjustColor
Adjust the visual color effect of the control by setting the Hue (by angle in degrees in a color circle), the saturation, brightness and contrast of the control.
tab.Animate
Animates the layout. Available animations are Fade, Flip, Slide or Scale.
tab.ClearFocus
Removes the focus of the control so that the user no longer has immediate access to it.
tab.Focus
Set the focus to the control so that the user can interact with it immediately.
tab.GetAbsHeight
Get the absolute height of the control in pixels.
tab.GetAbsWidth
Get the absolute width of the control in pixels.
tab.GetHeight
Get the height of the control as screen height relative float or in pixels with the px option.
tab.GetLayout
Returns the content layout of a given tab.
tab.GetLeft
Get the distance from the control to the left parent border as width relative float or in pixels with the px option.
tab.GetParent
Returns the parent control object where the object was added to - commonly a layout.
tab.GetPosition
Returns data about the position and size of the control.
If the screen option is given the position on the screen will be returned. Otherwise relative to the parent control.
The px options turns the relative values into pixels.
tab.GetTop
Get the distance from the control to the upper parent border as height relative float or in pixels with the px option.
tab.GetType
Returns the control class name.
tab.GetVisibility
Returns the current visibility state of the control. The Values are:
Show: visible
Hide: invisible but still consuming space
Gone: invisible and not consuming space
tab.GetWidth
Get the width of the control as screen width relative float or in pixels with the px option.
tab.Gone
Hides the control without consuming any more layout space as if it were never there.
tab.Hide
Hide the control but keep the layout space free.
tab.IsEnabled
Returns whether the control is currently useable by the user.
tab.IsOverlap
Returns whether the control overlaps with another by a given distance.
tab.IsVisible
Returns whether the control is currently visible to the user, ignoring overlaying controls.
tab.Method
Allows access to other functions defined on the object in Java via reflection.

Note: This function is a premium feature. Please consider subscribing to Premium to use this feature and support DroidScript in its further development.
tab.parent.AddTab
Adds a new tab to the tabs control.
tab.SetBackAlpha
Set the transparency of the background by an alpha value between 0 (no transparency) and 0.99 (full transparent) or 1 (no transparency) and 256 (full transparent)
tab.SetBackColor
Changes the background color of the control.
tab.SetBackGradient
Define the background color of the control with a gradient. The default gradient direction is from top to bottom, but you can change it from left to right and the reversed versions of course.
tab.SetBackGradientRadial
Define a radial color gradient for the background of control.
tab.SetBackground
Changes the background to an image which can be repeated using the repeat option.
An image which is often used with that option is '/res/drawable/pattern_carbon' - try it out!
tab.SetColorFilter
Adjust the visual color effect with a color and a given BlendMode. More information about BlendMode can be found in the Android Developer page.
tab.SetEnabled
En/Disable the control physically and visually so that the user can/can not access the control. Events like OnTouch will still be fired.
tab.SetMargins
Define a distance to other controls on each side of the control.
tab.SetOnChange
Define a callback function which is called when the tab has been changed by the user.
tab.SetOnChildChange
Defines a callback function which is called when the content of a child control has beed changed by the user.
tab.SetOnLongTouch
Define a callback function which is called when the object has been long pressed.
tab.SetOnTouch
Define a callback function that is called when the user touches the control. In addition, an event object is passed to the callback function to obtain information about the touch type, the touch position(s), the amount of touches and the control that was touched.
tab.SetOnTouchDown
Define a callback function which is called when the user started toching the control.
tab.SetOnTouchMove
Define a callback function which is called when the user drags his finger over the screen.
tab.SetOnTouchUp
Define a callback function which is called when the users finger leaves the screen.
tab.SetPadding
Define distances that elements within the control are to maintain from the control borders.
tab.SetPosition
Defines the position and size for the control if the parent is an absolute layout.
tab.SetScale
Scales the control along with its contents by the factors passed to the function.
tab.SetSize
Change the size of the control in either screen relative values or in pixels if the px option was given.
tab.SetTouchable
En/Disables touch events to be fired on the control. Other events like OnChange will still be fired.
tab.SetTouchThrough
Define whether the layout should forward OnTouch events to underlying controls.
tab.SetVisibility
Change the visibility of the control to one of the available modes:
Show: visible
Hide: invisible but still consuming space
Gone: invisible and not consuming space
tab.Show
Set the visibility of the control to “Show”.
tab.ShowTab
Switch to a given tab name
tab.Tween
Performs an animation on the control.
The target object is for the position, size and rotation that the control has at the end of the animation.

The type specifies the behavior and the speed of the animation. Separated by a dot, you must also specify whether you want to apply this behavior to the beginning (In), end (Out), or to both (InOut) times of the animation.

With the amount of repeats you can control how many times you want to play the animation.

If you have jojo activated, the animation will alternate between forward and backward playback, so that if the repetition value is odd, the control will be at the start position again at the end of the animation.

Finally the callback function will be called after the animation has finished. Well, it's about time!