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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Bootstrap 2.2.2 Template</title> | |
| <!-- Bootstrap --> | |
| <link href="http://netdna.bootstrapcdn.com/twitter-bootstrap/2.2.2/css/bootstrap.no-icons.min.css" rel="stylesheet"> | |
| <link href="http://netdna.bootstrapcdn.com/font-awesome/2.0/css/font-awesome.css" rel="stylesheet"> | |
| <script src="http://code.jquery.com/jquery-latest.js"></script> | |
| <script src="http://netdna.bootstrapcdn.com/twitter-bootstrap/2.2.2/js/bootstrap.min.js"></script> |
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
| var $ = require('jquery'); | |
| var http = require('http'); | |
| var Sync = require('sync'); | |
| var URIjs = require('./URI.js'); // http://medialize.github.com/URI.js/ | |
| var fs = require('fs'); | |
| var DEBUG = false; | |
| var INFO = true; | |
| var Log = { }; |
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
| from com.android.monkeyrunner import MonkeyRunner, MonkeyDevice, MonkeyImage | |
| import time | |
| def scroll(n): | |
| device = MonkeyRunner.waitForConnection() | |
| for i in range(n): | |
| print i | |
| device.drag((216, 500), (216, 200), 0.1, 100) | |
| time.sleep(0.5) | |
| scroll(10000) |
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
| add this in parent view xml | |
| android:descendantFocusability="beforeDescendants" | |
| android:focusableInTouchMode="true" | |
| or in code | |
| layout.setDescendantFocusability(ViewGroup.FOCUS_BEFORE_DESCENDANTS); | |
| layout.setFocusableInTouchMode(true); |
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
| getWindow().addFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON); |
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
| textarea { | |
| width:100%; | |
| box-sizing: border-box; | |
| } |
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
| // CharSequence | |
| String implements CharSequence | |
| SpannableString implements Spannable, CharSequence | |
| SpannableStringBuilder implements Spannable, CharSequence |
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 class AutoViewPager extends ViewPager { | |
| public AutoViewPager(Context context, AttributeSet attrs) { | |
| super(context, attrs); | |
| init(); | |
| } | |
| public AutoViewPager(Context context) { | |
| super(context); | |
| init(); |
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
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <meta name="description" content=""> | |
| <meta name="author" content=""> | |
| <title>Starter Template for Bootstrap</title> |
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.flavienlaurent.notboringactionbar; | |
| import android.content.Context; | |
| import android.graphics.Canvas; | |
| import android.util.AttributeSet; | |
| import android.widget.ImageView; | |
| /** | |
| * Created by f.laurent on 21/11/13. | |
| * antoine-merle.com inspiration |