Hi I need to add particulars to Google calendar from my application. Is it possible to add data to Google calendar? I am new to android Help me to solve this.
Hi All,
I am writing and publishing my apps on android and would like to provide help document (manual) to users of my apps. I've seen apps open up external web pages as their help, or use html view to open local html documents. Are these the ways we are supposed to deliver manual to our users?
Still new to Android
I want to display some data as an HTML-like ordered list (non-actionable).
Example;
Item One
Item Two
Item Three
I feel I am missing something obvious.
Thanks,
JD
I have Subversion 1.6.6 and Apache 2.2.14 installed and working.
I have made the following changes to the Apache httpd.conf file:
#Uncommented by me for Subversion installation
LoadModule dav_module modules/mod_dav.so
LoadModule dav_fs_module modules/mod_dav_fs.so
#Added by me for subversion installation
LoadModule dav_svn_module…
All the examples I've see for using the Gallery view in Android set a specific pixel size for the images using:
i.setLayoutParams(new Gallery.LayoutParams(200, 200));
Can someone give me an example of how to size a gallery image using XML so that I can use dp units?
Thanks!
I have an Android game that has an activity for the menu, and then another activity for the game that creates a SurfaceView and Thread to deal with canvas drawing and game logic. When you exit the game and start it up again too much or if you open and close the keyboard (thus restarting the activity), the game runs out of memory,…
We all know that Android runs Dalvik VM programs.
Normally developers write programs in Java and they compile it to Dalvik bytecode.
I wonder if it would be possible to create a compiler that can take C# code and compile it into Dalvik bitecode.
I have defined some common Activities in a library project and want to reuse these activity in my working project.
I declared my library project as Android library, use the fully-qualified name of the Activities and declare them in the AndroidManifest.xml of the new project. However, I get 'Unable to find explicit activity…
I am tring to load bitmaps from an internal resource in a View object (the source itself is in "drawable" files).
the code is:
import android.content.Context;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.graphics.Canvas;
import android.util.AttributeSet;
import android.view.View;
…
Hi,
I'm searching for android phones that can use video out to the tv for a research project. I'm considering the HTC Touch Pro.
Is there anything I have to do specifically to get the video out to work (for displaying my app on the tv)? or will the phone just display a running app on the tv without extra work?
Thanks, I…
Can Android applications see OS wide context in terms of network? For example,
what applications are using the network
what IP addresses is the OS connected to
etc.
I'm asking because I know each application runs in it's own Dalvik virtual machine.
I want to add files to java app in android so I'll know their path and can access them.
How can I do it? (It doesn't matter where they will be the most important is that I can access them and I'll know the relative path of the them)
i wonder how you can make an advanced Android User interface where you can add for example a drag drop and more graphics options? is that by using OpenGl ?!
this is example of UI in iPhone Apps.
example 1
example 2
Thanks
Im new to android, developing a social networking application which requires user to upload images, but i dont know how to achive the file upload dialog box. How can we achive it,using java file or xml layout file?
Found this question while trying to do the same:
http://stackoverflow.com/questions/642076/how-to-save-sms-to-inbox-in-android-programmatically.
But this part:
getContentResolver().insert(Uri.parse("content://sms/sent"), values);
throws an SecurityException.
I requestet SMS_WRITE permission in the manifest file.
…
In an Android app, whenever the activity launches, the textbox gets the focus and the soft keyboard pops up automatically. I have tried to stop this by using following line in onCreate method, but it does not work.
((InputMethodManager)…
I wonder how could is possible to make custom shape key on android keyboard. To create custom keyboard is relatively easy, but what needs to be done to create new buttons. They also need to respond with all events as normal keyboard.
…
I am trying to do this database tutorial on SQLite Eclipse: https://www.youtube.com/watch?v=j-IV87qQ00M
But I get a few errors at the end..
at db.ppen(); i get error: The method open() is undefined for the type…
To make a phone call via HTML on an iPhone I create an <A/> tag with an href formatted as: <a href='tel:123-555-1212'>Dial Me</a>.
Is there an equivelant for HTML on Android?
I have a Class that needs to obtain a reference to it's application's AssetManager. This class does not extend any sort of android UI class, so it doesn't have a getContext() method, or anything similar. Is there…