Fix nits in contextual card package.
We missed to catch a few nits in previous CLs. This change cleans up some of it. Test: manual Change-Id: Ibd3466f781952f998e1183a49f56e812cbce99a1
This commit is contained in:
@@ -31,15 +31,15 @@ public interface ContextualCardRenderer {
|
||||
int getViewType();
|
||||
|
||||
/**
|
||||
* When {@link ContextualCardsAdapter} calls {@link ContextualCardsAdapter#onCreateViewHolder(ViewGroup,
|
||||
* int)}, this method will be called to retrieve the corresponding
|
||||
* When {@link ContextualCardsAdapter} calls {@link ContextualCardsAdapter#onCreateViewHolder},
|
||||
* this method will be called to retrieve the corresponding
|
||||
* {@link androidx.recyclerview.widget.RecyclerView.ViewHolder}.
|
||||
*/
|
||||
RecyclerView.ViewHolder createViewHolder(View view);
|
||||
|
||||
/**
|
||||
* When {@link ContextualCardsAdapter} calls {@link ContextualCardsAdapter#onBindViewHolder(RecyclerView
|
||||
* .ViewHolder, int)}, this method will be called to bind data to the
|
||||
* When {@link ContextualCardsAdapter} calls {@link ContextualCardsAdapter#onBindViewHolder},
|
||||
* this method will be called to bind data to the
|
||||
* {@link androidx.recyclerview.widget.RecyclerView.ViewHolder}.
|
||||
*/
|
||||
void bindView(RecyclerView.ViewHolder holder, ContextualCard card);
|
||||
|
Reference in New Issue
Block a user