Re: [android-developers] How to debug android project under command line?

2012-02-07 Thread ji fei
Thanks for your link, It's really useful. I have already got 2G ram, but my eclipse got to no response always. It's no double that eclipse is great ide, i thought it's must caused by myself. I still don't know why google just provider script for emacs, why not provider some script for vim. On

[android-developers] android fullscreen issue

2012-02-07 Thread mark2011
Dear All : I had written the below command at my project AndroidMainfest.xml. android:theme=@android:style/Theme.NoTitleBar.Fullscreen. I installed the apk into 2 different android phone(one is android 2.2.1, the other is 2.2.2). One is fullscreen display, but the other isn't. It displays

[android-developers] Re: SMS Manager

2012-02-07 Thread Ali Chousein
Hhhmmm, I doubt that the Android framework supports this by default. When you send an SMS to another emulator on the same machine, you specify other emulator's port number. If you want to send an SMS to another machine, I guess you'll need something like: 1. You are working on machine M1. Send

Re: [android-developers] android fullscreen issue

2012-02-07 Thread ji fei
Try to add follow code to AndroidManifest.xml. Maybe works. uses-sdk android:minSdkVersion=9/ On Tue, Feb 7, 2012 at 4:56 PM, mark2011 androidmark2...@gmail.com wrote: Dear All : I had written the below command at my project AndroidMainfest.xml.

[android-developers] Android Hackathon in Goa

2012-02-07 Thread Smarth Behl
Hi Friends We are conducting an Android Hackathon in Goa,India during Global Android Developers Camp.More Details can be found at www.androidhackathon.in.Registrations are open and free. Regards Smarth Behl Head Goa State GTUG -- You received this message because you are subscribed to the

[android-developers] Re: Android Hackathon in Goa

2012-02-07 Thread Smarth Behl
www.androidhackathon.in On Feb 7, 2:50 pm, Smarth Behl smarthb...@gmail.com wrote: Hi Friends We are conducting an Android Hackathon in Goa,India during Global Android Developers Camp.More Details can be found at www.androidhackathon.in. Registrationsare open and free. Regards Smarth

[android-developers] Re: android fullscreen issue

2012-02-07 Thread mark2011
Dear ji fei : Thanks for your quick reply. After I change minSdkVersion from 7 to 9, I Can't install this apk into android 2.1 anymore. BR, Mark On Feb 7, 5:37 pm, ji fei ufo22940...@gmail.com wrote: Try to add follow code to AndroidManifest.xml. Maybe works. uses-sdk

[android-developers] Re: Preference text item height

2012-02-07 Thread JP
If anyone is interested in the answer, then I found out that I had to override onCreateView() instead. Here is the code: @Override protected View onCreateView(ViewGroup parent) { LinearLayout layout = new LinearLayout(getContext()); LinearLayout.LayoutParams params1 = new

[android-developers] How to dynamically change ActionBar icon in honeycomb?

2012-02-07 Thread Ab
I would like to dynamically change the home icon in the ActionBar. This is easily done in v14 with ActionBar.setIcon(...), but I can't find anyway to accomplish this in previous versions. -- You received this message because you are subscribed to the Google Groups Android Developers group. To

[android-developers] How to customize selectors for items in ActionBar?

2012-02-07 Thread Ab
I would like to programmatically set the background of an ActionBar item to draw as a specific color. For a View I would accomplish this by setting the background of the View to a custom selector, which uses my specific color for the selected state; then I would call View.setSelected(boolean) to

[android-developers] Image rotation smoothly

2012-02-07 Thread vani reddy
Hi, How to make the image rotation smoothly.,i used accelerateInterpolater and linearInterpolater also. but it pauses for a moment and then starts. -- Regards, Vani Reddy -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this

Re: [android-developers] Re: does Android market validate unreleased versions?

2012-02-07 Thread Kostya Vasilyev
Not sure if it applies to the LVL, but in-app order validation, at some point in the past, maybe a couple of months ago, started checking for a match in the apk's version code. Perhaps it's worth checking. A couple of ideas: 1) Upload the .apk you're distributing to beta users to Market, don't

Re: [android-developers] How to customize selectors for items in ActionBar?

2012-02-07 Thread Kostya Vasilyev
http://android-developers.blogspot.com/2011/04/customizing-action-bar.html The individual action items inherit the default blue background when selected. We can customise this behaviour by overriding

