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
android:fontFamily="sans-serif" // roboto regular | |
android:fontFamily="sans-serif-light" // roboto light | |
android:fontFamily="sans-serif-condensed" // roboto condensed | |
android:fontFamily="sans-serif-black" // roboto black | |
android:fontFamily="sans-serif-thin" // roboto thin (android 4.2) | |
android:fontFamily="sans-serif-medium" // roboto medium (android 5.0) | |
in combination with | |
android:textStyle="normal|bold|italic" |
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
If you want to filter out those damn emulator/dalvik messages because you just want YOUR logs, just filter with this string: | |
^(?!(dalvikvm|libEGL|OpenGLRenderer|EGL_genymotion|EGL_emulation|fd|art)) |
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
private void doRetrofitRequest() { | |
mRefreshLayout.post(new Runnable() { | |
@Override | |
public void run() { | |
mRefreshLayout.setRefreshing(true); | |
} | |
}); | |
Log.i(TAG, "Check thread name before callback:" + Thread.currentThread().getName()); | |
OkHttpClient _okClient = new OkHttpClient(); |
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 | |
REM !/bin/sh | |
REM License for any modification to the original (linked below): | |
REM ---------------------------------------------------------------------------- | |
REM "THE BEER-WARE LICENSE" (Revision 42): | |
REM Sebastiano Poggi wrote this file. As long as you retain this notice you | |
REM can do whatever you want with this stuff. If we meet some day, and you think | |
REM this stuff is worth it, you can buy me a beer in return. | |
REM ---------------------------------------------------------------------------- | |
REM |