-
Recent Posts
Popular Posts List
-
Linkify text li...
0
56
-
Scroll to certa...
0
44
-
Get Resource ID...
0
42
-
Foreach loop cy...
0
40
-
Convert Drawabl...
0
38
-
Transparent Bac...
0
35
-
How quickly res...
0
35
-
Android Studio ...
0
31
-
Create bitmap a...
0
30
-
Spinner ComboBo...
0
29
-
Timer task Time...
0
29
-
Timer simple Ti...
0
28
-
Get Assets fold...
0
27
-
Turn screen ON ...
0
27
-
android.app.App...
0
26
-
Convert Activit...
0
26
-
Open url with b...
0
26
-
PHP how to incl...
0
23
-
Progressbar cha...
0
22
-
How set focus o...
0
22
-
Linkify text li...
Views
- Timer simple TimerTask Java Android example - 136,403 views
- Linkify text link url in TextView text Android example - 95,083 views
- Spinner ComboBox DropDown List Android example code - 85,214 views
- How quickly restart adb.exe ADB server Android emulator example - 82,495 views
- Compressing a bitmap to JPG format Android example - 72,979 views
- Turn screen ON OFF Android sample code - 71,964 views
- Get Assets folder path and read txt file to string Android example code - 71,492 views
- Timer task TimerTask run cancel Android example - 65,118 views
- Start Activity from ListView item click Android example - 63,135 views
- How update View TextView with timer Android runnable example - 61,435 views
- If, else if, else statement Java Android example - 49,308 views
- Draw Arc Android basic example - 45,608 views
- Class File Editor – Source not found – Change Attached Source – Eclipse - 45,214 views
- Draw circle Android basic example - 44,605 views
- Scroll to certain position on application Android example code - 44,468 views
- Get Resource ID by Resources String Name Android example - 40,580 views
- Crop cropped cut bitmap image pictures Android example - 38,952 views
- Foreach loop cycle in Java Android example - 38,869 views
- AsyncTask Example Android with ProgressBar - 38,570 views
- Create bitmap and draw text into bitmap Android example - 37,572 views
Categories
- Android Examples Code (314)
- Android Software Download (4)
- Android Studio (43)
- Array,List,Collections (22)
- Bitmap, drawing (44)
- Bugs, warnings, errors (108)
- Dictionaries (22)
- Download (2)
- Eclipse (78)
- Fragments Tutorial (8)
- Javascript css html (12)
- PHP (3)
- Smartphone (31)
- Smartphones (3)
- SQLite database (7)
- Uncategorized (4)
Archives
Meta
Tag Archives: javascript
2,645 views
JS get window url javascript window location href
window.location.href Example for debuging of code if (window.location.href.indexOf(’/localhost’)!= -1){ // debug code here }
Posted in Javascript css html
Tagged javascript, url
Comments Off on JS get window url javascript window location href
JS multi threading thread javascript example
For all browsers e.g. old IE 11 …. <script> var mbThreadOneRunning = false; var mbThreadOneEnded = false; var mbThreadTwoRunning = false; var mbThreadTwoEnded = false; // you can create more than one Thread // … Continue reading
Posted in Javascript css html
Tagged javascript, thread
Comments Off on JS multi threading thread javascript example
Select Get Selected Item JavaScript Html Example
<select id="idSelNick"> <option value="neuveden">Neuveden</option> <option value="hlavni-mesto-praha">Hlavní město Praha</option> <option value="stredocesky">Středočeský</option> <option value="jihocesky">Jihočeský</option> <option value="plzensky">Plzeňský</option> </select> // in script var mysel = document.getElementById(’idSelNick’); var seltxt = mysel.options[mysel.selectedIndex].text; var selval = mysel.options[mysel.selectedIndex].value;
Posted in Javascript css html
Tagged javascript
Comments Off on Select Get Selected Item JavaScript Html Example
Timer JavaScript Example Code
Best of timer in JavaScript – preciseness in milisecond // global variables var _startDate = null; var _stopDate = null; var go = null; // timing function startFC(){ _startDate = new Date(); if(go==null)timingFC(); } timingFC(){ if(go==null){ _startDate = … Continue reading
Posted in Javascript css html
Tagged javascript, timer
Comments Off on Timer JavaScript Example Code