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
/** | |
* Created by w4lle on 15-4-14. | |
* Copyright (c) 2015 Boohee, Inc. All rights reserved. | |
*/ | |
package com.thousandlotus.care.volley; | |
import android.text.TextUtils; | |
import com.alibaba.fastjson.JSON; | |
import com.alibaba.fastjson.JSONException; |
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
/** | |
* 用于记录和恢复ListView的滑动位置 | |
* Created by ONEWateR on 2015/10/16. | |
*/ | |
public class ListViewRecord { | |
private ListView mListView; | |
private int scrolledY; |
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
# -*- coding: utf-8 -*- | |
""" | |
@author: Akagi201 | |
""" | |
from splinter.browser import Browser | |
from time import sleep | |
import traceback | |
###容错做的不好,考虑的情况也不够多,大家见谅 |
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
/* | |
* Created by w4lle 2016 . | |
* Copyright (c) 2016 Boohee, Inc. All rights reserved. | |
*/ | |
package com.boohee.myview; | |
import android.animation.Animator; | |
import android.animation.AnimatorListenerAdapter; | |
import android.animation.ValueAnimator; |
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
oldActvity="" | |
displayName="" | |
currentActivity=`adb shell dumpsys window windows | grep -E 'mCurrentFocus'` | |
while true | |
do | |
if [[ $oldActvity != $currentActivity && $currentActivity != *"=null"* ]]; then | |
displayName=${currentActivity##* } | |
displayName=${displayName%%\}*} | |
echo $displayName | |
oldActvity=$currentActivity |
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
/* | |
* Created by w4lle 2016 . | |
* Copyright (c) 2016 Boohee, Inc. All rights reserved. | |
*/ | |
package com.boohee.one.http.client; | |
import com.android.volley.AuthFailureError; | |
import com.boohee.one.http.JsonCallback; | |
import com.boohee.one.http.JsonParams; |