C# Class CrossUI.Droid.Dialog.Elements.Element

Inheritance: Java.Lang.System.Object, IElement
Mostra file Open project: MvvmCross/MvvmCross

Public Methods

Method Description
ActOnCurrentAttachedCell ( Action updateAction ) : void
GetView ( Android.Content.Context context, Android.Views.View convertView, Android.Views.ViewGroup parent ) : Android.Views.View
Matches ( string text ) : bool
Selected ( ) : void
Summary ( ) : string

Returns a summary of the value represented by this object, suitable for rendering as the result of a RootElement with child objects.

Protected Methods

Method Description
Element ( string caption = null, string layoutName = null ) : Android.Content

Initializes the element with the given caption and layout.

GetViewImpl ( Android.Content.Context context, Android.Views.ViewGroup parent ) : Android.Views.View

Overriden by most derived classes, creates a View with the contents for display

UpdateCaptionDisplay ( Android.Views.View cell ) : void
UpdateCellDisplay ( Android.Views.View cell ) : void

Override this method if you want some other action to be taken when a cell view is set

Method Details

ActOnCurrentAttachedCell() public method

public ActOnCurrentAttachedCell ( Action updateAction ) : void
updateAction Action
return void

Element() protected method

Initializes the element with the given caption and layout.
protected Element ( string caption = null, string layoutName = null ) : Android.Content
caption string /// The caption. ///
layoutName string /// The layout to load. ///
return Android.Content

GetView() public method

public GetView ( Android.Content.Context context, Android.Views.View convertView, Android.Views.ViewGroup parent ) : Android.Views.View
context Android.Content.Context
convertView Android.Views.View
parent Android.Views.ViewGroup
return Android.Views.View

GetViewImpl() protected method

Overriden by most derived classes, creates a View with the contents for display
protected GetViewImpl ( Android.Content.Context context, Android.Views.ViewGroup parent ) : Android.Views.View
context Android.Content.Context
parent Android.Views.ViewGroup
return Android.Views.View

Matches() public method

public Matches ( string text ) : bool
text string
return bool

Selected() public method

public Selected ( ) : void
return void

Summary() public method

Returns a summary of the value represented by this object, suitable for rendering as the result of a RootElement with child objects.
public Summary ( ) : string
return string

UpdateCaptionDisplay() protected method

protected UpdateCaptionDisplay ( Android.Views.View cell ) : void
cell Android.Views.View
return void

UpdateCellDisplay() protected method

Override this method if you want some other action to be taken when a cell view is set
protected UpdateCellDisplay ( Android.Views.View cell ) : void
cell Android.Views.View
return void