I am making a simple apps for Android, This apps have some function:
- Upload
- Download
- ShowAllFile
When i use Gdata, it's easy to make this function in Java
But Gdata didn't support Android.
Can anyone give sample code for GoogleDoc in Android which use google-api-java-clien ?
Best Regards
P/s: UPDATE: i can upload file
You should have a look at http://samples.google-api-java-client.googlecode.com/hg/picasa-atom-android-sample/instructions.html?r=default. This is a sample for Picasa, but GDoc is much the same.
Of course G-Data is supported in Android
On there you will find samples and a video with a presentation on how to access G-Data API on Android
http://code.google.com/p/google-api-java-client/wiki/MediaUpload (from 1.7)
Related
I've been through the SODA Android SDK's GitHub page, and README.
Is there more developer documentation or is this it? If this is it, is it common to find light-touch documentation like this? and is this is recommended to read the actual source code to understand what's possible?
The soda-android library is actually pretty old at this point, and I'd recommend instead just building a simple client using the Retrofit library on our RESTful API. I've heard great feedback about using that library with our API.
I'm trying to implement an MPEG-DASH client on android , I'm trying to use the libdash library through NDK but the problem that it doesn't have any documentations or tutorial that really helps.
Can someone give me a good tutorial plz
Thx
Did you look at the documentation: http://www.bitmovin.net/files/bitmovin/content/documentation/libdash/3_0/index.html
You may also contact the developers via: https://github.com/bitmovin/libdash
I am very new to android environment and have to set up client side using the (wmqtt.jar) sample application given on http://www-01.ibm.com/support/docview.wss?
I know only about hello world program.
Kindly tell how can I integrate it in my simple android application, step by step.
Thanks and Regards.
There is a good example and run through at http://dalelane.co.uk/blog/?p=1599
I'd also point out that you might be better off with the recently released open source Java client. You can find it at http://git.eclipse.org/c/paho/org.eclipse.paho.mqtt.java.git/ - you should find the licence is much friendlier than for wmqtt.jar.
As Roger says, the best / latest Java client code is that available from the Eclipse Paho project - http://git.eclipse.org/c/paho/org.eclipse.paho.mqtt.java.git/
The IA92 code and wmqtt.jar has a difficult license and does not support some of the latest features like authentication.
In addition, you will find a lot of useful links and information on the mqtt.org wiki http://mqtt.org/wiki/doku.php/mqtt_on_the_android_platform
Very good sample code available at http://mosquitto.org/files/examples/android-mqtt-example.zip. Once you understand how it works, you would be able to move to writing your own code.
is there any way to working with google docs in android. i seem that a java client library is not support with android.
Please help me out!
Thanks In Advance!
Read this :
Java android client api for android
then take a look at a sample that gets a document list from google docs.
the simple and easiest way to access gdocs from android here
Use and enjoy.
What's the best way to use Amazon Simple Storage Service (S3) on Android?
For iPhone I use ASIHTTPRequest. Is there something similar for Android?
There is now an Amazon-supported Android SDK: http://aws.amazon.com/sdkforandroid/ . It's only been out since the end of 2010, but it seems to work well - it allowed me to easily upload a photo to S3.
To be honest I think if no library exists which works with android you will need to just roll your own. Take a look at the REST API and implement just the methods that you need for your application.
Doing it this way is more work but you will keep the filesize of your application down.
I think any S3 Java API should do it ? Look at the docs for Java API Libraries.