Context-detection API for Android developed as a university project
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.html 2.3KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Context Analyser</title>
  5. <style type="text/css">
  6. body {
  7. font-family: sans-serif;
  8. margin: 0;
  9. padding: 0;
  10. }
  11. h1 {
  12. padding: 5px 0 2px 0;
  13. margin: 0 0 15px 0;
  14. text-align: center;
  15. width: 100%;
  16. border-bottom: 2px solid #00c;
  17. font-size: x-large;
  18. font-variant: small-caps;
  19. }
  20. h1 img {
  21. width: 32px;
  22. height: 32px;
  23. vertical-align: middle;
  24. }
  25. p {
  26. margin: 5px 10px 0px 10px;
  27. }
  28. ul {
  29. margin: 5px 0 0 0;
  30. }
  31. .apps { list-style-type: none; margin: 0; padding: 0; }
  32. .apps a {
  33. display: block;
  34. text-decoration: none;
  35. color: black;
  36. border: 1px solid #006;
  37. background-color: #dde;
  38. margin: 10px 5px;
  39. padding: 5px;
  40. border-radius: 10px;
  41. -webkit-border-radius: 10px;
  42. -mozilla-border-radius: 10px;
  43. }
  44. .apps a strong { display: block; }
  45. </style>
  46. </head>
  47. <body>
  48. <h1><img src="icon.png" alt="Context Analyser"> Context Analyser</h1>
  49. <p>
  50. Welcome to the <em>Context Analyser</em>. This application attempts to infer
  51. your current context by monitoring the device's sensors.
  52. </p>
  53. <p>
  54. Your <em>context</em> consits of your current:
  55. </p>
  56. <ul>
  57. <li><strong>Activity</strong> - 'walking', 'sitting', etc,</li>
  58. <li><strong>Location</strong> - 'home', 'work', etc</li>
  59. <li><strong>Destination</strong> if you're travelling</li>
  60. </ul>
  61. <p>
  62. The Context Analyser by itself <em>doesn't let you see or do anything</em>.
  63. This is it! You need to install one or more applications which integrate
  64. with the Context Analyser to see any benefit. Maybe you'd like to try one
  65. of these?
  66. </p>
  67. <ul class="apps">
  68. <li><a href="http://market.android.com/search?q=pname:uk.co.md87.android.placesdisplay">
  69. <strong>Places</strong> Displays places detected by the Context Analyser
  70. </a></li>
  71. <li><a href="http://market.android.com/search?q=pname:uk.co.md87.android.contextanalyser.locale">
  72. <strong>Locale Plugin</strong> Allows you to program Locale conditions based on your actions
  73. </a></li>
  74. <li><a href="http://market.android.com/search?q=pname:uk.co.md87.android.contexthome">
  75. <strong>Context Home Screen</strong> A home screen which adapts to include context-aware suggestions
  76. </a></li>
  77. </ul>
  78. </body>
  79. </html>