Projects tagged ‘android’, ‘java’, and ‘library’


Jump to tag:

Projects tagged ‘android’, ‘java’, and ‘library’

Filtered by Project Tags android java library

Refine results Project Tags webservice (2) ean (1) upc (1) iphone (1) blackberry (1) mmapi (1) dalvik (1) javame (1) rim (1) flickr (1) twitpic (1) hessian (1)

[8 total ]

27 Users
   

ZXing (pronounced "zebra crossing") is an open-source, multi-format 1D/2D barcode reader library implemented in Java. Our goal is to support decoding of QR Codes, Data Matrix, and the UPC family of 1D ... [More] barcodes. It will provide clients for J2ME, J2SE, and Android. [Less]
Created over 2 years ago.

0 Users

hessdroid - android hessian libraryhessdroid is an Android port of the Java hessian library provided by Caucho (0). it is supposed to be very light-weight, even lighter as the original Java lib since ... [More] it doesn't contain most of the server-side classes and JEE related stuff (servlets, JNDI, etc.). hessdroid is built on top of standard JDK classes found in Android - without further dependencies to third-party libraries. hessian is a binary web service protocol. among other design goals it was designed to be as fast, as compact and as simple as possible. the up-to-date specification can be found at (1). Since it is language-independent, a number of implementations are available for a vast majority of programming languages (2). Quick-Start let's assume we have a web service with the following interface public interface TestAPI { public abstract String saySomething(); }in order to instantiate a web-service client, use HessianProxyFactory String webServiceUrl = "https://localhost/testAPI"; HessianProxyFactory proxyFactory = new HessianProxyFactory(); // setting a user/password calls the web service with basic authentication proxyFactory.setUser("john"); proxyFactory.setPassword("doe"); TestAPI api = (TestAPI) proxyFactory.create(TestAPI.class, webServiceUrl, getClassLoader()); System.out.println(api.saySomething());hint: the only thing that is specific to Android is the last parameter of the HessianProxyFactory.create()call: getClassLoader(). if we wouldn't specify the class-loader Thread.getContextClassLoader() would have been used which is - in the case of Android - not the correct class loader. In Android you have to use Context.getClassLoader (3) which returns the application package class-loader. Of course TestAPI is a very simple interface as you might have noticed. indeed, hessian serialization was designed for real object-orientation, which includes using reference types (custom classes) as return or parameter types. A brief introduction to Hessdroid is found on slideshare: http://www.slideshare.net/hessdroid/hessdroid References (0) http://hessian.caucho.com/#Java (1) http://hessian.caucho.com/doc/hessian-serialization.html (2) http://hessian.caucho.com/#Hessian%20Implementations/Download (3) http://developer.android.com/reference/android/content/Context.html#getClassLoader() [Less]
Created 7 months ago.

0 Users

The Android Robot Extension ProjectThe Android Robot Extension (ARE) project provide most simply and easy way for the Android platform! Sorry, not yet available!
Created 6 months ago.

0 Users

Java library for manipulating vCard files. The source code was extracted from the Google Android project. This project was created out of desperation that there is no decent Java vCard library. All ... [More] libraries which I have found had problems with various file or character encodings, vCard versions, etc. Therefore I hacked a vCard related code out of Google Android project and made it into a standalone library. Read UsageExamples for instructions how to easily use it. I made a few changes in the Google's code (notably a few improvements in "UTF-8" support and redirected error reporting to a standard Java Logging facility). Nevertheless I don't plan on any further additions, except on updating sources from new versions of Android. If you want to manage this project, don't hesitate to ask. Looking for other Java vCard libraries? See SimilarProjects. [Less]
Created 7 months ago.

0 Users

