Skip to content

Instantly share code, notes, and snippets.

View DiegoVega19's full-sized avatar
🏠
Working from home

DiegoVega19

🏠
Working from home
  • Nicaragua, Managua
View GitHub Profile
@MilenPavlov
MilenPavlov / gist:63b49cdac893fdaa73c4
Created April 16, 2015 08:24
Horizontal ScrollView for (Xamarin) Android using RecyclerView and GridLayoutManager
//MainActivity's private vars and key methods:
public class MainActivity : FragmentActivityBase
{
private RecyclerView _recyclerViewPhotosTakenEdit;
private IList<PhotoItemModel> _photoItemsModel;
private RecyclerView.LayoutManager _layoutManager;
private PhotoQuestionRecyclerAdapter _photoQuestionImageAdapter;
......
}