|
@@ -22,11 +22,11 @@ package com.owncloud.android.ui.adapter;
|
|
|
|
|
|
import android.view.View;
|
|
import android.view.View;
|
|
|
|
|
|
-import com.owncloud.android.ui.activities.ActivityListItemDecoration;
|
|
|
|
|
|
+import com.owncloud.android.ui.activities.StickyHeaderItemDecoration;
|
|
|
|
|
|
public interface StickyHeaderAdapter {
|
|
public interface StickyHeaderAdapter {
|
|
/**
|
|
/**
|
|
- * This method gets called by {@link ActivityListItemDecoration} to fetch the position of the header item in the adapter
|
|
|
|
|
|
+ * This method gets called by {@link StickyHeaderItemDecoration} to fetch the position of the header item in the adapter
|
|
* that is used for (represents) item at specified position.
|
|
* that is used for (represents) item at specified position.
|
|
* @param itemPosition int. Adapter's position of the item for which to do the search of the position of the header item.
|
|
* @param itemPosition int. Adapter's position of the item for which to do the search of the position of the header item.
|
|
* @return int. Position of the header item in the adapter.
|
|
* @return int. Position of the header item in the adapter.
|
|
@@ -34,21 +34,21 @@ public interface StickyHeaderAdapter {
|
|
int getHeaderPositionForItem(int itemPosition);
|
|
int getHeaderPositionForItem(int itemPosition);
|
|
|
|
|
|
/**
|
|
/**
|
|
- * This method gets called by {@link ActivityListItemDecoration} to get layout resource id for the header item at specified adapter's position.
|
|
|
|
|
|
+ * This method gets called by {@link StickyHeaderItemDecoration} to get layout resource id for the header item at specified adapter's position.
|
|
* @param headerPosition int. Position of the header item in the adapter.
|
|
* @param headerPosition int. Position of the header item in the adapter.
|
|
* @return int. Layout resource id.
|
|
* @return int. Layout resource id.
|
|
*/
|
|
*/
|
|
int getHeaderLayout(int headerPosition);
|
|
int getHeaderLayout(int headerPosition);
|
|
|
|
|
|
/**
|
|
/**
|
|
- * This method gets called by {@link ActivityListItemDecoration} to setup the header View.
|
|
|
|
|
|
+ * This method gets called by {@link StickyHeaderItemDecoration} to setup the header View.
|
|
* @param header View. Header to set the data on.
|
|
* @param header View. Header to set the data on.
|
|
* @param headerPosition int. Position of the header item in the adapter.
|
|
* @param headerPosition int. Position of the header item in the adapter.
|
|
*/
|
|
*/
|
|
void bindHeaderData(View header, int headerPosition);
|
|
void bindHeaderData(View header, int headerPosition);
|
|
|
|
|
|
/**
|
|
/**
|
|
- * This method gets called by {@link ActivityListItemDecoration} to verify whether the item represents a header.
|
|
|
|
|
|
+ * This method gets called by {@link StickyHeaderItemDecoration} to verify whether the item represents a header.
|
|
* @param itemPosition int.
|
|
* @param itemPosition int.
|
|
* @return true, if item at the specified adapter's position represents a header.
|
|
* @return true, if item at the specified adapter's position represents a header.
|
|
*/
|
|
*/
|