Class AN_Dialog
Base class for Dialogs.
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ToString()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: SA.Android.App
Assembly: cs.temp.dll.dll
Syntax
public abstract class AN_Dialog
Constructors
AN_Dialog()
Creates a dialog window that uses the default dialog theme.
Declaration
public AN_Dialog()
AN_Dialog(AN_DialogTheme)
Creates a dialog window that uses a custom dialog style.
Declaration
public AN_Dialog(AN_DialogTheme theme)
Parameters
Type | Name | Description |
---|---|---|
AN_DialogTheme | theme | Dialog theme |
Properties
Cancelable
Sets whether this dialog is cancelable with the BACK key.
Declaration
public bool Cancelable { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Id
Internal dialog id
Declaration
public string Id { get; }
Property Value
Type | Description |
---|---|
System.String |
Message
Set the message to display.
Declaration
public string Message { get; set; }
Property Value
Type | Description |
---|---|
System.String |
ThemeId
Dialog theme
Declaration
public AN_DialogTheme ThemeId { get; }
Property Value
Type | Description |
---|---|
AN_DialogTheme |
Title
Set the title text for this dialog's window.
Declaration
public string Title { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Methods
Hide()
Closes the dialog.
Declaration
public abstract void Hide()
Show()
Start the dialog and display it on screen.
Declaration
public abstract void Show()