[android-developers] Re: New Android Market Client Update

2010-12-12 Thread Pent
Users can pay though Google Checkout or Paypal and you keep almost 100% of the money (minus ~2% transaction fee). It's also not limited to the 29 country Android market is currently limited to. That's against the terms of the Developer Agreement, otherwise clearly it would be stupid not to

[android-developers] Re: New Market app sneak peak (unverified)

2010-12-12 Thread Pent
Very much looking forward to what they do come up with. You must be new here :-) Pent -- 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] Newbie having trouble launching new activity, application stops unexpectedly

2010-12-12 Thread vtb
New to programming in Android and having trouble launching a video to play activity. I am pulling what remains of my hair out so any help or advice would be greatly appreciated as I have tried all sorts and scanned the net for days bu have not come up with the answer and I bet it's a simple

[android-developers] Re: Problem with the new SDK r08 on linux

2010-12-12 Thread Dudero
Sorry guys - of course my fault ;-) I have not installed ia32-libs. But this is required for running the SDK on x64 linux platforms. -- apt-get install ia32-libs Regards, Dudero On 9 Dez., 15:07, Dudero sinfanh...@googlemail.com wrote: Hello Guys, I have downloaded the new release of SDK:

[android-developers] Re: Eclipse ADT 8.0.0 (and 8.0.1) problem - can't create views hierarchy with drag and drop in the Outline view

2010-12-12 Thread oriharel
no. they are not in 8.0.1 also. On Dec 10, 5:11 am, Zarah zarahj...@gmail.com wrote: I think Undo (CTRL+Z on Windows) works when you are in the XML view of the Layout Editor (not on the graphical view). Are the up/down arrows still not back on the 8.0.1? I want my up/down arrows! :) -

Re: [android-developers] Newbie having trouble launching new activity, application stops unexpectedly

2010-12-12 Thread Mark Murphy
XML is case-sensitive. Your second activity has an Activity element, not an activity element. Also, your path to your video file is doubly incorrect. What you have in there now is a reference to a file on your development machine, which is not valid for the emulator or the device. The path you

Re: [android-developers] Problem with new market and supporting screens?

2010-12-12 Thread Mark Murphy
The new XML tags (compatible-screens and uses-gl-texture or whatever that second one was) are for an upcoming version of Android. There is no point having in having those tags in there now, considering that we do not know what they look like. The uses-screens element is important, though. On

Re: [android-developers] Newbie having trouble launching new activity, application stops unexpectedly

2010-12-12 Thread Kostya Vasilyev
activity tag should not start with a capital letter. Beyond that, check the logcat (run adb logcat on the development computer, see what it says if you still get errors). -- Kostya 12.12.2010 14:29, vtb пишет: Activity android:name=.Videos

Re: [android-developers] Problem with new market and supporting screens?

2010-12-12 Thread Kostya Vasilyev
I wonder if it'll be necessary to build with Android 2.3 to use these new tags, or just using a recent version of ADT will work too. -- Kostya 12.12.2010 15:02, Mark Murphy пишет: The new XML tags (compatible-screens anduses-gl-texture or whatever that second one was) are for an upcoming

Re: [android-developers] Problem with new market and supporting screens?

2010-12-12 Thread Mark Murphy
These tags do not exist in Android 2.3. Ms. Hackborn has indicated that they will exist in a future version of Android, and my guess is that means Honeycomb. That being said, you might need to target Honeycomb to get the ADT support for those tags at that time -- I don't use Eclipse enough to

[android-developers] Re: Gamine 0.3 (3D game engine)

2010-12-12 Thread Emmanuel
This is correct,you need to let the user being able to relink your application. But it usually means that you are using dynamic linking ( such as dll or jar on classic java programs ). Linking with .jar on Android is done at compilation time : in a dezipped .apk, there is no more separated jars,

[android-developers] Re: compatible-screens and uses-gl-texture ?

2010-12-12 Thread Phil Endecott
On Dec 12, 12:46 am, Dianne Hackborn hack...@android.com wrote: On Sat, Dec 11, 2010 at 4:17 PM, Phil Endecott spam_from_goo...@chezphil.org wrote: If you can describe supported texture formats, I would think this is very similar, no? Not really, because texture formats are very clear --

[android-developers] Last night I posted question in this group and it is gone???

2010-12-12 Thread bobetko
Is it gone or actually it never appeared because it was not approved. Is there some moderation process behind the scene? If it is, I would love to be let known that my question is thrown into junk. This is really annoying. It happened to me before. I actually thought I was drunk or so, so maybe I

