Skip to content

Instantly share code, notes, and snippets.

View egorikftp's full-sized avatar
😃
What are you doing in my Github?

Yahor egorikftp

😃
What are you doing in my Github?
View GitHub Profile
@yanngx
yanngx / FragmentArgumentDelegate.kt
Last active January 19, 2023 09:26
Fragment arguments without hassle !
package be.brol
import android.os.Binder
import android.os.Bundle
import android.support.v4.app.BundleCompat
import android.support.v4.app.Fragment
/**
* Eases the Fragment.newInstance ceremony by marking the fragment's args with this delegate
* Just write the property in newInstance and read it like any other property after the fragment has been created
@slightfoot
slightfoot / MoveViewTouchListener.java
Created May 30, 2015 23:43
Move View Touch Listener Example
import android.view.GestureDetector;
import android.view.MotionEvent;
import android.view.View;
/**
* @author Simon Lightfoot <simon@demondevelopers.com>
*/
public class MoveViewTouchListener
implements View.OnTouchListener
{
@furkantektas
furkantektas / AspectRatioCardView.java
Created November 16, 2014 11:48
CardView with aspect ratio
package com.furkantektas.braingames.ui;
import android.content.Context;
import android.content.res.TypedArray;
import android.support.v7.widget.CardView;
import android.util.AttributeSet;
import com.furkantektas.braingames.R;
/**