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 1.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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. </style>
  32. </head>
  33. <body>
  34. <h1><img src="icon.png" alt="Context Analyser"> Context Analyser</h1>
  35. <p>
  36. Welcome to the <em>Context Analyser</em>. This application attempts to infer
  37. your current context by monitoring the device's sensors.
  38. </p>
  39. <p>
  40. Your <em>context</em> consits of your current:
  41. </p>
  42. <ul>
  43. <li><strong>Activity</strong> - 'walking', 'sitting', etc,</li>
  44. <li><strong>Location</strong> - 'home', 'work', etc</li>
  45. <li><strong>Destination</strong> if you're travelling</li>
  46. </ul>
  47. <p>
  48. The Context Analyser by itself <em>doesn't let you see or do anything</em>.
  49. This is it! You need to install one or more applications which integrate
  50. with the Context Analyser to see any benefit. Maybe you'd like to try one
  51. of these?
  52. </p>
  53. <ul class="apps">
  54. <li><strong>Places</strong> - displays places detected by the Context Analyser</li>
  55. <li><strong>Locale Plugin</strong> - allows you to program Locale conditions based on your actions</li>
  56. <li><strong>Context Home Screen</strong> - a home screen which adapts to include context-aware suggestions</li>
  57. </ul>
  58. </body>
  59. </html>