Skip to content

Instantly share code, notes, and snippets.

View girish3's full-sized avatar
🎯
Focusing

Girish Budhwani girish3

🎯
Focusing
View GitHub Profile
@girish3
girish3 / poodir-notes.md
Last active June 16, 2019 04:24 — forked from speric/poodir-notes.md
[Notes From Practical Object-Oriented Design In Ruby" by Sandi Metz] #design_pattern
@girish3
girish3 / ResizeAnimation.java
Last active August 29, 2015 14:27 — forked from rafali/ResizeAnimation.java
Resize animation on Android
public class ResizeAnimation extends Animation {
final int startWidth;
final int targetWidth;
View view;
public ResizeAnimation(View view, int targetWidth) {
this.view = view;
this.targetWidth = targetWidth;
startWidth = view.getWidth();
}