[android-developers] Re: unable to set gps geo fix

2010-12-12 Thread doles
Hello, I am slowly coming to the conclusion that the ddms ping problem might be something that I could ignore because that command is only to find out if the emulator has started to run. I am not sure though, so i am going to focus on my gps problem for now and here is some extra information:

Re: [android-developers] Last night I posted question in this group and it is gone???

2010-12-12 Thread Kostya Vasilyev
I can see it, as well as TreKing's reply. I am using Thunderbird to read this group over email (POP3). It's also in the android-developers group archive if you do a Google web search: http://www.google.com/search?q=onSaveInstanceState+problem+while+making+oAuth+request However, Goolge

Re: [android-developers] Re: compatible-screens and uses-gl-texture ?

2010-12-12 Thread Dianne Hackborn
The feature expression is I need X, and Y, and Z. Maybe in the future there will be ways to express greater than, and A or B... but on the other-hand, making this so complicated has a lot of pit falls as well. On Sun, Dec 12, 2010 at 5:45 AM, Phil Endecott spam_from_goo...@chezphil.org wrote:

Re: [android-developers] Re: compatible-screens and uses-gl-texture ?

2010-12-12 Thread Dianne Hackborn
(And we really see this as as stop-gap -- ideally, for example, there would be a standard texture format that you can count on being supported.) On Sun, Dec 12, 2010 at 7:53 AM, Dianne Hackborn hack...@android.comwrote: The feature expression is I need X, and Y, and Z. Maybe in the future

Re: [android-developers] onSaveInstanceState problem while making oAuth request

2010-12-12 Thread Dianne Hackborn
You really haven't posted enough to help, but if you are starting an activity you can pretty much count on onSaveInstanceState() being called before the next one even starts. Of course you can do things to prevent this, such as calling finish() so your state won't need to be saved, using certain

[android-developers] Re: Last night I posted question in this group and it is gone???

2010-12-12 Thread bobetko
Thanks. You are right. I can find it if I search Google for onSaveInstanceState problem while making oAuth request. But if I search this group, I can't. Also, if I search group for all posts done by me it's not showing again. Weird... But thanks. On Dec 12, 9:41 am, Kostya Vasilyev

[android-developers] Re: onSaveInstanceState problem while making oAuth request

2010-12-12 Thread bobetko
I thought about that. But, then another question come to my mind. Why wouldn't I always use SharedPreferences to save my activity state? For example: I passed groupID and itemID values into activity. In onCreate, I save both values to SharedPreferences. Latter, when activity is restarted (for any

Re: [android-developers] Problem with new market and supporting screens?

2010-12-12 Thread Dianne Hackborn
I would generally recommend people do NOT use the compatible-screens feature. It is there for a very specific purpose (I assume the documentation will describe this), but for most apps it will cause more harm than good. supports-screens is still the recommended approach, as it follows the model

Re: [android-developers] Re: Notification assistance.

2010-12-12 Thread Dianne Hackborn
On Sat, Dec 11, 2010 at 9:03 PM, DanH danhi...@ieee.org wrote: In Android the same basic function is accomplished with intents. Well. If this is all just in your app, I would generally just recommend doing normal direct callbacks. There isn't a generic local callback registry API in Android,

[android-developers] Re: onSaveInstanceState problem while making oAuth request

2010-12-12 Thread bobetko
Thanks Dianne, I've look at logs and my app is crashing because my RowID value is null. RowID is record ID that is needed to query sqlite database. I could post here all my code, but I doubt it would be very useful... I'll try explaining better with some code snippets: This is what I execute

Re: [android-developers] Re: onSaveInstanceState problem while making oAuth request

2010-12-12 Thread Dianne Hackborn
onResume runs first then onCreate -- that is not typical. Either your activity is being restarted (due to a configuration change) or you have a new instance created. Also what do you mean by Twitter sends Intent (with token and secret) back to my activity? Do you mean it is using setResult()?

[android-developers] Eclipse builds suddenly broke

2010-12-12 Thread DulcetTone
My project was building fine yesterday, but after I downloaded the 2.3 SDK and updated some Eclipse components, it broke HARD. .AIDLs do not even try to compile Resources are never compiled (e.g., from values/strings.xml) Are there any known issues with the latest Eclipse/Android bits? tone --

[android-developers] Re: compatible-screens and uses-gl-texture ?

