Skip to content

Instantly share code, notes, and snippets.

View Lackofa7742's full-sized avatar

Magdiel Lorenzo Lackofa7742

View GitHub Profile
@Lackofa7742
Lackofa7742 / WrapContentViewPager.kt
Last active September 19, 2018 10:50
ViewPager for Android in Kotlin that respects wrap_content
import android.content.Context
import android.support.v4.view.ViewPager
import android.util.AttributeSet
import android.view.View
/**
* Created by Magdiel Lorenzo on 5/20/17.
*/
class WrapContentViewPager : ViewPager {
@Lackofa7742
Lackofa7742 / WrapContentViewPager.java
Created August 8, 2016 02:05
ViewPager for Android that respects wrap_content for height
import android.content.Context;
import android.support.v4.view.ViewPager;
import android.util.AttributeSet;
import android.view.View;
/**
* {@link ViewPager} that respects wrap_content for height
*/
public class WrapContentViewPager extends ViewPager {
@Lackofa7742
Lackofa7742 / .gitignore
Created November 20, 2015 19:58
Good .gitignore to use for Android Studio files
# Built application files
*.apk
*.ap_
# Files for the Dalvik VM
*.dex
# Java class files
*.class