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
日期 | 值日生 | |
---|---|---|
2014/07/04 | Arc | |
2014/07/11 | Clark | |
2014/07/18 | Jack | |
2014/07/25 | William | |
2014/08/01 | kiki | |
2014/08/08 | Cloud | |
2014/08/15 | Isaac | |
2014/08/22 | Haru | |
2014/08/29 | Jimmy |
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
/** | |
* This class allows a single click and prevents multiple clicks on | |
* the same button in rapid succession. Setting unclickable is not enough | |
* because click events may still be queued up. | |
* | |
* Override onOneClick() to handle single clicks. Call reset() when you want to | |
* accept another click. | |
*/ | |
public abstract class OnOneClickListener implements View.OnClickListener { |
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
static public bool JsonDataContainsKey(JsonData data,string key) | |
{ | |
bool result = false; | |
if(data == null) | |
return result; | |
if(!data.IsObject) | |
{ | |
return result; | |
} | |
IDictionary tdictionary = data as IDictionary; |
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
@include keyframe(fadeout) { | |
0% { | |
opacity: 1; | |
} | |
100% { | |
opacity: 0; | |
} | |
} |
NewerOlder