Simple Horizontal Divider Item Decoration for RecyclerView
mRecyclerView.addItemDecoration(new SimpleDividerItemDecoration(
getApplicationContext()
));
NOTE: Add item decoration prior to setting the adapter
| language: android | |
| android: | |
| components: | |
| # Uncomment the lines below if you want to | |
| # use the latest revision of Android SDK Tools | |
| - platform-tools | |
| - tools | |
| # The BuildTools version used by your project | |
| - build-tools-22.0.0 |
| package com.nextstagesearch; | |
| import android.Manifest; | |
| import android.app.Activity; | |
| import android.app.AlertDialog; | |
| import android.content.Context; | |
| import android.content.ContextWrapper; | |
| import android.content.DialogInterface; | |
| import android.content.pm.PackageManager; |