Back to project page com.elsewhat.android.slideshow.
The source code is released under:
Copyright (C) 2012 Dagfinn Parnas <dagfinn.parnas@gmail.com> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Sof...
If you think the Android project com.elsewhat.android.slideshow listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.elsewhat.android.slideshow.api; /*from ww w. ja va 2s . c o m*/ import android.view.KeyEvent; /** * Dummy keyevent we use to identify source when we are faking a KeyEvent in onFling of Gallery * * @author dagfinn.parnas * */ public class FlingKeyEvent extends KeyEvent { public FlingKeyEvent(int action, int code) { super(action, code); } }