2010-12-12 Thread Phil Endecott
On Dec 12, 3:53 pm, Dianne Hackborn hack...@android.com wrote: The feature expression is I need X, and Y, and Z. Maybe in the future there will be ways to express greater than, and A or B... but on the other-hand, making this so complicated has a lot of pit falls as well. Don't

[android-developers] WiFi Problem

2010-12-12 Thread peeyush varshney
Dear All, I have installed ubuntu 10.4. I am trying hard to access internet using WiFI connection. Can somebody tell me how to do enable WiFi access on ubuntu. -- Thank Regards Peeyush Varshney -- You received this message because you are subscribed to the Google Groups Android Developers

[android-developers] Re: Last night I posted question in this group and it is gone???

2010-12-12 Thread DanH
Basically, Google Groups sux. Things come and go and change order with considerable randomness. On Dec 12, 9:13 am, bobetko bobe...@gmail.com wrote: Is it gone or actually it never appeared because it was not approved. Is there some moderation process behind the scene? If it is, I would love

[android-developers] Re: onSaveInstanceState problem while making oAuth request

2010-12-12 Thread bobetko
Sorry. Yes. You are right. onCreate runs first, then onResume next. (I am still learning about Android activity cycle :-) Here is my onResume method that handle this data that comes from Twitter. See lines 5 and 6. If 6 is true I am extracting token and secret and saving them to SharedPreferences.

Re: [android-developers] Re: compatible-screens and uses-gl-texture ?

2010-12-12 Thread Dianne Hackborn
On Sun, Dec 12, 2010 at 8:54 AM, Phil Endecott spam_from_goo...@chezphil.org wrote: Don't overcomplicate it. 99% of reqirements are satisfied by and greater than, i.e. I need = 4 user clip planes and = 3 texture units. Don't let the theoretical possibility that someone might want to say I

Re: [android-developers] Re: onSaveInstanceState problem while making oAuth request

2010-12-12 Thread Dianne Hackborn
It is unlikely this has anything to do with saving and restoring instance state, unless a configuration change is happening or your process is being killed in the background. If you are saying that you are seeing onCreate() called, then again I think you should consider that you actually have a

Re: [android-developers] Problem with new market and supporting screens?

2010-12-12 Thread Brill Pappin
Really what I'm concerned about is having to build with a future version of the UI and having my 2.1 users excluded. Since Eclipse validates the XML, I've had a few problems adding elements for for 2.2 in a 2.1 build. I still want the 2.2 elements for those using it, but it needs to fail

[android-developers] Re: New Market app sneak peak (unverified)

2010-12-12 Thread Brill Pappin
laugh Yah, so I hear :) -- 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+unsubscr...@googlegroups.com

[android-developers] Re: Gamine 0.3 (3D game engine)

2010-12-12 Thread Peter Eastman
Do you have a suggestion for a different license? I don't want to create any obstacles to using it in commercial games, but I do want to make sure that if someone improves the library itself, those improvements will be released as open source. Ps: by the way I tried you game : it's nice but I

[android-developers] Re: Eclipse builds suddenly broke

2010-12-12 Thread DulcetTone
This turned out to be caused by the new requirement that multiple formatting marks in a string/string be numbered. More here: http://developer.android.com/guide/topics/resources/string-resource.html Tony On Dec 12, 11:45 am, DulcetTone dulcett...@gmail.com wrote: My project was building fine

[android-developers] Re: Gamine 0.3 (3D game engine)

2010-12-12 Thread Emmanuel
Do you have a suggestion for a different license?  I don't want to create any obstacles to using it in commercial games, but I do want to make sure that if someone improves the library itself, those improvements will be released as open source. I'm not sure. Someone on the AndEngine blog (

[android-developers] Re: How to make a trial version which starts a limited amount of times?

2010-12-12 Thread Michael A.
Definitely. The comments above are still relevant, though. On Dec 11, 11:25 am, Eyvind Almqvist eyv...@mobile-visuals.com wrote: I got a mail from Android market, where they wrote: We will be reducing the purchase refund window to 15 minutes. So I assume that 24 hour refund is no longer

[android-developers] Re: Newbie having trouble launching new activity, application stops unexpectedly

2010-12-12 Thread vtb
Thanks, the capital A in the XML file fixed my issues, the hard coding of the path was a temporary measure to allow me to quickly test on my device. I have now recoded the bad parts and everything is working fine. It's a shame that no error was reported in the compile. Thank you very much for

[android-developers] Re: Notification assistance.

2010-12-12 Thread Phil Endecott
Hi Damien, On Dec 12, 4:13 am, Damien Cooke cooke.dam...@gmail.com wrote: In ios I can post notifications that can be listed for by other objects. Write your own replacement. On iOS I use my own simple notification system, because Apple's version is overcomplicated. For most cases it's almost

[android-developers] Re: Gamine 0.3 (3D game engine)

2010-12-12 Thread Mario Zechner
We switched from LGPL to Apache 2 for exactly that reason in libgdx. I'd recommend using it for your engine. Looks neat btw, keep up the good work! On 12 Dez., 19:24, Emmanuel emmanuel.ast...@gmail.com wrote: Do you have a suggestion for a different license?  I don't want to create any

[android-developers] Re: layout editor in 2.3 SDK sucks! Sorry but it does.

2010-12-12 Thread Tim H.
You say nothing was changed? I have an issue where I can no longer right click and add views or layouts from the Outline window - and the add, move up/down buttons have been removed. Is this a bug - or was this intentional? The current drag-and-drop method makes it practically impossible for me

Re: [android-developers] Re: layout editor in 2.3 SDK sucks! Sorry but it does.

2010-12-12 Thread Frank Weiss
Just a thought... I wonder if any of the developers who are passionate about using the notoriously buggy ADT layout editor might consider being passionate about contributing to its development. Correct me if I'm wrong, but the ADT is an open source project, right? -- You received this message

[android-developers] Re: Adapter fetches and parses RSS feed to get its data - best practice?

2010-12-12 Thread Bob Kerns
This single responsibility thing is often misinterpreted as single bit of functionality, I fear. It's as much about clarity of role as anything. If adding functionality to an object blurs the lines of what that object does, than you are undermining the abstraction. If it takes 3 pages to describe

Re: [android-developers] Re: Last night I posted question in this group and it is gone???

2010-12-12 Thread TreKing
On Sun, Dec 12, 2010 at 10:00 AM, bobetko bobe...@gmail.com wrote: But if I search this group, I can't. Also, if I search group for all posts done by me it's not showing again. Weird... The online interface to Google Groups is useless (supposedly it's getting a revamp). I highly recommend you

[android-developers] Re: layout editor in 2.3 SDK sucks! Sorry but it does.

2010-12-12 Thread Bob Kerns
Well, that's the only thing you changed about the properties, but hardly the only thing you changed. It took me a while to figure out how to arrange things in a relative view. THAT has certainly changed! For the better, certainly -- but it is very hard to figure out. It's hard to figure out why

Re: [android-developers] Problem with new market and supporting screens?

2010-12-12 Thread TreKing
On Sun, Dec 12, 2010 at 11:10 AM, Brill Pappin br...@pappin.ca wrote: Since Eclipse validates the XML, I've had a few problems adding elements for for 2.2 in a 2.1 build. You should be building against the latest platform version you plan to support. When it runs on a device with an older

[android-developers] Re: layout editor in 2.3 SDK sucks! Sorry but it does.

2010-12-12 Thread Bob Kerns
I thought I had this issue. But it turned out to be that I didn't know how to use the new RelativeLayout functionality. You can't just drop the new view anywhere, you have to drop it onto the specific locations that indicate what relationship the new view should have to what's there. Including

[android-developers] Re: Making an activity private to application

2010-12-12 Thread Shyam
Hi Dianne Hackborn, thanks for that. I will give it a try tomorrow. Reg Shyam On Dec 11, 7:02 pm, Dianne Hackborn hack...@android.com wrote: Just use android:exported=false to ensure it is not public. On Fri, Dec 10, 2010 at 11:09 PM, Doug beafd...@gmail.com wrote: If your activity

[android-developers] Re: compatible-screens and uses-gl-texture ?

2010-12-12 Thread Mario Zechner
I think the only thing needed is a manifest tag that let's you specify the OpenGL ES profile you want to work have available. That feature is already there but it seems some devices don't report it correctly. Everything else can and should be checked at runtime. That's what the extension string

[android-developers] Re: Gamine 0.3 (3D game engine)

2010-12-12 Thread Peter Eastman
I don't think Apache requires people to release their improvements to the library? I'd prefer to have a license that does that. But if people object seriously to LGPL, and if I can't find a different one that does that, I'll probably just go to BSD, which imposes almost no restrictions at all.

[android-developers] Re: layout editor in 2.3 SDK sucks! Sorry but it does.

2010-12-12 Thread Tim H.
I do understand how the new system works.. Re: no longer being able to add views - I know that it has to be at specific locations, but when there is only a single RelativeLayout present, I should be able to add a button via alignParentLeft/Right/ Top/Bottom - it would not allow me to do that

[android-developers] multiple threads problem, possible memory leak

2010-12-12 Thread Rustam Kovhaev
Hello there, I have a service from which I constantly call another service(lets call it B service), the problem is that in B service I have looper which processes two Runnables and when I stop B service, thread stays running, wouldn't die and when I call B service again I have two thread already

[android-developers] Re: multiple threads problem, possible memory leak

2010-12-12 Thread Rustam Kovhaev
scratch that, I am simply tired for today ^) //service on destroy public void onDestroy() { handler.getLooper().quit(); } 2010/12/13 Rustam Kovhaev rkovh...@gmail.com Hello there, I have a service from which I constantly call another service(lets call it B service), the problem is that in

[android-developers] Notification ringtone keeps on repeating.

2010-12-12 Thread Harry Hazlehurst
Hello everyone, Wonder if anyone could shed some light/recommend a solution to this problem. In my app I use a notification type ringtone to notify users. I use ringtone.play(); to play this. This works fine on my G1 (running 1.6) but on my T-Mobile Pulse (1.5) the notification ringtone is

[android-developers] Layout templates repository

2010-12-12 Thread vnv
Hi, are there any layout template repository? In general it would be good if there ain't one to make one. It would be collection of standard template designs that could be used in application development. There are many situations that are common patterns, like dialogs, password form and such.

[android-developers] Re: compatible-screens and uses-gl-texture ?

2010-12-12 Thread Zsolt Vasvari
Most drivers have horrible problems and manufacturers don't give a damn. They will if gaming on Android takes off and the bad drivers prevent their phones from getting a piece of the gaming pie. -- You received this message because you are subscribed to the Google Groups Android Developers

Re: [android-developers] Re: compatible-screens and uses-gl-texture ?

2010-12-12 Thread Dianne Hackborn
On Sun, Dec 12, 2010 at 1:14 PM, Mario Zechner badlogicga...@gmail.comwrote: I think the only thing needed is a manifest tag that let's you specify the OpenGL ES profile you want to work have available. That feature is already there but it seems some devices don't report it correctly. Yeah

[android-developers] Re: Auto android:debuggable. Anybody got it working?

2010-12-12 Thread Zsolt Vasvari
Good to know that it's broken and not me. Thanks. On Dec 12, 9:36 am, Emanuel Moecklin 1gravity...@gmail.com wrote: Doesn't work for me either -- 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] Problem with new market and supporting screens?

2010-12-12 Thread Dianne Hackborn
On Sun, Dec 12, 2010 at 9:10 AM, Brill Pappin br...@pappin.ca wrote: Really what I'm concerned about is having to build with a future version of the UI and having my 2.1 users excluded. Since Eclipse validates the XML, I've had a few problems adding elements for for 2.2 in a 2.1 build. You

[android-developers] Proguard problem after 2.3 update

2010-12-12 Thread jtoolsdev
I updated the android 2.3 and when I try to run the proguard builds that worked before am getting this: /add-proguard-release.xml:35: Problem: failed to create task or type proguard Cause: The name is undefined. Action: Check the spelling. Action: Check that any custom tasks/types have been

[android-developers] Re: In-App payment options

2010-12-12 Thread JP
There's probably a few options, including these guys: http://www.boku.com/ I ran into one of their staff a couple of weeks ago and asked what their position on distributing in-app payment based apps in Android Market was. That that was walking a thin line was acknowledged but basically they

[android-developers] Re: Adapter fetches and parses RSS feed to get its data - best practice?

2010-12-12 Thread DanH
You're preaching to the choir, mostly. I've been in the biz for 40 years and pretty much can program in my sleep. As you say, do the simplest thing is generally the best approach. Another rule of thumb is to minimize connections (in the form of interfaces and parameters). If slicing a project

[android-developers] Re: Proguard problem after 2.3 update

2010-12-12 Thread Zsolt Vasvari
You cannot use your pre-2.3 files. You basically need to renerate using android update/ On Dec 13, 9:26 am, jtoolsdev brianjto...@gmail.com wrote: I updated the android 2.3 and when I try to run the proguard builds that worked before am getting this: /add-proguard-release.xml:35: Problem:

Re: [android-developers] Problem with new market and supporting screens?