Javabibliothek um auf die consolewars.de API zuzugreifen. Mögliche EinsatzzweckeBackend für Android Apps als Basis für die Entwicklung von Desktopclients mit erweiterter Funktionalität als Basis ... [More] für unterschiedliche Tools (Statistiken/Analysen, Filter von Kommentaren mit bestimmten Wörtern, Twitter DirectMessage wenn man neue PN erhalten hat etc.) Version 0.1 und Version 0.2 entsprechen dem vollen Funktionsumfang der consolewars.de API 1.0 zum jetzigen Zeitpunkt ist es möglich: Blogseinzelne Blogs oder Liste von Blogs aufzurufen (gefiltert nach Newsblogs oder normalen Userblogs) Newseinzelne News oder Liste von News aufzurufen (optional gefiltert nach Konsolenhersteller) KommentareNews- und Blogkommentare lesen PNsNachrichten aus dem Posteingang oder aus dem Gesendete Nachrichten Ordner lesen Dokumentation zur API selbst findet man unter http://www.consolewars.de/api/documentation.php weitere Features der libraryNews, Blogs, Kommentare, PNs werden auf Klassen abgebildet unterstützt automatischen Check nach neuen Blogs oder News (Zeitintervall einstellbar) (ab version 0.2) Benachrichtigung sobald neue News oder Blogs erschienen sind mittels Event Handling (ab Version 0.2) relative Zeitangaben für Blogs, News, Kommentare, PNs (Beispiel: vor 3 Minuten, vor 2 Stunden, vor 5 Tagen etc.) Changelog Version 0.2Event Handling für neue Blogs und News. BlogUpdateListener oder NewsUpdateListener in deiner eigenen Anwendung implementieren und bei neuen News oder Blogs Event Messages erhalten News, Blogs, Kommentare abfragen, die nicht älter als ein bestimmtes Datum/Uhrzeit sind Exception Wrapper ConsolewarsAPIException eingeführt simpler html2plaintext converter um unformatierten Text zu bekommen was momentan noch fehltEvent Handling für Kommentare und PNs html2plaintext converter erweitern (dürfte im Moment einige HTML-Tags ignorieren) beim Event Handling landen die Exceptions momentan ins Nirvana, müsste überarbeitet werden schreibender Zugriff auf die API (sobald entsprechende Funktionen in der API freigegeben werden) [Less]
Created 7 months ago.

0 Users

Use Flickr API on Android platform.
Created 6 months ago.

0 Users

SummaryThis library is intended to ease image uploads to TwitPic by handling the construction of multipart/form-data POST requests. The library offers methods for both the "upload" and ... [More] "uploadAndPost" TwitPic API calls. It's extremely easy to use and designed to be lightweight. FeaturesEasy implementation Built-in exceptions for TwitPic error responses Byte array uploads, specifically designed for Android camera callbacks. ExampleCode// Create file File picture = new File("images/somepic.jpg"); // Create TwitPic object and allocate TwitPicResponse object TwitPic tpRequest = new TwitPic("username", "password"); TwitPicResponse tpResponse = null; // Make request and handle exceptions try { tpResponse = tpRequest.uploadAndPost(picture, "Hello World!!!"); } catch (IOException e) { e.printStackTrace(); } catch (TwitPicException e) { e.printStackTrace(); } // If we got a response back, print out response variables if(tpResponse != null) tpResponse.dumpVars();OutputStatus: ok Status Id: 2455416825 User Id: 51561338 Media Aid: 97lkj Media Url: http://twitpic.com/97lkj Error Code: null Error Msg: null [Less]
Created 7 months ago.

0 Users

AChartEngine is a charting library for Android applications. It currently supports the following chart types: line chart area chart scatter chart time chart bar chart pie chart All the above ... [More] supported chart types can contain multiple series, can be displayed with the X axis horizontally (default) or vertically and support many other custom features. The charts can be built as a view that can be added to a view group or as an intent, such as it can be used to start an activity. The library is currently at the 0.3.0 release. The 0.3.0 was the first one with features based on the feedback from the library users. New chart types will be added in the following releases of the library. Please keep sending your feedback on what chart types you think that should be included in the next rel [Less]
Created about 1 year ago.