Last active
December 18, 2015 01:28
-
-
Save RyanRamchandar/5703833 to your computer and use it in GitHub Desktop.
Layout file and GridAdapter snippets.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//GridItem.xml | |
... | |
<ImageView | |
android:id="@+id/mapImageStarredGrid" | |
android:layout_width="match_parent" | |
android:layout_height="175dp" | |
android:adjustViewBounds="true" | |
android:scaleType="centerCrop" /> | |
... | |
//Grid Adapter bindView() | |
... | |
Picasso.with(context) | |
.load(request) | |
.placeholder(R.color.super_light_grey) | |
.error(R.color.light_grey) | |
.into(holder.map); | |
... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment