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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <?xml version="1.0"?>
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <title>Android projects by Chris Smith</title>
  5. <link rel="stylesheet" type="text/css" href="/style.css"/>
  6. <style type="text/css">
  7. .qr { float: left; clear: left; margin-right: 15px; }
  8. .qr img { width: 128px; }
  9. .app div { margin-left: 143px; }
  10. </style>
  11. </head>
  12. <body style="margin-top: 0; padding-top: 0;">
  13. <h1 style="background: url('android.png') no-repeat right; padding-top: 50px; margin-top: 0;">Android projects by <span>Chris Smith</span></h1>
  14. <div>
  15. <h2>Context-aware framework</h2>
  16. <p>
  17. The goal of the context-aware framework is to create an open, easy-to-use
  18. framework for application developers to retrieve information about the
  19. user's context. This context information includes low-level activites
  20. (walking, sitting, running, etc), places (home, work, travelling),
  21. nearby people (friends, strangers, etc) and more.
  22. </p>
  23. <p>
  24. At present the project is in a research and data-collection phase. The
  25. applications presented below are intended to assist in gathering data
  26. which can be analysed to determine suitable algorithms and parameters
  27. to perform the detection necessary to correctly classify and extract
  28. context information. While they are published on the Android market
  29. and freely available to download, they do not provide any benefit to
  30. end users, so it is not anticipated that they will be widely used
  31. outside a small set of voluntary testers.
  32. </p>
  33. <p>
  34. Issues, suggestions and feedback can be sent to me directly (either via
  35. the address published on the application's market page, or the details
  36. on my <a href="http://chris.smith.name/">home page</a>), or raised as
  37. issues on the project page over at
  38. <a href="http://github.com/csmith/ContextApi/issues">GitHub</a>.
  39. </p>
  40. <div class="app">
  41. <a href="market://details?id=uk.co.md87.android.sensorlogger" class="qr"><img src="SensorLogger.png" alt="SensorLogger.apk QR code"></a>
  42. <div>
  43. <h3>Sensor logger</h3>
  44. <p>Logs changes in accelerometer and magnetic field readings over a 50 second period. This data is combined with a user-supplied activity description, and uploaded for use in development, training and evaluation of an activity detection algorithm.</p>
  45. <p>The application provides a link to a web-based portal where users can see a graph of their uploaded data, and the results of the activity detection algorithm will also be surfaced there.</p>
  46. <h4>Changelog</h4>
  47. <ul>
  48. <li><strong>0.2.1 &rarr; 0.2.2</strong>: Fix force close, add reporting of exceptions</li>
  49. <li><strong>0.2.0 &rarr; 0.2.1</strong>: Bug fix related to turning display off</li>
  50. <li><strong>0.1.6 &rarr; 0.2.0</strong>: Near-complete rewrite: much improved UI, classification on device, bug fixes</li>
  51. <li><strong>0.1.5 &rarr; 0.1.6</strong>: Fix force close on devices that use MEIDs not IMEI numbers</li>
  52. <li><strong>0.1.4 &rarr; 0.1.5</strong>: Make edit boxes single line only</li>
  53. <li><strong>0.1.3 &rarr; 0.1.4</strong>: Add support for horizontal layout</li>
  54. <li><strong>0.1.2 &rarr; 0.1.3</strong>: Added link to portal webpage</li>
  55. <li><strong>0.1.1 &rarr; 0.1.2</strong>: Fix force close when no magnetic field sensors are available, disable upload button</li>
  56. <li><strong>0.1 &rarr; 0.1.1</strong>: Add 10s delay at start, disable auto start, disable manual stopping, fix various uploader bugs</li>
  57. </ul>
  58. </div>
  59. </div>
  60. </div>
  61. <div id="footer"/>
  62. </body>
  63. </html>