2010-12-12 Thread Brill Pappin
Ok, maybe I'm mistaken on this then. I thought I ran into a problem supporting the install location tag where it would not allow me to use it in a 2.1 build. It may be that I needed to update my SDK (which has now been done recently). I'll check it again and report back here if that still the

[android-developers] Re: Proguard problem after 2.3 update

2010-12-12 Thread jtoolsdev
The android update project --path project was done and it updated. Since I do this infrequently I keep a text file with the instructions handy. This seems to be some problem that the proguard.dir var no longer works the same way it did before. IOW, previously it pointed to:

[android-developers] EditText and auto-complete/correct

2010-12-12 Thread Raymond Rodgers
Off and on for months now, I've been trying to figure out how to get the on-screen keyboard to list the auto-complete/correct choices above the keyboard for various EditText views that I've used, and I haven't had any luck. Right now I'm creating it as: EditText android:id=@+id/alarmMemo

[android-developers] Dynamically reading drawable file names

2010-12-12 Thread darrinps
Is there any way for an Android app to read the file names of all the files stored under drawable (or for that matter any other directory)? I'd like to have it so I can plop in a new file and have the app read the name for me for use in a dynamically sized list of radio buttons (one button per

[android-developers] How can I use A-GPS

2010-12-12 Thread Kenneth WON
Dear all, As title, I want to know how can I use the A-GPS service in my app. I know a way to use GPS, like: locationMgr.requestLocationUpdates(LocationManager.GPS_PROVIDER, 3000, 0, this); but I have no idea to use A-GPS. Thank and Regards, Kenneth -- You received this message because you

[android-developers] How to communicate between Activities/Services

2010-12-12 Thread Jiang
Once some specific event occurs, such as app is expired, I need to inform all active Activities/Services,  is there any good way to implement such communication? Currently, I use Broadcast, but some guys said it is expecsive. Thanks. -Jiang -- You received this message because you

[android-developers] which applications the user can install

2010-12-12 Thread Nitin Mahajan
Hello, I have some queries regarding app installation on a Android devices. I did got though the link http://developer.android.com/guide/publishing/app-signing.html#cert. 1. Is there a way to control which applications can get installed on a particular device? I mean apps signed with a

[android-developers] New error in the Market

2010-12-12 Thread Zsolt Vasvari
In thousands of sales, I've never seen this one: You cancelled this order. Reason: Other (describe below) Message sent to customer: Order canceled due to internal error in Market. Since the buyer hasn't repurchased, I hate to think that I've lost a sale due to an internal error. The Market

[android-developers] Re: which applications the user can install

2010-12-12 Thread Nitin Mahajan
In cryptography terms I want to achieve Confidentiality as well as Authenticity both with .apk installation. Please let me know if that is possible without, modifying android code. Is there a way to sign a application with multiple keys? One key which is developers private key and another which

[android-developers] Re: Proguard problem after 2.3 update

2010-12-12 Thread Zsolt Vasvari
I've had the same problem and solved it, but I don't remember exactly what I had done. I tried so many things, that I don't remember what fixed it. I do remember doing the android update, which is why I mentioned it. On Dec 13, 11:13 am, jtoolsdev brianjto...@gmail.com wrote: The android

Re: [android-developers] EditText and auto-complete/correct

2010-12-12 Thread TreKing
On Sun, Dec 12, 2010 at 10:16 PM, Raymond Rodgers raym...@badlucksoft.comwrote: But I'm not getting the auto-complete or autocorrect options. Is there something I'm missing? Do I need to connect it to a dictionary, and if so how?

Re: [android-developers] New error in the Market

2010-12-12 Thread TreKing
On Sun, Dec 12, 2010 at 10:49 PM, Zsolt Vasvari zvasv...@gmail.com wrote: Since the buyer hasn't repurchased, I hate to think that I've lost a sale due to an internal error. I haven't seen that error (though I don't really at them too closely). But given how many people have been complaining

[android-developers] Re: layout editor in 2.3 SDK sucks! Sorry but it does.

2010-12-12 Thread stanchat
The new Layout Editor is also giving me problems. I'm trying to add a Linear Layout as the child of another linear layout and then add a textview and button. I'm having a hard time doing that with the new editor. I miss the big + and - along with the arrow keys to move views up and down. Is

Re: [android-developers] EditText and auto-complete/correct

2010-12-12 Thread Raymond C. Rodgers
Thanks, but that's not quite what I'm referring to. I've gotten AutoCompleteTextView to work with items I have in a database, but I'm meant something more akin to this: http://betterandroid.files.wordpress.com/2009/07/preditcive-text.png?w=320h=480 . On 12/12/2010 11:57 PM, TreKing wrote: On

Re: [android-developers] Re: New Market app sneak peak (unverified)

2010-12-12 Thread brian purgert
Lmao pent just summed up 2 years in one line On Dec 12, 2010 5:51 AM, Pent tas...@dinglisch.net wrote: Very much looking forward to what they do come up with. You must be new here :-) Pent -- You received this message because you are subscribed to the Google Groups Android Developers

Re: [android-developers] Re: which applications the user can install

2010-12-12 Thread Dianne Hackborn
A third party application can't impose less or more restriction than the platform's signing rules, which I believe are documented in the SDK documentation. You should not sign an app with multiple certs. Only use one. On Sun, Dec 12, 2010 at 8:49 PM, Nitin Mahajan np.maha...@gmail.com wrote:

Re: [android-developers] Problem with new market and supporting screens?

2010-12-12 Thread Dianne Hackborn
On Sun, Dec 12, 2010 at 6:48 PM, Brill Pappin br...@pappin.ca wrote: I thought I ran into a problem supporting the install location tag where it would not allow me to use it in a 2.1 build. It may be that I needed to update my SDK (which has now been done recently). android:installLocation

[android-developers] Data Warehousing,SAP,Testing,Microsoft Technologies,Oracle,SAS Online Training at BigClasses.com

2010-12-12 Thread big class
Knowledge doesn’t comes easily. It comes through cost, efforts and last of all but not least through a skilled craftsman. I represent Bigclasses. Bigclasses.com is a global online IT training company. We offer virtual online training on all major IT Technologies Like SAP/ Oracle/Data WH/Testing

[android-developers] Re: How to communicate between Activities/Services

2010-12-12 Thread Kenneth WON
Hi, Jiang How can I implement it as program code? Thanks! Kenneth On 12月13日, 下午12時32分, Jiang webs...@yahoo.cn wrote: Once some specific event occurs, such as app is expired, I need to inform all active Activities/Services,  is there any good way to implement such communication? Currently,

[android-developers] Re: New Market app sneak peak (unverified)

2010-12-12 Thread Zsolt Vasvari
Basic stuff: You know the little window on the upper right of Payout screens. It shows a line Previous Month Sales, but there is absolutely no way to drill down to see how they came up with the number. Yesterday I was trying to reconcile it, but, for the life of me, I couldn't come up with the

[android-developers] Flickering with keyboard animation

2010-12-12 Thread DH
Hi all, I'm trying to pop up a view in place of the soft keyboard, so I add a layout to my content view and set it to invisible when the soft keyboard is shown, and then set the layout to be visible when I want to hide the keyboard and display my view. Problem right now is whenever I set my

[android-developers] Re: How to communicate between Activities/Services

2010-12-12 Thread deepak
Hi Kenneth, The A-GPS service will be by default enabled in your phone. I mean it will be pre-configured to a specific server address. The Android framework goes for A-GPS by default unless you are in airplane mode or data connection is not available. So, your app will be using A-GPS by default

[android-developers] RIL-deamon not getting started

2010-12-12 Thread lavanya
Hi all, I'm involved in up-gradation from Eclair to Froyo where on entering ps command ril-daemon is listed by unable to access this service. Currently Stkservice is blocked. The logs for which is provided below I/PHONE ( 1389): Network Mode set to 4 I/PHONE ( 1389): Cdma Subscription set to

[android-developers] Re: multiple threads problem, possible memory leak

2010-12-12 Thread fernando
Hi It might be the case to use a stick service and keep the thread running. Refer the SyncManager service from the AOSP email application. Hope it helps On Dec 12, 2:31 pm, Rustam Kovhaev rkovh...@gmail.com wrote: scratch that, I am simply tired for today ^) //service on destroy public void

[android-developers] Re: Beginner questions

2010-12-12 Thread Muhammad Ali
Hi, You should set the JAVA_HOME variable and set the path for the JAVA_HOME\bin in your path variable. In my opinion you should use Eclipse becoz it reduce your manual effort for the building and setting the environment and commands. Yours Sincerely, Muhammad Ali Hassan On Dec 10, 1:51 

[android-developers] what is the source version at the source.android.com website?

