Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
| /* Flatten das boostrap */ | |
| .well, .navbar-inner, .popover, .btn, .tooltip, input, select, textarea, pre, .progress, .modal, .add-on, .alert, .table-bordered, .nav>.active>a, .dropdown-menu, .tooltip-inner, .badge, .label, .img-polaroid { | |
| -moz-box-shadow: none !important; | |
| -webkit-box-shadow: none !important; | |
| box-shadow: none !important; | |
| -webkit-border-radius: 0px !important; | |
| -moz-border-radius: 0px !important; | |
| border-radius: 0px !important; | |
| border-collapse: collapse !important; | |
| background-image: none !important; |
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
| Moved to | |
| https://github.com/romannurik/android-swipetodismiss |
| /** | |
| * Execute an {@link AsyncTask} on a thread pool. | |
| * | |
| * @param task Task to execute. | |
| * @param args Optional arguments to pass to {@link AsyncTask#execute(Object[])}. | |
| * @param <T> Task argument type. | |
| */ | |
| public static <T> void execute(AsyncTask<T, ?, ?> task, T... args) { | |
| if (Build.VERSION.SDK_INT < Build.VERSION_CODES.DONUT) { | |
| throw new UnsupportedOperationException("This class can only be used on API 4 and newer."); |