This file contains hidden or 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
@IntDef(ZERO) | |
@Retention(AnnotationRetention.SOURCE) | |
annotation class ViewHolderType { | |
companion object { | |
const val ZERO = 0 | |
} | |
} |
This file contains hidden or 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
package com.notabasement.common.photopicker.events; | |
import android.content.Context; | |
/** | |
* Created by tuanchauict on 3/16/16. | |
*/ | |
public abstract class RotateOrientationEventListener extends SimpleOrientationEventListener { | |
public RotateOrientationEventListener(Context context) { | |
super(context); |
This file contains hidden or 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
package com.savrov.collapsingheaderview | |
import android.annotation.SuppressLint | |
import android.content.Context | |
import android.support.design.widget.AppBarLayout | |
import android.support.design.widget.CollapsingToolbarLayout | |
import android.support.design.widget.CoordinatorLayout | |
import android.support.v4.app.Fragment | |
import android.support.v7.widget.RecyclerView | |
import android.util.AttributeSet |