Room + Paging完全ガイド — PagingSource/RemoteMediator/オフラインキャッシュ

Published: (March 2, 2026 at 12:12 AM EST)
3 min read
Source: Dev.to

Source: Dev.to

この記事で学べること

DAO

@Dao
interface ArticleDao {
    @Query("SELECT * FROM articles ORDER BY createdAt DESC")
    fun getArticlesPaging(): PagingSource

    @Insert(onConflict = OnConflictStrategy.REPLACE)
    suspend fun insertAll(articles: List)

    @Query("DELETE FROM articles")
    suspend fun clearAll()
}

RemoteMediator

@OptIn(ExperimentalPagingApi::class)
class ArticleRemoteMediator @Inject constructor(
    private val api: ArticleApi,
    private val db: AppDatabase
) : RemoteMediator() {

    override suspend fun load(loadType: LoadType, state: PagingState): MediatorResult {
        val page = when (loadType) {
            LoadType.REFRESH -> 1
            LoadType.PREPEND -> return MediatorResult.Success(endOfPaginationReached = true)
            LoadType.APPEND -> {
                val lastItem = state.lastItemOrNull()
                    ?: return MediatorResult.Success(endOfPaginationReached = true)
                lastItem.page + 1
            }
        }

        return try {
            val response = api.getArticles(page = page, pageSize = state.config.pageSize)

            db.withTransaction {
                if (loadType == LoadType.REFRESH) {
                    db.articleDao().clearAll()
                }
                db.articleDao().insertAll(response.map { it.copy(page = page) })
            }

            MediatorResult.Success(endOfPaginationReached = response.isEmpty())
        } catch (e: Exception) {
            MediatorResult.Error(e)
        }
    }
}

Repository

class ArticleRepository @Inject constructor(
    private val db: AppDatabase,
    private val remoteMediator: ArticleRemoteMediator
) {
    @OptIn(ExperimentalPagingApi::class)
    fun getArticles(): Flow> {
        return Pager(
            config = PagingConfig(pageSize = 20, prefetchDistance = 5),
            remoteMediator = remoteMediator,
            pagingSourceFactory = { db.articleDao().getArticlesPaging() }
        ).flow
    }
}

ViewModel

@HiltViewModel
class ArticleViewModel @Inject constructor(
    repository: ArticleRepository
) : ViewModel() {
    val articles = repository.getArticles().cachedIn(viewModelScope)
}

Compose UI

@Composable
fun ArticleList(viewModel: ArticleViewModel = hiltViewModel()) {
    val articles = viewModel.articles.collectAsLazyPagingItems()

    LazyColumn {
        items(articles.itemCount) { index ->
            articles[index]?.let { article ->
                ListItem(
                    headlineContent = { Text(article.title) },
                    supportingContent = { Text(article.summary) }
                )
            }
        }

        when (articles.loadState.append) {
            is LoadState.Loading -> item {
                CircularProgressIndicator(
                    Modifier
                        .fillMaxWidth()
                        .padding(16.dp)
                )
            }
            is LoadState.Error -> item {
                Text("読み込みエラー", Modifier.padding(16.dp))
            }
            else -> {}
        }
    }
}

コンポーネントと役割

コンポーネント役割
PagingSourceページ単位データ取得
RemoteMediatorAPI → DB 同期
PagerPagingData 生成
collectAsLazyPagingItemsCompose 連携
  • Room DAO が PagingSource を直接返却
  • RemoteMediator で API → ローカル DB キャッシュ
  • オフラインでも DB から表示可能
  • cachedIn(viewModelScope) で再コンポーズ時の再取得防止

テンプレート公開

8 種類の Android アプリテンプレート(Paging 対応)を公開しています。
テンプレート一覧 → Gumroad

関連記事

  • Paging3
  • Room/Flow
  • オフラインファースト

I publish 8 Android app templates (Room DB, Material3, MVVM) on Gumroad.
Browse templates → Gumroad

0 views
Back to Blog

Related posts

Read more »