I am working on an application where I need to display some more than one charts on an Activity.
I saw the chartdroid example but, it is an application and to use that application we need to intents in our application. Is there any example where we can use the chartdroid api direct in out code?
Thank you.
Dwarkesh
...
i want to remove notification when SMS comes in general inbox. is it possible... if yes then how... i got many site where is metion this is not possible through code...
...
I am developing an app for android mobiles that communicates with a json/rest web service. I need to make certain kinds of calls periodically to the server to check for some information.
Within that context I might need also to query the GPS for the current position. I'm quite undecided to use a Local Service, since I don't know very wel...
enter code here
XML Code is
-
-
Radio
200
-
...
Thank you for reading my post:
I had C2DM working perfectly in my application. To test a different scenario I unregistered my phone so that it would not receive pushes anymore, and then I re-registered my phone. Since I have re-registered push does not work.
Here are the steps I'm experiencing:
My phone receives a registration_id...
I am sending longin request to server from android it is successful and then and I am sending logout request but it is giving Session timeout Error.
When I tried same URL with browser it is successfully logout, but when I m sending same request from android but its giving session timeout error.
...
I am creating an widget application and would like to send random "words of encouragement" to the user. Something like positive affirmations would appear in the notification area, but not due to a user action, but rather a random action internal. I would grab a "words of encouragement" randomly from a database full of quotes.
Not sur...
I am trying to apply an animation to a view in my Android app after my activity is created. To do this, I need to determine the current size of the view, and then set up an animation to scale from the current size to the new size. This part must be done at runtime, since the view scales to different sizes depending on input from the us...
I am trying to send a pdf as an attachment from Android. Here is the code:
String[] mailto = {"[email protected]"};
Uri uri = Uri.parse("android.resource://com.mywebsite.sendemail/raw/mypdf");
Intent emailIntent = new Intent(Intent.ACTION_SEND);
emailIntent.putExtra(Intent.EXTRA_EMAIL, mailto);
emailIntent.putExtra(Intent.EXTRA_SUBJECT, "My...
I want to be able to add custom attributes to the Manifest.mf file that is created when I build and sign my APK file using Eclipse. By default, I see in the source that the addDigestsToManfest() method of SignApk adds the two standard main attributes in the code:
main.putValue("Manifest-Version", "1.0");
main.putValue("Created-By", "1....
Does anybody know the relationship between the members of an Android Itemized Overlay list and when draw() is called. Specifically, I'm trying to find out if draw is called once for each Overlay or once only for the whole set.
Thanks,
R.
...
Hai friends,
I have a big doubt now,
Has Android really replaced J2ME and WML?
If Android has replaced them then please tell what is the reason for that?
How has Android replaced the other two mentioned above and
what is the reason that J2ME and WML cannot withstand against Android in market?
...
Hello,
I need to put a Notification in the Status bar while my app is running, but I don't want it to call back to my Activity if selected. Its meant to just be info to the user that the app is running - basically a reminder in case they press the home button and minimize it.
Ideas?
...
How should I make the choice ? What are the parameters I should take into account ?
...
I have the following code in my application in res/xml/preferences.xml:
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
<PreferenceCategory android:title="Wi-Fi settings">
<EditTextPreference
android:key="pref_voice_threshold_top"
android:title="@string/title_pref_voicetopt...
I have GridView and I want to be able to switch between adapters.
Context:
I have data from two separate sources and I want to be able to easily switch between those.
Is it possible to just switch adapters or there is other solution?
...
My user can flick through a set of records. I save the last seen record _ID in Preferences, so that they can start off from where they left when they access the application next time.
The cursor that I have extracts _ID field too. However, I don't know how to move cursor to that particular row. The following functions of the cursor need...
I'd like to extend Application in my Android app. I've done this such that I've created an extended Application object called MyApplication and added it to the manifest.
I'd now like to add some getters and setters to hold some information. It looks like I'll need to pass the application Context to any classes which do not contain a C...
Hello,
In my app I'm making a basic HTML help document.
I wanted my app's logo in the HTML img tag itself, but I don't know how I'd reference to the logo which will be stored in assets.
Is this possible, if so how?
Thanks for the help!
...
I have a gray gradient drawable (png image in res/drawable). If I draw it on a white Canvas it looks banded (not smooth). If I put the gradient on white background in GIMP, and then draw this drawable on the Canvas, it looks great. What's the problem? I tested this on Nexus One. Calling setDither(true) on the drawable has no noticable ef...