Web Content List Screenlet for Android

Requirements

  • Android SDK 4.1 (API Level 16) or above
  • Liferay Portal 6.2 CE/EE, Liferay CE Portal 7.0/7.1, Liferay DXP

Compatibility

  • Android SDK 4.1 (API Level 16) or above

Xamarin Requirements

  • Visual Studio 7.2
  • Mono .NET framework 5.4.1.6

Features

Web Content List Screenlet has the following features:

  • Shows a scrollable collection of web content articles.
  • Implements fluent pagination with configurable page size.
  • Supports i18n in web content values.

JSON Services Used

Screenlets in Liferay Screens call JSON web services in the portal. This Screenlet calls the following services and methods.

ServiceMethodNotes
JournalArticleServicegetJournalArticles
JournalArticleServicegetJournalArticlesCount

Module

  • None

Views

  • Default

The Default View uses a standard RecyclerView to show the scrollable list. Other Views may use a different component, such as ViewPager or others, to show the items.

Figure 1: The Web Content List Screenlet using the Default View.

Figure 1: The Web Content List Screenlet using the Default View.

Offline

This Screenlet supports offline mode so it can function without a network connection. For more information on how offline mode works, see the tutorial on its architecture. Here are the offline mode policies that you can use with this Screenlet:

PolicyWhat happensWhen to use
REMOTE_ONLYThe Screenlet loads the list from the Liferay instance. If a connection issue occurs, the Screenlet uses the listener to notify the developer about the error. If the Screenlet successfully loads the list, it stores the data in the local cache for later use.Use this policy when you always need to show updated data, and show nothing when there’s no connection.
CACHE_ONLYThe Screenlet loads the list from the local cache. If the list isn’t there, the Screenlet uses the listener to notify the developer about the error.Use this policy when you always need to show local data, without retrieving remote information under any circumstance.
REMOTE_FIRSTThe Screenlet loads the list from the Liferay instance. If this succeeds, the Screenlet shows the list to the user and stores it in the local cache for later use. If a connection issue occurs, the Screenlet retrieves the list from the local cache. If the list doesn’t exist there, the Screenlet uses the listener to notify the developer about the error.Use this policy to show the most recent version of the data when connected, but show a possibly outdated version when there’s no connection.
CACHE_FIRSTThe Screenlet loads the list from the local cache. If the list isn’t there, the Screenlet requests it from the Liferay instance and notifies the developer about any errors that occur (including connectivity errors).Use this policy to save bandwidth and loading time in case you have local (but possibly outdated) data.

Required Attributes

  • folderId
  • labelFields

Attributes

AttributeData typeExplanation
layoutId@layoutThe ID of the layout to use to show the View.
autoLoadbooleanWhether the list loads automatically when the Screenlet appears in the app’s UI. The default value is true.
folderIdnumberThe ID of the web content folder to retrieve content from.
groupIdnumberThe ID of the site (group) where the asset is stored. If set to 0, the groupId specified in LiferayServerContext is used. The default value is 0.
cachePolicystringThe offline mode setting. See the Offline section for details.
firstPageSizenumberThe number of items to retrieve from the server for display on the first page. The default value is 50.
pageSizenumberThe number of items to retrieve from the server for display on the second and subsequent pages. The default value is 25.
labelFieldsstringThe comma-separated names of the DDM fields to show. Refer to the list’s data definition to find the field names. For more information on this, see the article on structured web content. Note that the appearance of data from a structure’s fields depends on the layoutId.
obcClassNamestringThe name of the OrderByComparator class to use to sort the results. Omit this property if you don’t want to sort the results. Click here to see some comparator classes. Note, however, that not all of these classes can be used with obcClassName. You can only use comparator classes that extend OrderByComparator<JournalArticle>. You can also create your own comparator classes that extend OrderByComparator<JournalArticle>.

Methods

MethodReturnExplanation
loadPage(pageNumber)voidStarts the request to load the specified page of records. The page is shown when the response is received.

Listener

Web Content List Screenlet delegates some events to an object or a class that implements the BaseListListener interface. This interface lets you implement the following methods:

  • onListPageFailed(int startRow, Exception e): Called when the server call to retrieve a page of items fails. This method’s arguments include the Exception generated when the server call fails.

  • onListPageReceived(int startRow, int endRow, List<Record> records, int rowCount): Called when the server call to retrieve a page of items succeeds. Note that this method may be called more than once; once for each page received. Because startRow and endRow change for each page, a startRow of 0 corresponds to the first item on the first page.

  • onListItemSelected(Record records, View view): Called when an item is selected in the list. This method’s arguments include the selected list item (Record).

« Web Content Display Screenlet for AndroidImage Gallery Screenlet for Android »
Este artigo foi útil?
Utilizadores que acharam útil: 0 de 0