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
| package com.example.logintext; | |
| import android.annotation.SuppressLint; | |
| import android.app.Activity; | |
| import android.os.Bundle; | |
| import android.text.InputType; | |
| import android.util.Log; | |
| import android.view.View; | |
| import android.widget.EditText; | |
| import android.widget.Toast; |
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
| @echo off | |
| cd /d %~dp0 | |
| md %windir%\system32\just_test_root_qrxm_1025695453 1>nul 2>nul | |
| if errorlevel 1 echo 请右键以管理员权限运行&echo 按任意键退出&pause>nul&exit | |
| rd %windir%\system32\just_test_root_qrxm_1025695453 1>nul 2>nul | |
| goto 7 | |
| :start | |
| cls |
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 static void printCurrentMothedName() { | |
| StackTraceElement stackTrace = Thread.currentThread().getStackTrace()[3]; | |
| System.out.println(stackTrace.getClassName().substring(stackTrace.getClassName().lastIndexOf('.') + 1) + "--->" + stackTrace.getMethodName()); | |
| } |
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
| @Override | |
| public boolean dispatchTouchEvent(MotionEvent ev) { | |
| if (mInputEventConsistencyVerifier != null) { | |
| mInputEventConsistencyVerifier.onTouchEvent(ev, 1); | |
| } | |
| // handled放该方法的返回值 | |
| boolean handled = false; | |
| if (onFilterTouchEventForSecurity(ev)) { | |
| final int action = ev.getAction(); | |
| final int actionMasked = action & MotionEvent.ACTION_MASK; |
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
| package com.example.ipcjs.voicedemo; | |
| import android.content.Context; | |
| import android.media.MediaRecorder; | |
| import android.os.Environment; | |
| import android.os.Handler; | |
| import java.io.File; | |
| import java.io.IOException; |
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
| package com.googfit.view; | |
| import android.annotation.TargetApi; | |
| import android.content.Context; | |
| import android.os.Build; | |
| import android.util.AttributeSet; | |
| import android.widget.Switch; | |
| import java.lang.reflect.Field; |
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
| package com.celink.common.common; | |
| import android.util.Xml; | |
| import org.xmlpull.v1.XmlSerializer; | |
| import java.io.IOException; | |
| import java.io.StringWriter; | |
| import java.util.ArrayList; | |
| import java.util.List; |
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
| package com.celink.common.ui; | |
| import android.content.Context; | |
| import android.graphics.PorterDuff; | |
| import android.graphics.drawable.Drawable; | |
| import android.support.v4.content.ContextCompat; | |
| import com.celink.common.util.SystemUtil; | |
| import com.googfit.util.L; | |
| import com.googfit.util.ThemeUtil; |
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
| package android.support.v4.graphics.drawable; | |
| import android.graphics.drawable.Drawable; | |
| import android.graphics.drawable.DrawableContainer; | |
| import android.graphics.drawable.GradientDrawable; | |
| import android.os.Build; | |
| /** | |
| * 参考support-v4-23.1.1源码, 修复{@link DrawableCompat#wrap(Drawable)}方法在状态改变后不刷新的问题 | |
| * <p/> |
OlderNewer