public interface

PopupLayout

com.esri.android.map.popup.PopupLayout
Known Indirect Subclasses

Class Overview

Interface to be implemented by classes used as layout for the popup.
This layout should define at least 4 views:

  • the title view
  • the attribute view (implementing AttributeView if necessary)
  • the media view
  • the attachment view (implementing AttachmentView if necessary)
This layout should also provide a style for the popup.

Summary

Public Methods
abstract View getAttachmentsView()
Gets the attachments view.
abstract View getAttributesView()
Gets the attributes view.
abstract View getMediaView()
Gets the media view.
abstract PopupStyle getStyle()
Gets the style.
abstract View getTitleView()
Gets the title view.
abstract void setAttachmentsView(View attachmentsView)
Sets the attachments view.
abstract void setAttributesView(View attributesView)
Sets the attributes view.
abstract void setMediaView(View mediaView)
Sets the media view.
abstract void setTitleView(View titleView)
Sets the title view.

Public Methods

public abstract View getAttachmentsView ()

Gets the attachments view.

Returns
  • the attachments view

public abstract View getAttributesView ()

Gets the attributes view.

Returns
  • the attributes view

public abstract View getMediaView ()

Gets the media view.

Returns
  • the media view

public abstract PopupStyle getStyle ()

Gets the style.

Returns
  • the style

public abstract View getTitleView ()

Gets the title view.

Returns
  • the title view

public abstract void setAttachmentsView (View attachmentsView)

Sets the attachments view.

Parameters
attachmentsView the attachments view

public abstract void setAttributesView (View attributesView)

Sets the attributes view.

Parameters
attributesView the attributes view

public abstract void setMediaView (View mediaView)

Sets the media view.

Parameters
mediaView the media view

public abstract void setTitleView (View titleView)

Sets the title view.

Parameters
titleView the title view