[android-developers] Rotate Fragment with WebView or VideoView

2012-02-07 Thread Ricardo
Hi I have different layouts for portrait and lanscape (very different from each other), and I add all the fragments using transactions. I have a VideoView inside one of my fragments, and it can´t be stopped during the rotation. So I am using the onConfigurationChanged method to avoid the

Re: [android-developers] Image rotation smoothly

2012-02-07 Thread Chandra Sekhar
On Tue, Feb 7, 2012 at 3:59 PM, vani reddy vani.reddy.bl...@gmail.comwrote: Hi, How to make the image rotation smoothly.,i used accelerateInterpolater and linearInterpolater also. but it pauses for a moment and then starts. -- Regards, Vani Reddy Try this one it will help u ?xml

[android-developers] Re: How to customize selectors for items in ActionBar?

2012-02-07 Thread Ab
Ok, so I can use this to define a color for selected state, etc. But I still need to get a reference to the individual action item so that I can call View.setSelected(boolean). I don't see anyway to get this reference from the ActionBar class, any ideas? On Feb 7, 6:06 am, Kostya Vasilyev

[android-developers] Re: How to customize selectors for items in ActionBar?

2012-02-07 Thread Ab
Nevermind. I see now that actionbar Views can be obtained with Activity.findViewById(id), where the id comes from MenuItem.getItemId() for the corresponding MenuItem. Thanks for the help. On Feb 7, 7:18 am, Ab abe.oppenh...@gmail.com wrote: Ok, so I can use this to define a color for selected

[android-developers] Why would PackageManager throw PackageNotFound for its own App Package?

2012-02-07 Thread William Ferguson
I'm received several instances of the IllegalStateException being thrown out in the wild. It's very rare and I can't reproduce it locally. How is it possible for it to occur? NB Context below is this case is an Activity. final String packageName = context.getPackageName(); try { return

[android-developers] Sending SMS to mobile using wifi.

2012-02-07 Thread Seshu
Hi, I want to Send SMS from mobile to mobile using wifi with free of cost for the network.. Is it possible to send sms like that. If means can u send source code 2 me and my id s(dot)seshu143atgmaildotcom. Thanks in advance. Thanks and Regards, S.Seshu. -- You received this message

Re: [android-developers] Overlay Images

2012-02-07 Thread New Developer
Thanks I got that to work however now reloading the image is causing a problem here is the code Bitmap img = BitmapFactory.decodeFile(fName); Log.i(display, mute: +img.isMutable() + recycle: + img.isRecycled() ); Matrix matrix= new

[android-developers] Shared Preferences

2012-02-07 Thread ajay talreja
This code is not working for mei'm trying to use Shared preferences to store long values.the code is correct and is launching successfully when i switch from long to int valuesplease help package d.preferencesdemo1; import android.app.Activity; import

Re: [android-developers] Overlay Images

2012-02-07 Thread New Developer
It would appear to fail because scale is 1.00 or the matrix is the identity matrix testing for scale == 1.000 and setting it to 0.98 makes the code work and produces the falsefalse true false Why ? On 02/07/2012 07:50 AM, New Developer wrote: Thanks I got that to work however

[android-developers] Email problem

2012-02-07 Thread Pradeep
Hello everyone, I have observed on issue in email in ICS version If you have logged into any email acccount with one specific language say for example Hindi, and again then you change the language to English, the whole app changes to English but not the MessageListItem activity, which still

Re: [android-developers] Re: getApplicationContext() returns null?

2012-02-07 Thread Mark Murphy
I have never really looked at LVL. Using a bound service there is annoying. Anyway, you're going to have to block the IntentService background thread, which sucks IMHO, but I can't quite see how to avoid it. So, here's what I'd do: -- Override onStartCommand() to call bindService() on your

Re: [android-developers] Why would PackageManager throw PackageNotFound for its own App Package?

2012-02-07 Thread Mark Murphy
When are you calling this? One conceivable scenario would be if you are doing this a bit asynchronously from your activity (e.g., AsyncTask). If the user fired up your activity, then hustled over to uninstall it, *and* if the uninstall process were to update the package info before terminating

Re: [android-developers] android fullscreen issue

