Android Programming Press on the image to return to the main documentation page.

TabHostExtras

Written by Martin Pearman

List of types:

TabHostExtras

TabHostExtras


Events:

None

Members:


  getTabEnabled (tabHost1 As android.widget.TabHost, index As IntAs Boolean

  getTabHeight (tabHost1 As android.widget.TabHost) As Int

  getTabVisibility (tabHost1 As android.widget.TabHost, index As IntAs Boolean

  setTabContentViewPadding (tabHost1 As android.widget.TabHost, left As Int, top As Int, right As Int, bottom As Int)

  setTabEnabled (tabHost1 As android.widget.TabHost, enabled As Boolean)

  setTabEnabled2 (tabHost1 As android.widget.TabHost, enabled As Boolean, index As Int)

  setTabGradientDrawable (tabHost1 As android.widget.TabHost, orientation As String, color1 As Int, color2 As Int, cornerRadius As Float)

  setTabGradientDrawable2 (tabHost1 As android.widget.TabHost, orientation As String, color1 As Int, color2 As Int, cornerRadius() As Float)

  setTabHeight (tabHost1 As android.widget.TabHost, tabHeight As Int)

  setTabHostPadding (tabHost1 As android.widget.TabHost, left As Int, top As Int, right As Int, bottom As Int)

  setTabVisibility (tabHost1 As android.widget.TabHost, visible As Boolean)

  setTabVisibility2 (tabHost1 As android.widget.TabHost, visible As Boolean, index As Int)

Members description:

getTabEnabled (tabHost1 As android.widget.TabHost, index As IntAs Boolean
Get the Enabled state of TabIndicator #index in tabHost1
getTabHeight (tabHost1 As android.widget.TabHost) As Int
Get the height (in pixels) of the TabIndicators in tabHost1
getTabVisibility (tabHost1 As android.widget.TabHost, index As IntAs Boolean
Get the visibility of TabIndicators #index in tabHost1
setTabContentViewPadding (tabHost1 As android.widget.TabHost, left As Int, top As Int, right As Int, bottom As Int)
Set the layout padding (in dip) of tabHost1 TabContentView
setTabEnabled (tabHost1 As android.widget.TabHost, enabled As Boolean)
Enable or disable all TabIndicators in tabHost1
setTabEnabled2 (tabHost1 As android.widget.TabHost, enabled As Boolean, index As Int)
Enable or disable TabIndicator #index in tabHost1
setTabGradientDrawable (tabHost1 As android.widget.TabHost, orientation As String, color1 As Int, color2 As Int, cornerRadius As Float)
Set a GradientDrawable as the background on all TabIndicators in tabHost1
All fours corner radii of the GradientDrawable are set to the value of cornerRadius (in pixels)
setTabGradientDrawable2 (tabHost1 As android.widget.TabHost, orientation As String, color1 As Int, color2 As Int, cornerRadius() As Float)
Set a GradientDrawable as the background on all TabIndicators in tabHost1
Corner radii of the GradientDrawable are set individually (in pixels) based upon the number of elements in the array cornerRadius:
1 element defines all corner radii
2 elements define corner radii in order top left and right, bottom left and right
4 elements define corner radii in order top-left, top-right, bottom-right, bottom-left
setTabHeight (tabHost1 As android.widget.TabHost, tabHeight As Int)
Set the height (in pixels) of all TabIndicators in tabHost1
setTabHostPadding (tabHost1 As android.widget.TabHost, left As Int, top As Int, right As Int, bottom As Int)
Set the layout padding (in dip) of tabHost1 container View
setTabVisibility (tabHost1 As android.widget.TabHost, visible As Boolean)
Set the visibility of all TabIndicators in tabHost1
setTabVisibility2 (tabHost1 As android.widget.TabHost, visible As Boolean, index As Int)
Set the visibility of TabIndicator #index in tabHost1
Top