Skip to main content

IAndroidRefreshCustomizer Interface

Defines classes that customize an Android refreshing bar.

Namespace: DevExpress.Mobile.DataGrid.Theme

Assembly: DevExpress.Mobile.Grid.v18.2.dll

Declaration

public interface IAndroidRefreshCustomizer

The following members return IAndroidRefreshCustomizer objects:

Remarks

Important

This documentation topic describes legacy technology. We no longer develop new functionality for the GridControl and suggest that you use the new DataGridView control instead.

To customize the color of the Android refreshing bar, use the IAndroidRefreshCustomizer.BarColor property of the object that implements the IAndroidRefreshCustomizer interface.

Example

This example demonstrates how to customize a color of an indicator (icon or bar) shown when GridControl refreshes cell data.

Grid_RefreshingIndicators

To change the color of a refresh indicator, perform the steps below.

  1. Activate a grid’s pull-to-refresh functionality. For this purpose, assign true to the GridControl.IsPullToRefreshEnabled property.
  2. Use the ThemeBase class’s properties to access customizers used to change an indicator’s color on different mobile platforms. In this example, the following customizers are used.

  3. Apply the customization by calling the ThemeManager.RefreshTheme method.
See Also