2010-12-12 Thread goodwin
I use git clone the IM application from the source website. many errors in source code. many obect methods are not in the sdk of above 1.5. for example Cursor Cursor c = mContentResolver.query(mMessageURI, projection, selection, new String[]{Integer.toString(Imps.MessageType.POSTPONED)},

RE: [android-developers] layout editor in 2.3 SDK sucks! Sorry but it does.

2010-12-12 Thread hanika
hi Thanks Regards, cid:image002.jpg@01CA2AEF.10F60770 Vijay Patel Test Engineer Elitecore Technologies Ltd. 904, Silicon tower, off C.G Road, Ahmedabad-380 006 Gujarat (INDIA), Tel: +91-79-66065606 | HYPERLINK mailto:vijay.pa...@elitecore.comvijay.pa...@elitecore.com HYPERLINK

[android-developers] Re: Application unavailable in Android Market

2010-12-12 Thread Muhammad Ali
Hi, I am sure you did not set the AndroidManifest.xml parameters for your application the resolution and the min sdk version. You should take a look of the parameter for this particular file. Thanks Muhammad Ali Hassan On Dec 10, 11:35 pm, Pedro Duque pmdu...@gmail.com wrote: Hi, I've two

[android-developers] How to redirect GPS nmea from /dev/ttymxc to somewhere

2010-12-12 Thread nelsonchung
I can read gps nmea from /dev/ttymxc1 under linux shell command mode like this - cat /dev/ttymxc1. But, I want to know how/where to set in order to let AP level application - LocationManager can get gps nmea via JNI/Android. How/Where should I set? Should I implement some codes followed gps.h? Or

[android-developers] Re: How to redirect GPS nmea from /dev/ttymxc to somewhere

2010-12-12 Thread nelsonchung
test reply. On 12月13日, 下午2時57分, nelsonchung chihchun.ch...@gmail.com wrote: I can read gps nmea from /dev/ttymxc1 under linux shell command mode like this - cat /dev/ttymxc1. But, I want to know how/where to set in order to let AP level application - LocationManager can get gps nmea via

Re: [android-developers] How to redirect GPS nmea from /dev/ttymxc to somewhere

2010-12-12 Thread Anil Sasidharan
Hi, You need to implement gps HAL to hook this data up into Android's LocationService JNI. Warm Regards, Anil On Mon, Dec 13, 2010 at 12:27 PM, nelsonchung chihchun.ch...@gmail.comwrote: I can read gps nmea from /dev/ttymxc1 under linux shell command mode like this - cat /dev/ttymxc1. But,

[android-developers] Re: How to redirect GPS nmea from /dev/ttymxc to somewhere

2010-12-12 Thread nelsonchung
test reply. On 12月13日, 下午2時57分, nelsonchung chihchun.ch...@gmail.com wrote: I can read gps nmea from /dev/ttymxc1 under linux shell command mode like this - cat /dev/ttymxc1. But, I want to know how/where to set in order to let AP level application - LocationManager can get gps nmea via

[android-developers] Re: Dynamically reading drawable file names

2010-12-12 Thread Bob Kerns
Well, it's not what you asked for (since drawables come from different directories) but it may be closer to what you are looking for. You can use Java reflection to find all the public fields in R.drawable. The drawable directory doesn't exist at runtime; the contents are packaged up into the

[android-developers] two method to get the service

2010-12-12 Thread tangke
hi,all I have a question that how to get a service? I have two different method to set backlightbrightness 1. IPowerManager pm = IPowerManager.Stub.asInterface(ServiceManager.getService(Context.POWER_SERVICE)); pm.setBacklightBrightness(0); 2. PowerManager mpm =

[android-developers] Re: Plug-in for email client

2010-12-12 Thread Joey Tribbiani
Thanks a lot Kostya for your reply. Your reply made me understand the complexity little clearer. But still my requirement makes me come back to you to ask the question, this time more specifically. We are interested in developing a plugin to the Android native email client. This plugin will make

Re: [android-developers] Dynamically reading drawable file names

2010-12-12 Thread Dianne Hackborn
I would recommend just having another resource holding an array of the drawables to include. See for example this declaring one: http://android.git.kernel.org/?p=platform/frameworks/base.git;a=blob;f=core/res/res/values/arrays.xml;h=a0bc5b36923f5d88d4bbc98645d29340d187d434;hb=HEAD#l24

Re: [android-developers] two method to get the service

2010-12-12 Thread Dianne Hackborn
On Sun, Dec 12, 2010 at 11:27 PM, tangke mumut...@gmail.com wrote: I have a question that how to get a service? I have two different method to set backlightbrightness 1. IPowerManager pm = IPowerManager.Stub.asInterface(ServiceManager.getService(Context.POWER_SERVICE));

  1   2   >