Context-detection API for Android developed as a university project
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

index.html 1.9KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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, and</li>
  45. <li><strong>Company</strong> - 'alone', 'with friends', etc</li>
  46. </ul>
  47. <p>
  48. The context analyser also uses this information to predict your destination
  49. if you are travelling.
  50. </p>
  51. <p>
  52. The Context Analyser by itself <em>doesn't let you see or do anything</em>.
  53. This is it! You need to install one or more applications which integrate
  54. with the Context Analyser to see any benefit. Maybe you'd like to try one
  55. of these?
  56. </p>
  57. <ul class="apps">
  58. <li><strong>Places</strong> - displays places detected by the Context Analyser</li>
  59. <li><strong>Locale Plugin</strong> - allows you to program Locale conditions based on your actions</li>
  60. <li><strong>Context Home Screen</strong> - adapts the stock home screen to include context-aware suggestions</li>
  61. <li><strong>Clippy</strong> - pops up when the analyser makes predictions and suggests useful actions</li>
  62. </ul>
  63. </body>
  64. </html>