2012-02-07 Thread Mark Murphy
What is the specific make/model of the device that is not honoring your request? On Tue, Feb 7, 2012 at 3:56 AM, mark2011 androidmark2...@gmail.com wrote: Dear All :   I had written the below command at my project AndroidMainfest.xml. android:theme=@android:style/Theme.NoTitleBar.Fullscreen.

[android-developers] Re: how to hide softtkeyboard pressedkey popup?

2012-02-07 Thread jamesc
No. This is a feature of the input method. See: http://developer.android.com/reference/android/inputmethodservice/KeyboardView.html#attr_android:keyPreviewLayout Why should you change how a user has configured their IME? Just because it's a secure text box, doesn't mean that a user shouldn't

[android-developers] Re: Why would PackageManager throw PackageNotFound for its own App Package?

2012-02-07 Thread William Ferguson
Hi Mark, Its on the UI thread from a button click. William On Feb 7, 11:37 pm, Mark Murphy mmur...@commonsware.com wrote: When are you calling this? One conceivable scenario would be if you are doing this a bit asynchronously from your activity (e.g., AsyncTask). If the user fired up your

[android-developers] Android Push c2dm without a server

2012-02-07 Thread Sanchiski
Is there a way to implement a device 2 device notification system, by using the c2dm api, but without a third party server for the registration_id? I cannot see how a device can know about the existence of another device, or send directly a notification without implementing a third party server.

[android-developers] Re: incorrect memory allocation causing frequent garbage collections

2012-02-07 Thread Mark Meisner
I have not. I'll give it a go thanks! -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to

[android-developers] when I tap the screen, it registers multiple taps, not just one...

2012-02-07 Thread cellurl
I tap the screen and it registers multiple-taps. It didn't do that on the emulator, but on a G1, if I tap once, it fires multiple times. Q: How do I get rid of the double taps? Thanks in advance! -cellurl -code--- public class JetBoy extends Activity implements

[android-developers] TextView scroll in an activity.

2012-02-07 Thread Put_tiMe
I have a main activity. Based on a button press, I have to launch a 'new' activity. This 'new' activity has just one UI item, i.e a TextView. I've added properties which will indicate that it is scrollable: *

Re: [android-developers] Battery manager : temperature and voltage

2012-02-07 Thread Put_tiMe
Ok, by derived, I mean can I find out how long the battery will last? This is because battery lasts longer at ideal temperature, Or if the voltage is not within a threshold, then does it mean anything? If the voltage is high, then does it mean more power is being consumed, and thus the battery

Re: [android-developers] How to debug android project under command line?

2012-02-07 Thread Kristopher Micinski
On Tue, Feb 7, 2012 at 3:01 AM, ji fei ufo22940...@gmail.com wrote: Thanks for your link, It's really useful. I have already got 2G ram, but my eclipse got to no response always. It's no double that eclipse is great ide, i thought it's must caused by myself. I still don't know why google

[android-developers] Invert and entire Bitmap

2012-02-07 Thread New Developer
Is there a process/function to invert the colors of an entire bitmap or canvas ? Not just a black and white image that becomes white and black But a full color image, where the color is inverted ? Thanks in advance -- You received this message because you are subscribed to the Google Groups

Re: [android-developers] How to debug android project under command line?

