List of usage examples for android.widget Gallery setSpacing
public void setSpacing(int spacing)
From source file:mobisocial.musubi.objects.IntroductionObj.java
@Override public void render(Context context, final View frame, DbObjCursor obj, final boolean allowInteractions) { Gallery intro = (Gallery) ((ViewGroup) frame).getChildAt(1); // TODO: LoaderManager requires access to a SupportActivity. intro.setAdapter(FacesAdapter.forObj(context, obj)); intro.setSpacing(1); intro.setOnItemClickListener(mIdentityClickListener); }