So I often browse the web on my Android phone, and damn this site has no mobile version, no app, and no Tapatalk support :v:
Yet I see people post here with the Android useragent, any tips?
P. much use the Web browser app.
One thing I did was I wrote a VERY, VERY tiny homepage in simple, simple HTML. On this homepage I placed links to my favorite forums, and Search For Posts By This User for myself.
Whenever I want to see that homepage, I simply go to Options/Windows and close all windows, and it returns me to my homepage. Then click a link.
Note: I have the homepage file stored locally on my phone, and accessed via a file:///system/media/homepage.html URL.
[editline]8th October 2011[/editline]
[url]http://www.stephenl.net/h2.html[/url]
There it is. Note that it's configured for a Droid 2- the correct document width so it does not scroll left or right, and zoom in/out is disabled.
[php] <?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0"/>
<title>Your homepage</title>
<style>
a {
color:white;
}
a:visited {
}
</style>
</head>
<body onmousemove="resize()" style="width:560px;height:400px;background:black;font-size:x-large;color:white;">
<div id="right" style="float:right;">
<li>Google<ul>
<li>
<form method="get" action="http://www.google.com/search">
<input type="text" name="q" maxlength="255" value="" />
</form>
</li>
</ul>
<li><a href="http://en.m.wikipedia.org">Wikipedia</a><ul>
<li>
<form action="http://en.m.wikipedia.org/wiki" class="search_bar" method="get">
<input id="searchField" name="search" value="" type="text">
</form>
</li>
</ul></li>
<li><a href="http://www.youtube.com">Youtube</a><ul>
<li>
<form action="http://www.youtube.com/results" id="yt">
<div>
<input type="hidden" name="aq" value="f" />
<input name="search_query" type="text" title="Search Youtube" value="" />
</div>
</form>
</li>
<li>
<a href="http://www.youtube.com/my_videos">My Videos</a>
</li>
<li>
<a href="http://www.youtube.com/inbox&folder=messages">Youtube Inbox</a>
</li>
</ul></li>
</ul>
</div><div id="left">
<ul>
<li><a href="http://facepunch.com">Facepunch</a><ul>
<li><a href="http://www.facepunch.com/forumdisplay.php?f=46">Gold members forum</a></li>
<li><a href="http://www.facepunch.com/forumdisplay.php?f=6">General Discussion</a></li>
<li><a href="http://www.facepunch.com/forumdisplay.php?f=396">In The News</a></li>
<li><a href="http://www.facepunch.com/forumdisplay.php?f=60">Fast Threads</a></li>
<li><a href="http://www.facepunch.com/forumdisplay.php?f=397">Hardware and Software</a><ul>
<li><a href="http://www.facepunch.com/forumdisplay.php?f=286">Linux</a></li>
<li><a href="http://www.facepunch.com/forumdisplay.php?f=243">PC Building</a></li>
</ul></li>
<li><a href="http://www.facepunch.com/forumdisplay.php?f=262">Music</a></li>
<li><a href="http://www.facepunch.com/search.php?do=finduser&userid=126341&contenttype=vBForum_Post&showposts=1">My Posts</a></li>
<li><a href="http://www.facepunch.com/search.php?do=finduser&userid=126341&starteronly=1&contenttype=vBForum_Thread">My Threads</a></li>
<li><a href="http://www.facepunch.com/private.php">My Inbox</a></li></ul></li>
<li><a href="http://192.168.1.1">Router access</a><ul>
<li><a href="http://192.168.1.1/lan_dhcp.html">DHCP Client list</a></li>
<li><a href="http://192.168.1.1/fw_virt.html">Virtual Servers</a></li>
</ul></li>
<li><a href="https://zoneedit.com/login.html">ZoneEdit</a></li>
</ul>
</div>
</body>
</html>
[/php]
Sorry, you need to Log In to post a reply to this thread.