2012-02-07 Thread Kostya Vasilyev
7 февраля 2012 г. 19:03 пользователь Kristopher Micinski krismicin...@gmail.com написал: By the way, 2G ram is not considered very much these days, (off topic but someone told me that android wouldn't even build on eight now..). To add to that, eclipse uses a fair amount of memory, and to

Re: [android-developers] How to debug android project under command line?

2012-02-07 Thread Kristopher Micinski
2012/2/7 Kostya Vasilyev kmans...@gmail.com 7 февраля 2012 г. 19:03 пользователь Kristopher Micinski krismicin...@gmail.com написал: By the way, 2G ram is not considered very much these days, (off topic but someone told me that android wouldn't even build on eight now..). To add to

Re: [android-developers] Re: SSL/TLS and ECC (Elliptic curve cryptography)

2012-02-07 Thread Raymond C. Rodgers
I don't know much about EC, but if the provided HTTPS support doesn't work with it, you could always build your own class to implement a simplified version of the protocol over your SSL/EC transport. If you're interested in following that path, you can find the HTTP specifications at

Re: [android-developers] Re: SSL/TLS and ECC (Elliptic curve cryptography)

2012-02-07 Thread Nikolay Elenkov
On Wed, Feb 8, 2012 at 12:30 AM, Raymond C. Rodgers raym...@badlucksoft.com wrote: I don't know much about EC, but if the provided HTTPS support doesn't work with it, you could always build your own class to implement a simplified version of the protocol over your SSL/EC transport I think the

[android-developers] Android-Set animation for dialog

2012-02-07 Thread T.M.S.VIJAYKUMARR
Hi Friends, Below link for how to set animation for dialog please check it. *this blog for very for beginners android* http://iamvijayakumar.blogspot.in/2012/02/android-set-animation-for-dialog.html -- - Thanks Regards, T.M.S.VIJAYKUMARR -- You received this message because you are

[android-developers] good android blog

2012-02-07 Thread T.M.S.VIJAYKUMARR
Hi this blog for android http://iamvijayakumar.blogspot.com -- - Thanks Regards, T.M.S.VIJAYKUMARR -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To

Re: [android-developers] How to debug android project under command line?

2012-02-07 Thread John Davis
Hello Kostya, Interesting. I'm running on win7. I was expecting the eclipse icon to be a link to the .exe with some command arguments. I was going to use your options to tweak my own. However, it runs eclipse.exe without options. Does anyone have some win7 settings? Ill check your

Re: [android-developers] How to debug android project under command line?

2012-02-07 Thread John Davis
LOL. My bad. Its the settings in the .ini file. Not the command line options. NVM. On Tue, Feb 7, 2012 at 11:06 AM, John Davis davi...@gmail.com wrote: Hello Kostya, Interesting. I'm running on win7. I was expecting the eclipse icon to be a link to the .exe with some command arguments.

Re: [android-developers] How to debug android project under command line?

2012-02-07 Thread Kostya Vasilyev
Technically speaking, they are command line options, it's just that Eclipse can read them from an .ini file, which is easier to manage (and which already exists by default in the Eclipse directory). 7 февраля 2012 г. 20:08 пользователь John Davis davi...@gmail.com написал: LOL. My bad. Its the

[android-developers] Bluetooth insecurerfcomm automated pairing request on ICS

2012-02-07 Thread rapgaroo
I own a Nexus S and it's currently running ICS 4.0.3 (OTA from T- Mobile). I have my own application which does Bluetooth connection stuff using Insecure method to ignore the boring pairing process. After when I updated my Android OS to ICS 4.0.3, my app is requesting for a pairing with the

[android-developers] Google api 7

2012-02-07 Thread Dhaval Varia
1. I need google api 7 or less... Where do i get it? 2. I have installed my app on motorola android 2.1 ,it is giving error: unable to parse... is it because i have built my project on 2.3 and try to install on 2.1? -- You received this message because you are subscribed to the Google Groups

Re: [android-developers] when I tap the screen, it registers multiple taps, not just one...

2012-02-07 Thread Todd Grigsby
Try googling debounce. On Feb 7, 2012 6:19 AM, cellurl gpscru...@gmail.com wrote: I tap the screen and it registers multiple-taps. It didn't do that on the emulator, but on a G1, if I tap once, it fires multiple times. Q: How do I get rid of the double taps? Thanks in advance! -cellurl

Re: [android-developers] Re: Why would PackageManager throw PackageNotFound for its own App Package?

2012-02-07 Thread Mark Murphy
Yup, definitely gremlins. :-) On Tue, Feb 7, 2012 at 8:46 AM, William Ferguson william.ferguson...@gmail.com wrote: Hi Mark, Its on the UI thread from a button click. William On Feb 7, 11:37 pm, Mark Murphy mmur...@commonsware.com wrote: When are you calling this? One conceivable

Re: [android-developers] Google api 7

2012-02-07 Thread Kristopher Micinski
On Tue, Feb 7, 2012 at 11:35 AM, Dhaval Varia dhavalkva...@gmail.comwrote: 1. I need google api 7 or less... Where do i get it? With the android tool that's included in the sdk you can download sdks for previous platforms.. 2. I have installed my app on motorola android 2.1 ,it is giving

[android-developers] is it possible to have a composite layout like this?

2012-02-07 Thread John Davis
Hello Is it possible to have a layout like this? Linear Layout - button - scrollview --- Gridview I.e. Linear layout at top with two children, button and scrollview. The scrollview has one layout inside it which is a gridview. When I do this, I get a button at top of the screen and a

Re: [android-developers] is it possible to have a composite layout like this?

2012-02-07 Thread Kostya Vasilyev
Doesn't GridView already have scrolling? On 02/07/2012 09:35 PM, John Davis wrote: Hello Is it possible to have a layout like this? Linear Layout - button - scrollview --- Gridview I.e. Linear layout at top with two children, button and scrollview. The scrollview has one layout inside

[android-developers] The apk must be signed with the same certificates as the previous

2012-02-07 Thread ets23
I'm trying to uploading an update of one of my apps, I've created a new project on eclipse starting from the old version of the app, the app use the same package and the same key for signing but I still get this error The apk must be signed with the same certificates as the previous how can I

Re: [android-developers] The apk must be signed with the same certificates as the previous

2012-02-07 Thread Mark Murphy
On Tue, Feb 7, 2012 at 12:39 PM, ets23 stefano...@gmail.com wrote: I'm trying to uploading an update of one of my apps, I've created a new project on eclipse starting from the old version of the app, the app use the same package and the same key for signing but I still get this error The apk

Re: [android-developers] is it possible to have a composite layout like this?

2012-02-07 Thread John Davis
You are correct sir! I did not realize that. Many thanks. On Tue, Feb 7, 2012 at 12:39 PM, Kostya Vasilyev kmans...@gmail.com wrote: Doesn't GridView already have scrolling? On 02/07/2012 09:35 PM, John Davis wrote: Hello Is it possible to have a layout like this? Linear Layout -

[android-developers] Re: Fail to connect to camera service - Camera.open();

2012-02-07 Thread Matt Clark
Anything? On Feb 7, 12:14 am, Matt Clark mrclark32...@gmail.com wrote: Even as hundreds of other have made them, i am trying my hand at a flashlight app. I have the basic GUI and widget working and toggling, and i just attempted to implement the actual flash from the phone. I have found many

[android-developers] Re: voice input for people with tremors (or large fingers)

2012-02-07 Thread James Hadley
Contact your favorite alternative keyboard developer and tell this to them. Can you recommend anyone? How about a contest? I mean, hear is a chance for fame by making Android more accessible :) Cheers, JH -- You received this message because you are subscribed to the Google Groups Android

