
Table of Contents
Presenting large data sets efficiently can be a challenging part of Android development. It gets more complicated as we begin to handle edge cases and add additional decorations like headers. We also often find ourselves repeating undesirable boilerplate as we write adapters for each data source. In addition, Android doesn't provide a clean object-oriented, reusable way of presenting collections of multiple types.
This library provides the following features:
trueExpandableListView without any limitation of nesting levelRecyclerView animation supportObservables, etcPower adapters are compatible with the following collection view classes:
* androidx.recyclerview.widget.RecyclerView
* android.widget.ListView
* android.widget.GridView
* android.support.v4.view.ViewPager
* Any other view that accepts a android.widget.Adapter
Get it from Maven Central, using Gradle:
implementation 'com.nextfaze.poweradapters:power-adapters:0.26.0'
implementation 'com.nextfaze.poweradapters:power-adapters-recyclerview-v7:0.26.0'
// Declare a binder for your item type
class TweetHolder extends ViewHolder {
TextView textView;
TweetHolder(View view) {
super(view);
textView = (TextView) view.findViewById(R.id.text);
}
}
Binder<Tweet, View> tweetBinder =
ViewHolderBinder.create(R.layout.tweet, TweetHolder::new, (container, tweet, tweetHolder, holder) -> {
tweetHolder.textView.setText(tweet.getText());
});
// Construct your "core" adapter
ListBindingAdapter<Tweet> tweetsAdapter = new ListBindingAdapter<>(tweetBinder);
// Assign to your RecyclerView
recyclerView.setAdapter(RecyclerPowerAdapters.toRecyclerAdapter(tweetsAdapter));
RxJava modules are available. Simply append -rxjava2 to get the RxJava module:
implementation 'com.nextfaze.poweradapters:power-adapters-rxjava2:0.26.0'
implementation 'com.nextfaze.poweradapters:power-adapters-data-rxjava2:0.26.0'
Kotlin modules are also provided for most modules. Append -kotlin to get the Kotlin module:
implementation 'com.nextfaze.poweradapters:power-adapters-kotlin:0.26.0'
implementation 'com.nextfaze.poweradapters:power-adapters-data-kotlin:0.26.0'
implementation 'com.nextfaze.poweradapters:power-adapters-rxjava2-kotlin:0.26.0'
implementation 'com.nextfaze.poweradapters:power-adapters-data-rxjava2-kotlin:0.26.0'
implementation 'com.nextfaze.poweradapters:power-adapters-recyclerview-v7-kotlin:0.26.0'
Some of the Kotlin APIs include:
kotlin
val data = data { api.getPosts() }
kotlin
val data = cursorData({ db.getUsers() }, ::User)
kotlin
val header = viewFactory<TextView>(R.layout.header) {
text = "News"
}kotlin
recyclerView.adapter = myPowerAdapter.toRecyclerAdapter()PowerAdapter and Data Factory methods: adapterOf(), dataOf()Binder factory methods:
kotlin
val binder = binder<Item, ItemView>(R.layout.item) { container, item, holder ->
title = item.name
imageUri = item.imageUri
}kotlin
adapter.showOnlyWhile(empty and !anotherThing)
val adapter = itemsAdapter + anotherAdapter
kotlin
data += dataObserver { updateViews() }kotlin
val condition = ValueCondition()
var enabled by condition
val adapter = myAdapter.showOnlyWhile(condition)
// Reassign property to control visibility of adapter
enabled = falsekotlin
adapter {
layoutResource(R.layout.header)
+myItemsAdapter
layoutResource(R.layout.footer)
}Power Adapters can be composed by using the fluent chaining methods. For example, say you want to present a list of tweets, with a loading indicator, but show an empty message when there are no tweets, you can write the following:
PowerAdapter adapter = tweetsAdapter
.limit(10) // Only show up to 10 tweets
.append(
// Show empty item while no tweets have loaded
asAdapter(R.layout.tweets_empty_item).showOnlyWhile(noTweets()),
// Show loading indicator while loading
asAdapter(R.layout.loading_indicator).showOnlyWhile(tweetsAreLoading())
)
recyclerView.setAdapter(RecyclerPowerAdapters.toRecyclerAdapter(adapter));
This lets you write a simple TweetAdapter class, the only responsibility of which is to present tweets. By using
PowerAdapter.append as such, the TweetAdapter need not be modified, and can be potentially reused elsewhere more
easily. The use of showOnlyWhile applies a condition to the empty footer item, so it remains hidden unless the
underlying list of tweets is empty.
Headers and footers can be added using prepend and append:
// Prepend a header view.
PowerAdapter adapter = tweetAdapter.prepend(R.layout.header);
// Append a footer view.
PowerAdapter adapter = tweetAdapter.append(R.layout.footer);
Included in Power Adapters is the ability to bind elements in your data set to views in a reusable, readable, and type-safe manner.
The primary class needed to achieve this is a Binder. The responsibilities of a Binder include:
View to be bound, and re-used by the adapter/recycler viewViewMultiple types of commonly required binders are supplied. If you prefer the widely used view holder pattern, use
a ViewHolderBinder:
Binder<BlogPost, View> blogPostBinder =
ViewHolderBinder.create(R.layout.post, BlogPostHolder::new, (container, blogPost, blogPostHolder, holder) -> {
blogPostHolder.labelView.setText("Blog: " + blogPost.getTitle());
});
class BlogPostHolder extends ViewHolder {
TextView labelView;
BlogPostHolder(View view) {
super(view);
labelView = (TextView) view.findViewById(android.R.id.text1);
}
}
If you use custom views for each of your data models, use Binder.create. It takes a layout resource or a ViewFactory.
The view returned by the ViewFactory is passed to subsequent bindView calls, saving you from writing a separate ViewHolder.
For example:
Binder<Tweet, TweetView> tweetBinder = Binder.create(R.layout.tweet_item, ((container, sample, v, holder) -> {
v.setTweet(tweet);
v.setOnClickListener(v -> onTweetClick(tweet));
}))
The examples above have all dealt with a single item type, and so there has only been a single Binder. When you want your list to contain multiple items, a Mapper is consulted to determine which Binder to use for presenting each particular item. Typically you'll use MapperBuilder to declaratively assign your model classes to
binders:
Mapper mapper = new MapperBuilder()
.bind(Tweet.class, new TweetBinder())
.bind(Ad.class, new AdBinder())
.bind(Video.class, new VideoBinder())
.build();
ListBindingAdapter<Object> adapter = new ListBindingAdapter<>(mapper);
adapter.add(new Tweet());
adapter.add(new Ad());
adapter.add(new Video());
PowerAdapter is designed to be used with different collection view implementations, so a final step is converting it to implement the expected adapter interface. This would usually be done as soon as the collection view is created, say in onViewCreated:
recyclerView.setAdapter(toRecyclerAdapter(powerAdapter));
The following conversion methods are provided:
| Collection View | Converter | Extension Module |
|---|---|---|
ListView |
PowerAdapters.toListAdapter() |
None |
RecyclerView |
RecyclerPowerAdapters.toRecyclerAdapter() |
power-adapters-recyclerview-v7 |
ViewPager |
SupportPowerAdapters.toPagerAdapter() |
power-adapters-support-v4 |
The TreeAdapter class allows you to present hierarchical data structures with no intrinsic depth limit. Each layer is
comprised of just another adapter - your children can themselves can be TreeAdapters!
PowerAdapter rootAdapter = new FileAdapter(new File("/"));
TreeAdapter treeAdapter = new TreeAdapter(rootAdapter, position -> {
// Create a child adapter for this position in the root data set.
// Can be another TreeAdapter!
return createChildAdapter(position);
});
treeAdapter.setExpanded(15, true);
Implementing a UI for presenting the contents of a remote collection, like a list of comments or products, requires
several different mechanics. Among them are:
* Perform requests asynchronously to avoid blocking the UI thread
* Presenting a loading indicator to give the user feedback on progress
* Allow the user to page through results
* Handle and present errors as they occur
* Dispatch change notifications to your adapter so your RecyclerView or ListView can react to content changes
The power-adapters-data extension module aims to simplify this by encapsulating the above concerns into a single
object: Data<T>. In doing so, it allows you to retain one object when a config change occurs, like an orientation
change. This way you don't need to reload or parcel/unparcel all of your list results when that occurs. The Data<T>
object comprises much of the repetitive asynchronous UI "glue" code you'd otherwise have to write (and debug) yourself.
implementation 'com.nextfaze.poweradapters:power-adapters-data:0.26.0'
The recommended usage pattern is to instantiate a Data<T> object in your retained Fragment. The Data.fromList
factory method supports the simplest use case, fetching a list of items asynchronously:
public final class ProductListFragment extends Fragment {
private final Data<Product> products = Data.fromList(() -> api.getProducts());
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// Retain this fragment so we don't need to reload the products after a config change
setRetainInstance(true);
}
}
Now hook up your Data<Product> instance and a Binder with your RecyclerView:
@Override
public void onViewCreated(View view, Bundle savedInstanceState) {
super.onViewCreated(view, savedInstanceState);
PowerAdapter adapter = new DataBindingAdapter(products, productBinder);
recyclerView.setAdapter(RecyclerPowerAdapters.toRecyclerAdapter(adapter));
}
At some stage you'll want to request a reload of the elements from the remote source. You can do this using reload(),
refresh(), or invalidate(). The behaviour of these methods differ slightly, but ultimately they all result in your
items being reloaded from the source. See the Data javadoc for how they differ.
DataLayout aids in presenting the various states of a Data instance, by hiding and showing contents, empty, error,
and loading child views.
It's a RelativeLayout subclass, and it works by accepting a Data instance, then registering to receive change
notifications. If the contents are empty, your marked empty view will be shown instead of the list view. If an error
occurs, the error view will be shown until a reload is triggered. DataLayout has several extension points to customize
this behaviour to suite the needs of your application.
Here's an example of how to declare
$ claude mcp add power-adapters \
-- python -m otcore.mcp_server <graph>