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
<?php | |
/** | |
* Created by PhpStorm. | |
* User: georgiecasey | |
* Date: 15/06/2015 | |
* Time: 18:17 | |
*/ | |
function timeDiff($firstTime,$lastTime) | |
{ | |
$one = new DateTime($firstTime); |
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
public class ListViewPagerAdapter extends PagerAdapter { | |
protected static final String TAG = "ListViewPagerAdapter"; | |
protected static final int NUM_VIEWS = 3; | |
protected final Activity mActivity; | |
public ListViewPagerAdapter(Activity activity) { | |
mActivity = activity; | |
} |