Re: [android-developers] Re: voice input for people with tremors (or large fingers)

2012-02-07 Thread Kristopher Micinski
On Tue, Feb 7, 2012 at 1:24 PM, James Hadley hop1ju...@gmail.com wrote: Contact your favorite alternative keyboard developer and tell this to them. Can you recommend anyone? Your best bet would be to email the top people from Android keyboard searches on the market? kris -- You received

[android-developers] Re: voice input for people with tremors (or large fingers)

2012-02-07 Thread Matt Clark
https://market.android.com/details?id=com.jb.gokeyboard ^ My favorite keyboard. There are hundreds, but this is one of the largest that i have seen, and they offer a lot of different themes, so it may be just as easy as to have the develop a new theme for it. On Feb 7, 1:24 pm, James Hadley

[android-developers] Re: Questions re: strategies for improving your app's … user experience

2012-02-07 Thread HS Incubar
Thanks very much - and sorry for the late reply (was out of town w/o web access) Best, HSI On Feb 3, 3:51 pm, TreKing treking...@gmail.com wrote: On Tue, Jan 31, 2012 at 12:17 AM, HS Incubar haraldconr...@gmail.comwrote: Let's say I launch an app with a BETA label - purpose is to gain user

[android-developers] Re: when I tap the screen, it registers multiple taps, not just one...

2012-02-07 Thread cellurl
Thanks for that. I googled debounce. Also, in Android-developers, Still nothing... Q: should I use gestureDetector() or throw in some timeouts in the code I already have above?? I wrote that code a year ago, and thought there might be a better way by now ;-) Any leads appreciated! -cellurl --

Re: [android-developers] Shared Preferences

2012-02-07 Thread poncho
Hi, The code itself is fine except that you don't print the exception. If you would log the exception you can see (in the LogCat) that the run-time is throwing some kind of a ParseException. This is since users (usually) don't type 'L' at the end of their numeric input, even when it's long.

