Nothing fancy, just a personal log with a built in search function so I can recall what is easily forgotten.
Thursday, August 29, 2013
Final, Adventures in Coding Directly on a Samsung Galaxy Tablet 2.0 - 7 Inch
Cont'd, Adventures in Coding Directly on a Samsung Galaxy Tablet 2.0 - 7 Inch
Saturday, August 24, 2013
Cont'd, Adventures in Coding Directly on a Samsung Galaxy Tablet 2.0 - 7 Inch
Monday, August 19, 2013
...Continued, Adventures in Coding Directly on a Samsung Galaxy Tab 2.0 7 Inch
After a half hour of puzzlement trying to debug a new XML layout, I realized that when creating a new file in the res/ folder, you must include the file type e.g., main_row.xml not just main_row.
Friday, August 16, 2013
...Continued, Adventures in Coding Directly on a Samsung Galaxy Tab 2.0 7 Inch
Continued from the August 13, 2013 post.
Welcome back. The previous posts on this subject failed to include a Teminal Emulator app and SQLite3.
Developing on a rooted phone, I have found these tools to be essential as my programs send and receive data to SQLite. The root process is not included here.
From a terminal window command line, I enter the following lines to view SQLite data.
While on an SQLite> command line, you can enter the usual "Select" and so forth SQL commands.
Specific design and coding challenges are forthcoming.
Tuesday, August 13, 2013
...Continued, Adventures in Coding Directly on a Samsung Galaxy Tab 2.0 7 Inch
Continued from the August 2, 2013 post.
After creating a project folder and using the "Create a new App Project here..." option in AIDE, I found that the built in editor is not as robust as using a third party code editor like DroidEdit. You will see what I mean when trying to insert a new line with the [Return] key. To be continued...
Sunday, August 11, 2013
Computer Help and Tutorials
Tuesday, August 6, 2013
SEO Friendly Coding...
<'script type="text/javascript"'>Reportedly some search engines may skip over the infoText inside the JavaScript. Instead, try placing informational text inside the HTML code like this:
function onMouseOver1() {
var infoText = "info about button";
document.getElementById('infoblock').innerHTML = infoText;
}
<'/script>
<'body>
<'img src ="some.jpg" onmouseover="onMouseOver1()" />
<'div id="infoblock"><'/div>
<'/body>
<'style type="text/css">
#infoblock1 {
display:none;
}
<'/style>
<'script type="text/javascript"'>
function onMouseOver1() {
document.getElementById('infoblock').innerHTML =
document.getElementById('infoblock1').innerHTML;
} <'/script>
<'body>
<'img src ="some.jpg" onmouseover="onMouseOver1()" />
<'div id="infoblock"><'/div>
<'div id="infoblock1">
info about button
<'/div>
<'/body>
}