[android-developers] Why banned?

2012-02-07 Thread Robert Scott
When I try to log into android-developers I get a message that says I have been banned by the owner of the group. I think this must have been a mistake. I have always posted relevant and polite questions in this group. My most recent postings were about audio latency measurements and their

[android-developers] Re: when I tap the screen, it registers multiple taps, not just one...

2012-02-07 Thread skink
cellurl wrote: I tap the screen and it registers multiple-taps. It didn't do that on the emulator, but on a G1, if I tap once, it fires multiple times. Q: How do I get rid of the double taps? what double taps are you talking about? what's the logcat output? pskink -- You received

[android-developers] Re: Why banned?

2012-02-07 Thread Streets Of Boston
Maybe your account was hijacked or spoofed by someone else sending spam or other unwanted content. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from

[android-developers] Re: Why banned?

2012-02-07 Thread RLScott
In any case, it seems to have been fixed. I am no longer banned. In fact my first message was not meant to be posted. I thought I was sending to the owner of the group. I was surprised to see it in the public postings. On Feb 7, 3:38 pm, Streets Of Boston flyingdutc...@gmail.com wrote: Maybe

[android-developers] Re: Invert and entire Bitmap

2012-02-07 Thread JackN
I don't know if there is 'negative' function, but just go through the pixels and transform them to your desire. On Feb 7, 7:18 am, New Developer secur...@isscp.com wrote: Is there a process/function to invert the colors of an entire bitmap or canvas ? Not just a black and white image that

[android-developers] Re: mp3 works in browser but not in final APK

2012-02-07 Thread JackN
do you mean webview? if so, javascript needs to be enabled. why not just leave it as a web page? then anyone can hear your sounds. On Feb 2, 2:12 pm, jsterj jst...@gmail.com wrote: I'm working on a fairly simple web based app.  Basic functionality is push a button and hear a sound.  It's all

[android-developers] Re: how can access android phone (sdcard) on my computer browser via wifi ?

2012-02-07 Thread JackN
what's a computer browser? On Jan 30, 7:01 pm, ltvie ltvi...@gmail.com wrote: Hi everyone...!! I want to know,,how can access android phone (sdcard) on my computer browser via wifi ? for example,from my computer browser i can access android phone just type IP and port

Re: [android-developers] Re: how can access android phone (sdcard) on my computer browser via wifi ?

2012-02-07 Thread Kristopher Micinski
I'm assuming it's a file browser such as the file explorer on windows or nautilus on linux. But your post doesn't really seem to make sense according to this interpretation. You sound like you want to run a browser on the computer and run a server on the phone, which is just strange, what are

[android-developers] Activity By Intent with image changes

2012-02-07 Thread jabjab
I want to start a new Activity by Intent with a Button and replace the Image in an ImageView in the new Activity. Where, in the Intent (if its there it should be) do I put the replacement of the Image (the new one) when starting the Activity. The Image is in the drawable. Code:

[android-developers] How to receive/catch SIP MESSAGE

2012-02-07 Thread Beth
I am using SipDemo as a SIP softphone that's able to receive or make calls to another SIP client. I have a requirement that the SIP softphone is enabled to receive SIP message from a server. From the debug console ( LogCat ) I see the SIP MESSAGE been sent to the client, but my softphone is not

[android-developers] Re: In-App Billing always fails with “Reason: Took too long to deliver”

2012-02-07 Thread Dallas Gutauckis
I'm also seeing this issue with any card I test with, on any account I test with, and on any device I test with. http://stackoverflow.com/questions/9164013/in-app-billing-fails-with-took-too-long-to-deliver Quoted from SO: I am in the process of integrating In-App Billing in my application for

[android-developers] Calling WCF Restfull on android

2012-02-07 Thread Heladio Benicio
Hi all, Does anyone know how to call a wcf service restfull as parameter passing and receiving an object an object? Thank advance! -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

[android-developers] how to stop auto answer in android-application?

2012-02-07 Thread Juned Khan
Hello All, * When i am calling from my softphone (here i am using Twinkle as my softphone) it is automatic answered by the application. so how do i stop that? * am new to android and i want to develop a android based simple SIP application which can make and receive a call. For that

[android-developers] ScrollView in SYSTEM_TYPE_ALERT

2012-02-07 Thread Drew
I have an android app that displays an system alert from a service: WindowManager.LayoutParams params = new WindowManager.LayoutParams(WindowManager.LayoutParams.FILL_PARENT, WindowManager.LayoutParams.FILL_PARENT, WindowManager.LayoutParams.TYPE_SYSTEM_ALERT,

[android-developers] I've been making games for a while now but how do I make them successful?

2012-02-07 Thread Pedro Gabriel Fonteles Furtado
I have just released this game: https://market.android.com/details?id=monster.puzzle It has okay visuals, okay gameplay, I think it even hits some interesting key words. Yet it's not getting a lot of downloads. I used to think you need to hit popular key words to be successful in order to have

[android-developers] Re: Heyzap

2012-02-07 Thread Jude Gomila
If anyone wants to reach out to me, I'm one of the co founders of Heyzap and I'm happy to discuss the integration. Best On Jan 30, 10:03 pm, bob b...@coolfone.comze.com wrote: Has anyone here spent any time on integrating Heyzap? Is this worth it at all or not-so-much? Thanks. -- You

[android-developers] How to disable interactions on a FragmentPagerAdapter?

2012-02-07 Thread Amokrane
I have a ViewPager backed by a FragmentPagerAdapter and at a certain point I want to display a popup over that ViewPager, hence disabling all the interactions on it. Usually, when using a ListView or a GridView this is done by overriding the areAllItemsEnabled() method of the backing adapter,

[android-developers] Application to allow selected application to connect to the internet via 3G

2012-02-07 Thread Nwanna Anthony
I have successfully written the android code that will totally disable 3G on a device. What I want to do next is to edit the code so that only selected application can access the internet via 3G while others cannot. My application is just like the Droid wall but with some difference. I have

[android-developers] Re: SDK Manager won't launch

2012-02-07 Thread broderix
I confirm that! I also got parsesdkcontent failed error, that couldn't load sdk On 6 фев, 00:48, hhenault hmhena...@gmail.com wrote: Hello Android developpers, since several days, when I try to launch the SDK manager, I get the following set of error messages:

[android-developers] GPS - SMS - Mock Location

2012-02-07 Thread Hohorlan B
I have this code for my project. (Not mine, but I revised it so it will suit my needs.) http://pastebin.com/Tn4guLNR My Project is about a specific GPS hardware that will send GPS position to the Android Phone. The phone will have to display the location via Offline maps like mapdroyd. This

[android-developers] ScrollView in SYSTEM_TYPE_ALERT is blurred

2012-02-07 Thread Drew
I have an android app that displays an system alert from a service: WindowManager.LayoutParams params = new WindowManager.LayoutParams(WindowManager.LayoutParams.FILL_PARENT, WindowManager.LayoutParams.FILL_PARENT, WindowManager.LayoutParams.TYPE_SYSTEM_ALERT,

[android-developers] Re: Using ViewPager with dynamic view sets

2012-02-07 Thread HeneryH
tatebn, did you ever solve this problem? I have been going crazy trying to dynamically add views to a viewpager based on database items. If I find one more sample with three statically defined views each adding a textview with the index I will go crazy! -- You received this message because

[android-developers] Unable to connect Oracle database

2012-02-07 Thread indumathy raju
Hi all, I'm new to android application. I'm trying to access oracle database from my application. Below is my code for my database connectivity. I'm unable to connect. i put ojdbc14.jar in class path also. but getting class not found error in log cat. I'm using android 1.6. can anybody help to

[android-developers] Calling WCF Restfull

2012-02-07 Thread Heladio Benicio
Hi all, Does anyone know how to call a service rest post parameter passing an object as an object and getting in return? thank you! -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

Re: [android-developers] Re: Source not found/ArrayAdapter

2012-02-07 Thread Dallas Gutauckis
Try moving your call to setContentView before the call to findViewById. If you don't have layout, findViewById won't find a view. I'm assuming your NPE is on that spinner.setAdapter(...) line. On Mon, Feb 6, 2012 at 22:30, Ozone Apps ozoneforandr...@gmail.com wrote: Sorry for being so vague the

[android-developers] Re: Can't get cursor position from InputConnection

2012-02-07 Thread Frank Chun Yat Li
I am wondering the same thing. How would anyone use the setComposingRegion or setSelection without knowing the current cursor position? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

[android-developers] Memory usage details in Taskmanager

2012-02-07 Thread avinash kumar
Hi, My RAM usage memory in TaskManager shows two values.What do those two values signify? Are they the numbers for Total free memory/Total memory or Used memory/ Total memory? Also when I do a cat /proc/meminfo, the memory usage details that I get are very much different to the one in Task

[android-developers] Open Source Android Project

2012-02-07 Thread armors...@live.com
Hello , I'm looking for open source Android Projects. Let me know if you have one please. I made available a restaurant menu system here http://wileynet.com/open-source-projects/ open source. It's also in the app store search for Eat Dude. -The web app is hosted on Google app engine. Google

[android-developers] Android ICS: Default browser not respecting meta viewport tags

2012-02-07 Thread santa
In our android webapp for tatgeting various screens of andorid deive, we use the following meta view port tag for scaling based on device viewport scale meta name=viewport content=target-densitydpi=high-dpi; width=device-width; minimum-scale=1.0; maximum-scale=1.0; user- scalable=0; But in

[android-developers] SSL/TSL Over Android 2.1

2012-02-07 Thread Yonatan Romero
I attempt to connect to my web-site with a self-signed certificate. I received a SSLException (Not trusted server certificate) because my website doesn't have a trust certificate. So I try to connect to others safe-web-pages witch has certificates signed by CA authorities like Verisign, Thawte,

Re: [android-developers] voice input for people with tremors (or large fingers)

2012-02-07 Thread Megan Clark
There is an app called Vlingo Virtual Assistant -- I'm not sure it will help but it might save your brother some frustration until someone comes up with something more accessible. I played with it on my phone a few months ago, but I can't remember much about it other than nice voice utility and

[android-developers] Removing Lock Screen

2012-02-07 Thread mgah
Hello Developer team, I am trying to remove the lock screen completely from the phone. My goal is start the phone in the home screen when it boots up instead of starting on the lock screen. Can you help me with this? Thanks in advance. -- You received this message because you are subscribed

[android-developers] imgButton and weight at runtime

2012-02-07 Thread pidduweb
HI all, i want to set at runtime the weight of a imagebutton, but there isn't a method setWeight, any one can help me? Thanks Rocco -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

[android-developers] Re: Source not found/ArrayAdapter

2012-02-07 Thread drac94
Source Not Found means you haven't linked the Android source code into Eclipse, and you are trying to step into that code. The debugger can't step into it if the source isn't available to it. So, that is not the real problem for your spiner. Check the log cat and try to locate the first error

[android-developers] Return the status program of Suspended to Published

2012-02-07 Thread dvpt
Hi! For violations of the agreement is suspended a program to run in the Android Market. It's a shame of course. By not knowing. Can Android Market program to return the status of Suspended to Published? The best regards -- You received this message because you are subscribed to the Google

[android-developers] Debug Android code from Dreamweaver 5.5 in my device

2012-02-07 Thread publ...@emdr-es.com
I am programming Android apps with Jquery mobile in Dreamweaver 5.5 but only can run the apps via AVD manager. The AVD emulator its so slow ! How can i run apps directly in my phone UBS connected? Could create a new AVD as my phone in AVD Manager? Thank you ! -- You received this message

[android-developers] Multi-choice alert dialog

2012-02-07 Thread Juxtenia
As part of an app I'm writing I've got to get a multi choice dialog where the user can select people who are travelling on a holiday. However when i try to initiate this dialog it never appears and if I try to do anything else I get ANR. The initialising code in the onCreateDialog(int id) method

[android-developers] Re: Documentation for the Android/Google TV YouTube player parameters

2012-02-07 Thread Wiktor Gworek
Just fire VIEW intent for YouTube url. That is http://www.youtube.com/watch?v=VIDEO_ID. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group,

[android-developers] How to use Google Map API for Android with the offline catch of map

2012-02-07 Thread King Leung
Hello, may I ask a question: How to use Google Map API for Android with offline map catch? Because our application will use in this nonetwork places, we must pre download the offline catch of map. If it's only supply for enterprise, and what is the price for it, and what is the contact? I'm in

  1   2   >