[android-developers] Re: -http-proxy for emulator on Android 1.6?

2009-11-13 Thread Piwai
By the way, don't you guys think this should be written somewhere in the Android docs ? I think that currently, no app developer is aware of that problem. Which means that whenever an Android user is connected to a company network and needs to set an HTTP Proxy, the only working app will be the

[android-developers] Inter-activity communication

2009-11-13 Thread abhi
Hi, Currently, I am starting a Child activity from a Parent activity in the following manner: public class Parent extends Activity { private int message; public Parent() { message = 0; } @Override public void onCreate(Bundle

[android-developers] APN list empty

2009-11-13 Thread simon
Hi, all I have found that my APN list is empty. I want to add one. First, the file frameworks/base/core/res/res/xml/apns.xml is empty, so i modify it, add my apn content. apns.xml !-- If you edit this version, also edit the version in the partner- supplied apns-conf.xml configuration

[android-developers] how to stop BroadcastReceiver after some point

2009-11-13 Thread Shrenik Vikam
i want to stop BroadcastReceiver after some time / after some work how to stop BroadcastReceiver after some point from service/ activity ? please reply Thanks in advance -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this

Re: [android-developers] Choosing Dev Phone

2009-11-13 Thread Julius Spencer
Hi I have found the G1 pretty good. I have written apps which combine sensors (acceleration, orientation), GPS, 3D graphics and some maths. It would be nice if the processor were faster, but generally it's great. The UI (touch) response could be better, but for development it is

Re: [android-developers] Re: How to test if app is shown on Market for all screensizes

2009-11-13 Thread Klaus Kartou
Hi! How's your uses-sdk part of manifest looks like ? It looks like this: uses-sdk android:minSdkVersion=3/ supports-screens android:smallScreens=true android:normalScreens=true android:largeScreens=true android:anyDensity=true / On Fri, Nov 13, 2009 at 5:47 AM, SoftwareForMe.com

答复: [android-developers] how to stop BroadcastRe ceiver after some point

2009-11-13 Thread 张雷) zhang...@dopod.com
unregisterReceiver(BroadcastReceiver); -邮件原件- 发件人: Shrenik Vikam [mailto:shre...@ruby-solutions.com] 发送时间: 2009年11月13日 16:29 收件人: Android Developers 主题: [android-developers] how to stop BroadcastReceiver after some point i want to stop BroadcastReceiver after some time / after some

[android-developers] Need Help: Is widestrings like LString allowed in Android?

2009-11-13 Thread Latha Shivanna
Hii All Does anybody know about the behavoir of Android’s compiler for target on wide strings like L”string” ?? I have a piece of code like this: Unsigned short* TESTWSTRING[] = { L.jpg”, L”.txt” }; Will TESTWSTRING[0] TESTWSTRING[1] be widestrings ? In Win32, memory used

Re: 答复: [android-developers] how to stop Broadca stReceiver after some point

2009-11-13 Thread Shrenik Vikam
i have BroadcastReceiver in another package(application) so how can i unregister it from there On Nov 13, 1:31 pm, zhanglei(张雷) zhang...@dopod.com wrote: unregisterReceiver(BroadcastReceiver); -邮件原件- 发件人: Shrenik Vikam [mailto:shre...@ruby-solutions.com] 发送时间: 2009年11月13日 16:29 收件人:

[android-developers] eclipse problem in AndroidManifest.xml file

2009-11-13 Thread Android Helebek
Hi All, I was using Netbeans to write my Android applications for a few weeks now (i was used to NB). Then I decided to give a chance to Eclipse, since its the official recommended (with tools existing) development environment. Now, that I moved my code to Eclipse, it keeps complaining in the

[android-developers] Re: HTC Hero + requestFeature() must be called

2009-11-13 Thread Anton Pirker
Hi Shane! Have you solved your Problem? I think i have the same one! Thanks for any information, Anton On Oct 18, 6:55 am, Shane shanemenchi...@gmail.com wrote: I am getting a requestFeature() must be called before adding content but only on HTC Hero phones.  This error nevers occurs on

[android-developers] Re: eclipse problem in AndroidManifest.xml file

2009-11-13 Thread Dexter#39;s Brain
I think, a clean re-build will solve the problem. :) On Nov 13, 1:50 pm, Android Helebek bilge.tu...@gmail.com wrote: Hi All, I was using Netbeans to write my Android applications for a few weeks now (i was used to NB). Then I decided to give a chance to Eclipse, since its the official

Re: [android-developers] Need Help: Is widestrings like LString allowed in Android?

2009-11-13 Thread swapnil kamble
Why do you need that ? You dont need provide L . On Fri, Nov 13, 2009 at 2:15 PM, Latha Shivanna latha...@gmail.com wrote: Hii All Does anybody know about the behavoir of Android’s compiler for target on wide strings like L”string” ?? I have a piece of code like this: Unsigned short*

[android-developers] Re: eclipse problem in AndroidManifest.xml file

2009-11-13 Thread Android Helebek
Nope it does not. On Nov 13, 3:54 am, Dexter#39;s Brain coomar@gmail.com wrote: I think, a clean re-build will solve the problem. :) On Nov 13, 1:50 pm, Android Helebek bilge.tu...@gmail.com wrote: Hi All, I was using Netbeans to write my Android applications for a few weeks now (i

[android-developers] Re: MyLocationOverlay causing crash in 1.6 (Donut)

2009-11-13 Thread Pieter
Allright, I have taken up the gauntlet and wrote a subclass for working around this bug. It draws the my location disc and an accuracy circle. You can test it on a device that is not bugged by initializing the bugged variable to true. It is a quick and dirty hack but it seems to work correctly

[android-developers] Re: Choosing Dev Phone

2009-11-13 Thread String
I generally agree with Julius, I've been doing all my development on a G1 (equivalent to the ADP1) and it's served me very well. IMHO, the G1/ ADP1 is the reference hardware for Android at the current time. On Nov 13, 8:30 am, Julius Spencer jul...@msa.co.nz wrote: I have found the G1 pretty

[android-developers] Re: How to test if app is shown on Market for all screensizes

2009-11-13 Thread String
I'd add a targetSdkVersion attribute with the highest level you've actually tested against, like this: uses-sdk android:minSdkVersion=3 android:targetSdkVersion=5 / In my experience, the lack of that attribute caused higher-SDK emulator images to be reluctant to run the app, so I

[android-developers] Re: -http-proxy for emulator on Android 1.6?

2009-11-13 Thread Piwai
This issue report already existed, so I added a comment : http://code.google.com/p/android/issues/detail?id=3764 Please star the issue if you encounter the same problem. On Nov 13, 9:10 am, Piwai py.ri...@gmail.com wrote: By the way, don't you guys think this should be written somewhere in the

[android-developers] Re: Is your Android app on Archos Market ?

2009-11-13 Thread arnouf
Just a small update We're translated our article at frandroid for english readers : http://www.frandroid.com/6782/the-archos-5-it-for-1e-what-it%e2%80%99s-all-about-english/ The official announcement should be happened today at appslib.com website. regards On 9 nov, 13:27, Al Sutton

Re: [android-developers] Re: How to test if app is shown on Market for all screensizes

2009-11-13 Thread Klaus Kartou
Actually we first used: uses-sdk android:minSdkVersion=3 android:targetSdkVersion=4 / But that didnt work either :( We tried to manually install the app on a real Tattoo device, and it worked prefectly. But the app cannot be found on the market from that same device? What to do? :)

[android-developers] showDialog() and requestFeature() must be called before adding content Error

2009-11-13 Thread Anton Pirker
Hi fellow Android guys and girls! I have following problem. In my Activity I want to show in onResume() and ProgressDialog. I do this call (where Constants.DIALOG_GET_POSITION is just an integer value): showDialog(Constants.DIALOG_GET_POSITION); in my onCreateDialog() callback (in the

[android-developers] Re: Application design - using threads

2009-11-13 Thread Paul Turchenko
I believe there's no common approach to games development. Every game is unique and requires its own design. Therefore, it's really depends on the game whether you should span 2 or more threads for your logic and how excactly are you going to handle UI updates. On Nov 12, 12:17 am, Neilz

Re: [android-developers] Application design - using threads

2009-11-13 Thread Anton Pirker
Hi! Maybe this is what you are looking for: http://www.youtube.com/watch?v=U4Bk5rmIpic Its a talk about developing real-time games for android. Has a lot of best practices in it! Enjoy, Anton Neilz wrote: Hi all. I've been reading the developer guide, the sections on designing for

RE: [android-developers] App Not showing up on Verizon DROID Phones

2009-11-13 Thread Armond Avanes
Scott Others, I have a similar request for my app. I've restricted it not to run on small screen devices but the rest (including DROID) must be okay. Would you please check my application as well? And its name is aCar. It's an application to track your vehicles' maintenance, gas mileage and

[android-developers] BroadcastReciver in service

2009-11-13 Thread Shrenik Vikam
my BroadcastReciver is not getting called from serive ?? my service is running perfectly (as i can seee the log statements in LogCat) following is my code public class ServiceExample extends Service { @Override public void onCreate() { super.onCreate();

[android-developers] Start Activity from Service

2009-11-13 Thread Nishant
Hi, I want to develop a application that continuously running in background as service. And after that if i press any numeric key, it should start an application. I have developed a service which is running continuously. Is it possible in Android? Regards, Nishant Shah -- You received this

[android-developers] Is Android 2.0 Support Hebrew ???

2009-11-13 Thread νιѕнαℓ
Anybody knows??? -- 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 For more

[android-developers] MapView on 1.6 very strange behaviour

2009-11-13 Thread mobilek...@googlemail.com
Hi, in my app I display MapViews in several activities. Now that I have updated my G1 device to 1.6, I notice that at some pleace the MapView is displayed properly, and at others - it's not - I can see the my OverlayItem though. I'm 100% I use the same keys throughout my app. Any suggestions as to

[android-developers] Re: MapView on 1.6 very strange behaviour

2009-11-13 Thread mobilek...@googlemail.com
Problem resolved. On 13 Nov, 10:36, mobilek...@googlemail.com mobilek...@googlemail.com wrote: Hi, in my app I display MapViews in several activities. Now that I have updated my G1 device to 1.6, I notice that at some pleace the MapView is displayed properly, and at others - it's not - I can

[android-developers] Toggle state button

2009-11-13 Thread Ronnie
Hi all, I need a button that stays pressed until I press on it the second time. Just like a button with the behaviour of a checkbox. How to do this? -- 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: Toggle state button

2009-11-13 Thread Shrenik Vikam
use ToggleButton http://developer.android.com/intl/fr/reference/android/widget/ToggleButton.html On Nov 13, 3:48 pm, Ronnie ronnievie...@gmail.com wrote: Hi all, I need a button that stays pressed until I press on it the second time. Just like a button with the behaviour of a checkbox. How to

Re: [android-developers] Re: My appwidget broken Donut when keyboard slide out/in

2009-11-13 Thread Jeff Sharkey
TextView.onSaveInstanceState() saves details about the TextView into a Bundle that is passed between the two Launcher instances when orientation is changed. By default, those values are keyed off View.getId(). This means if your id's collide with those of another widget, your views may overwrite

[android-developers] Re: Force locale for an application, bug in 2.0?

2009-11-13 Thread Kaj Bjurman
Thanks. I'll try that. On 12 Nov, 20:31, monmonja almondmend...@gmail.com wrote: Add android:configChanges=locale to your activity nodes on the manifest file activity android:name=.Main android:configChanges=locale android:label=@string/app_name / Update the post

Re: [android-developers] Potential bug in the implementation of AppWidgets

2009-11-13 Thread Jeff Sharkey
There is a known issue where the class loader won't know about MapActivity from the uses-library tag in the case you described. Search this group for more details and possible workarounds. j On Tue, Nov 10, 2009 at 3:12 PM, Himanshu its.himan...@gmail.com wrote: Hi We have discovered a

Re: [android-developers] Re: Widget Path

2009-11-13 Thread Jeff Sharkey
If you're talking about creating RemoteViews for AppWidgets, you're probably looking for Context.getPackageName(). j On Wed, Nov 11, 2009 at 8:11 PM, GPU gopuraj...@gmail.com wrote: Is it possible to find out the view is from widget or from normal application ? On Nov 12, 8:34 am, GPU

[android-developers] Re: Support of JKS Keystore in Android

2009-11-13 Thread swapnil kamble
I got it working. I used KeyTool UIU app. Using it, worked smoothly. If anyone wants details how I did it, send me an email. I will document it and post it on list. Thanks, Swapnil On Fri, Nov 13, 2009 at 12:53 PM, swapnil kamble swap.kam...@gmail.comwrote: Hi, I am having Java SSL

Re: [android-developers] Read Phone Contact in Vcard Format in Android 2.0

2009-11-13 Thread Jeff Sharkey
If you add an intent-filter for the ACTION_SEND Intent with the text/x-vcard MIME-type, your app will appear in the Menu Share list when viewing a contact. Then you can use ContentResolver.openAssetFileDescriptor() on the getData() Uri provided through that Intent to open and read that contact

Re: [android-developers] How to get all contact's name phone number, email for 2.0

2009-11-13 Thread Jeff Sharkey
Could you paste the exact query() that is returning empty for you? Since all data is now stored in a single table you should be able to query on Data.CONTENT_URI and filter by Data.MIMETYPE to match the two types you're looking for. j On Sun, Nov 8, 2009 at 7:52 PM, Henry

[android-developers] Interesting and urgent

2009-11-13 Thread IPEG Student
Hello I post a code by which i can call any one from contact list . protected void onListItemClick(ListView l, View v, int position, long id){ super.onListItemClick(l, v, position, id); Intent i = new Intent(Intent.ACTION_CALL); Cursor c = (Cursor)

[android-developers] Group related code with new ContactsContract APIs?

2009-11-13 Thread Yao
Hi all, I'm struggling with changed contacts APIs. Could anyone please give me an example/clue how to achieve following functionality via code? Thanks a lot in advance!!! * Insert a group * List all groups names * List group members of a group -- Best regards, MTM Contacts GroupU - Group

[android-developers] Re: Android 2.0 and ADP (necessary to flash the ADP?)

2009-11-13 Thread WoodManEXP
How are we suppose to take advantage of the 2.0 upgrades if it is not going to be available for the ADPs? Will it ever be available for the ADPs? On Nov 12, 2:24 pm, Disconnect dc.disconn...@gmail.com wrote: That is because android 2.0 is closed source. On Thu, Nov 12, 2009 at 9:33

[android-developers] Re: Listening to Beacons

2009-11-13 Thread yuvalkesten
Anything? Guys? -- 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 For more

[android-developers] Re: custom protocol handler...

2009-11-13 Thread skink
On Nov 12, 6:31 pm, sdphil phil.pellouch...@gmail.com wrote: tried that, didn't work -- same result. Web page not available The Web page at myprotocol:///blah=42 might be temporarily down or it may have moved permanently to a new web address. did you try: -

[android-developers] Re: SDK 2.0 vs SDK 1.6

2009-11-13 Thread WoodManEXP
Our upgrade to 2.0 was mostly painless and switching between SDKs and emulators works OK. We are trying to figure out how best to test against 2.0, other than the emulator, as there is no 2.0 image available for the ADP. On Nov 2, 7:02 pm, dataStorm armags...@gmail.com wrote: Oh cool, so it is

[android-developers] onClickListener for tabs in TabActivity

2009-11-13 Thread mardah
Hi I have a tab activity with 4 tabs. How do I set a onClickListener for the tabs? The onTabChangeListener only works if I click on the inactive tabs. I would like a callback even if I click the current/active tab. Any suggestions? BR Martin -- You received this message because you are

[android-developers] Re: Toggle state button

2009-11-13 Thread Rob
Thanks.. But I'm not able to set my text. the default text(ON/OFF) is displayed. I have specified text attr in xml. What is the correct way? Rob On Nov 13, 3:58 pm, Shrenik Vikam shre...@ruby-solutions.com wrote: use

[android-developers] comments on the 'Integrating Application with Intents blog

2009-11-13 Thread Business Talk
I would like to make a few comments on the 'Integrating Application with Intents ' blog posted on the developers.android side. Specifically, as to the definition of the reserve action and the data specifications. Neither of these specifications are generic and exhibit a very narrow view of the

[android-developers] Growing pains for Android developers??

2009-11-13 Thread WoodManEXP
We have spent significant time energy and $$ producing several Android applications on the bet/hope it will be able to cut into the iPhone market. Unfortunately little is happening. - The apps sales are sluggish (the apps are hardly even being pirated as far as we can tell). - ADP cannot be

[android-developers] Problem with HttpURLConnection

2009-11-13 Thread vendor.net
I am coding for Android, but since it uses java based language I guess here is the right place to post. I think that this is either a bug in java or I can`t manage to do something wright. Here is the code snippet URL url; HttpURLConnection conn = null; try {

[android-developers] Re: eclipse problem in AndroidManifest.xml file

2009-11-13 Thread Fred Grott(Android Expert, http://mobilebytes.wordpress.com)
is this a typo or actual in Manifest? action android:name=android.telephony.TelephonyManager.ACTION_PHONE_STATE_CHANGED/ needs ending tag completion ie / Fred Grott Android Developer http://mobilebytes.wordpress.com On Nov 13, 2:50 am, Android Helebek bilge.tu...@gmail.com wrote: Hi All, I

[android-developers] service multiple time ?

2009-11-13 Thread Shrenik Vikam
how to check that the service with some name is running once ? also if i go out from my activity then my service is running when i come to my activity the onCreate method is called so my service is created again in this case or running service will be attached again ??? public class

[android-developers] Apps not showing up on Droid Eris (running cupcake)??

2009-11-13 Thread Flying Coder
I have the min SDK version set to 3 in the manifest. Shouldn't the apps still be available in the Cupcake Market? Anyone know why apps are not showing up there? Or better yet, how to make them reappear? Thanks! Steve -- You received this message because you are subscribed to the Google

Re: [android-developers] Growing pains for Android developers??

2009-11-13 Thread Abdul Mateen
There are alternatives like AndAppstore and SlideMe proves to be better than Android Market. developers can make these markets well in order and properly grow if they put their apps on them also. On Fri, Nov 13, 2009 at 5:57 PM, WoodManEXP woodman...@gmail.com wrote: We have spent significant

[android-developers] Re: Growing pains for Android developers??

2009-11-13 Thread Kaj Bjurman
You can test Android 2.0 applications in the emulator. I've been able to correct a bug that I had on 2.0 even though I don't have a phone that supports 2.0. On 13 Nov, 13:57, WoodManEXP woodman...@gmail.com wrote: We have spent significant time energy and $$ producing several Android

[android-developers] Re: Growing pains for Android developers??

2009-11-13 Thread WoodManEXP
Yes we are on AndAppStore too. They seem like good people and are very responsive! On Nov 13, 8:31 am, Abdul Mateen abmat...@gmail.com wrote: There are alternatives like AndAppstore and SlideMe proves to be better than Android Market. developers can make these markets well in order and properly

[android-developers] Preference change notifying the main Activity

2009-11-13 Thread Kieran
Hi, I think I've missed something in how Android is supposed to work! I have the main Activity with a menu option that opens the preferences screen. What I need is a way for any changes that were made to be communicated back to the main Activity as soon as the preference is activated. At the

[android-developers] Re: Growing pains for Android developers??

2009-11-13 Thread WoodManEXP
Yes that true and we are doing that. But Google is clear that apps must be tested outside the emulator. On Nov 13, 8:42 am, Kaj Bjurman kaj.bjur...@gmail.com wrote: You can test Android 2.0 applications in the emulator. I've been able to correct a bug that I had on 2.0 even though I don't have

[android-developers] Re: Growing pains for Android developers??

2009-11-13 Thread Kieran
I'm not sure about anyone else but I just could not work out how to buy an app from SlideMe. It had steps that it wanted you to do from my desktop which isn't a big help when I'm on the bus! I was hoping they would make it big as paid apps aren't available on Android Market for my phone carrier.

Re: 答复: [android-developers] how to stop Broadca stReceiver after some point

2009-11-13 Thread Alok Kulkarni
I dont know exactly but in general, if you make broadcast receiver as public static then you can access it from any package. Thanks, Alok. 2009/11/13 Shrenik Vikam shre...@ruby-solutions.com i have BroadcastReceiver in another package(application) so how can i unregister it from there On Nov

Re: 答复: [android-developers] how to stop Broadca stReceiver after some point

2009-11-13 Thread Alok Kulkarni
By static i mean creating it by specifying in the manifest file. 2009/11/13 Alok Kulkarni kulsu...@gmail.com I dont know exactly but in general, if you make broadcast receiver as public static then you can access it from any package. Thanks, Alok. 2009/11/13 Shrenik Vikam

[android-developers] ADP2 Coming

2009-11-13 Thread Fred Grott(Android Expert, http://mobilebytes.wordpress.com)
ADP2 is coming Brightstar just announced it: http://www.rcrnewsdirectory.com/pressrelease.aspx?id=325512 I have not seen Google mentions of it yet.. Fred Grott Android Developer http://mobilebytes.wordpress.com -- You received this message because you are subscribed to the Google Groups

[android-developers] Re: showDialog() and requestFeature() must be called before adding content Error

2009-11-13 Thread Anton Pirker
I have more information: The exception is thrown on my htc magic with android 1.5 But on a htc tattoo with android 1.6 everything works fine. The code is compiled with Android SDK 1.5r2 Maybe there is a problem with the sdk version? I need to get it to work on android 1.5, so i thought the

[android-developers] Screen Sizes with 1.5, 1.6 and 2.0

2009-11-13 Thread Evan Ruff
Hey guys, I've got a quick question about screen size support. Currently, I've got an application that is rockin' along just fine on 1.5 and 1.6. Today the client called and says they want to run on Droid. While I've downloaded the 2.0 SDK, I'm a little wary of compiling against it. Will it break

[android-developers] Re: ADP2 Coming

2009-11-13 Thread zero
hmm, basically a magic with new rom ? On Nov 13, 3:36 pm, Fred Grott(Android Expert, http://mobilebytes.wordpress.com) fred.gr...@gmail.com wrote: ADP2 is coming Brightstar just announced it: http://www.rcrnewsdirectory.com/pressrelease.aspx?id=325512 I have not seen Google mentions of it

[android-developers] Where is the DDMS allocation tracker

2009-11-13 Thread olivier
Dear, I can't find the DDms allocation tracker in the DDMS perspective in eclipse. I search the view doing Window show view I look to the android view but i have no allocation tracker view there. I use search view tool and I can't find any... Where is this View ? (If it's obvious, i am sorry

[android-developers] Re: Emulator Problem: No emulated GSM ubuntu 9.04 x64

2009-11-13 Thread Steve
Workaround Found! Ok, admittedly this is a bit of a hack, but it DOES work and I've tried it on a few different setups now. When starting the emulator add the following option: -bootchart 100 (no quotes). My current theory is that there is a race condition on running the emulated gsm stack and

Re: [android-developers] ADP2 Coming

2009-11-13 Thread Cédric Berger
On Fri, Nov 13, 2009 at 15:36, Fred Grott(Android Expert, http://mobilebytes.wordpress.com) fred.gr...@gmail.com wrote: ADP2 is coming Brightstar just announced it: http://www.rcrnewsdirectory.com/pressrelease.aspx?id=325512 So given the description this may well be a HTC Magic (Ion) ? --

Re: [android-developers] Re: App name/icon problems on Hero after reboot

2009-11-13 Thread Justin Giles
Just wanted to update with my current experiences: A week or so ago, I did a factory reset on my Hero. I went through the initial settings you have to do and then immediately turned off the Hero Sense UI and chose to use the stock Android UI by default. Well, yesterday, after I had updated a

Re: [android-developers] Re: ADP2 Coming

2009-11-13 Thread Cédric Berger
On Fri, Nov 13, 2009 at 15:49, zero zeroo...@googlemail.com wrote: hmm, basically a magic with new rom ? The latest ROM as available now for the Ion . Looks like it is just the Ion available for all developers http://www.frandroid.com/6843/adp2-le-nouveau-telephone-de-developpement/ -- You

[android-developers] Low Memory: No more background processes.

2009-11-13 Thread dadical
Can someone describe the semantics behind this situation? What I'm seeing is that obviously my application process that has a running background service getting killed off, but in some scenarios it never seems to get restarted, or at least takes much longer to restart than I would have expected.

[android-developers] Re: Android keyevent keycodes and scancodes

2009-11-13 Thread Android_n00b
Hi Yi, I am looking for the KeycodeLabels.h files in /android/frameworks/base/ libs/ui because that is where it is supposed to be, but I cannot find it. I see the KeyLayoutMap.h file but do not see the KeycodeLabels file. I am looking at online versions of the source code file structure and do

[android-developers] Alternative market for paid apps

2009-11-13 Thread Andrei
Guys If you have paid app people can get it for free here It took me 2 days to remove mine http://search.4shared.com/network/search.jsp?sortType=1sortOrder=1sortmode=1searchName=.apksearchmode=2searchName=.apksearchDescription=searchExtention=sizeCriteria=atleastsizevalue=10start=0 -- You

[android-developers] Re: Menu Items.

2009-11-13 Thread TreKing
And example for what? You haven't clarified how you're using your layouts or what you're actually trying to do. Have you read the section on menushttp://developer.android.com/guide/topics/ui/menus.html#options-menuin the developer's guide? It explains creating the menu and modifying it with

[android-developers] plz help me ... how to implement camera intent correctly?

2009-11-13 Thread wahib.t...@gmail.com
hi !! I am working to find out a solution to use Intent to call camera app and then call my custom function in overridden onActivityResult(). This code actually displays camera preview and return like i want it to but no actual snap is taken by it. There is no new image added to the gallery. :S

[android-developers] cannot scrollTo() a webview before rending it

2009-11-13 Thread ber4444
Hi, I have a map and some icons drawn on a webview that I redraw on each GPS update. Even though only the icon that is representing my GPS position should be redrawn, it still works without flickering. Now the problem is that when the page has been scrolled, and I try to restore its position after

[android-developers] Re: eclipse problem in AndroidManifest.xml file

2009-11-13 Thread Android Helebek
I am sorry it is just a typo. It actually is fine in the code. Ok, I wanna extend the question a little bit. Assuming my code is working fine (possibly forced, from Netbeans) and assuming receiver requires a BroadcastReceiver, is PhoneStateListener a BroadcastReceiver? I check the sdk and didn't

[android-developers] Re: android.provider.Settings.System.FONT_SCALE -- Does this do anything (Android 2.0)?

2009-11-13 Thread Colin Brash
Thank you, that makes a lot more sense! Colin -- 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

Re: [android-developers] Re: showDialog() and requestFeature() must be called before adding content Error

2009-11-13 Thread TreKing
I've seen this error when trying to set the view on a Dialog after it's been created. Setting the view as part of the construction process using the Builder makes it go away. Maybe try creating the ProgressDialog with the constructor first (new ProgressDialog(title, msg, ...), then using the

[android-developers] Stuck with ScrollView vs ListView, your thoughts?

2009-11-13 Thread Mark Wyszomierski
Hi, I have to make a pretty complex activity layout, which needs to scroll vertically. It is composed into row sections, which are focusable rows. Some rows may not be focusable themselves, but have internal focusable items, like this: // This whole row gets highlighted and focusable.

[android-developers] ADP2 now available

2009-11-13 Thread Jason Chen
Hey, folks. Just a quick note to let you all know that the ADP2 (it's the same hardware as the Google ION and the HTC Magic) is now available. Also, the distribution of both ADP1 and ADP2 has expanded to include 9 more countries: Italy, South Africa, New Zealand, Brazil, Czech Republic, Estonia,

[android-developers] Re: Growing pains for Android developers??

2009-11-13 Thread niko20
Ok, let me answer some of these myself. App sales sluggish - well android is still a growing platform, and yes the latest improvements to the app store have helped, as well as all the new phone releases as well, I'm seeing about double the orders per day as before. Not to mention that we finally

[android-developers] Re: How to test if app is shown on Market for all screensizes

2009-11-13 Thread phil
Hi, We have the same problem and tried some things to solve this. We found out that with different Permissions set the app is visible in the market for the HTC Tattoo. Here all the permissions we set: uses-permission android:name=android.permission.ACCESS_COARSE_LOCATION /

[android-developers] Re: SQLite database location restriction

2009-11-13 Thread Nathan
On Nov 12, 11:50 pm, westmeadboy westmead...@yahoo.co.uk wrote: Yes, I can see that is misleading. I'm sure they just mean that for when you don't specify a File. Have you tried putting it on the sdcard? I have an app, used by thousands of users, where a 20MB+ sqlite db file is located on

Re: [android-developers] Re: Dallas Android Developers

2009-11-13 Thread Aniruddh Bajirao
Are we meeting tomorrow @ 11:30am ??? On Thu, Nov 12, 2009 at 1:10 AM, PJ pjbar...@gmail.com wrote: If anyone is interested in joining the Dallas Droid Devs, just reply to this thread and let us know that you're interested. An existing member can then invite you to be a collaborator of our

[android-developers] Layout problems

2009-11-13 Thread jdekeij
Hoi, I try to get a button below my gameboard, however the gameboard overrides the button. When placed above the gameboard every thing is alright. The gameboard is named ¨reversi.com.BoardView¨ ?xml version=1.0 encoding=utf-8? LinearLayout xmlns:android=http://schemas.android.com/apk/res/

Re: [android-developers] Is Android 2.0 Support Hebrew ???

2009-11-13 Thread Tom Chen
Hello! It does not. It only has support for english and spanish right now. I'm hoping for simplified chinese support. Tom 2009/11/13 νιѕнαℓ vdkhakhk...@gmail.com Anybody knows??? -- You received this message because you are subscribed to the Google Groups Android Developers group. To

[android-developers] Please Suggest, Where can we buy Android phones.

2009-11-13 Thread Ash
We need to buy some phones for android development for our university. As it is not for personal use and only for android development for students we prefer NO service plan or two year contract. We plan to buy few Motorola Droid and HTC G1 initially and other android phones in near future. Can

Re: [android-developers] Testing on every possible device

2009-11-13 Thread Tom Chen
Are the devices you want to test on device anywhere? You can rent a device virtually for approximately $20 bux a hour, this is a great way to quickly make sure that your app works on a phone. http://www.deviceanywhere.com/ After 200 to 300 bux, it's probably worth buying the phones to keep in

Re: [android-developers] Please Suggest, Where can we buy Android phones.

2009-11-13 Thread Mark Murphy
Ash wrote: We need to buy some phones for android development for our university. As it is not for personal use and only for android development for students we prefer NO service plan or two year contract. We plan to buy few Motorola Droid and HTC G1 initially and other android phones in near

Re: [android-developers] Re: Growing pains for Android developers??

2009-11-13 Thread Dianne Hackborn
On Fri, Nov 13, 2009 at 6:01 AM, WoodManEXP woodman...@gmail.com wrote: Yes that true and we are doing that. But Google is clear that apps must be tested outside the emulator. Yes we strongly recommend you test your app on -some- real device outside of the emulator. You can then use the

[android-developers] Re: How to test if app is shown on Market for all screensizes

2009-11-13 Thread phil
Hi, we did some further testing and found out that the android.permission.CAMERA is the Problem in our case. We tried leaving it out and then the app was showing up in the market. Does anyone else have the same problem or can confirm that this is a problem. We hope for a fast solution or any tip

[android-developers] Re: How to enable Fingerpainting (i.e. API demo example) on a surface, but not only with finger touch

2009-11-13 Thread Juan David Trujillo C.
Thank you for you response Dianne, I have one final question though, does this mean painting on the device can't be emulated through software or by any other mean to allow other objects (pencil, thick pen, etc.) to draw on the surface of a touch screen? I appreciate any help or guidance Best

[android-developers] How to play media via speaker phone

2009-11-13 Thread hap 497
I am able play a media using MediaPlayer. The media played via the ear piece. But how can I play the media with speaker phone? I have tried: AudioManager audioManager = (AudioManager) mActivity.getSystemService(Context.AUDIO_SERVICE); audioManager.setSpeakerphoneOn(true); But that does not

Re: [android-developers] Re: Growing pains for Android developers??

2009-11-13 Thread Dianne Hackborn
On Fri, Nov 13, 2009 at 6:13 AM, Kieran kieran.flem...@gmail.com wrote: If you take the original res (HVGA for Android and QVGA for WM) you'll see that Microsoft never made a res smaller than the res everyone was used to. Not supporting QVGA screens would basically leave out the lower-end

Re: [android-developers] Re: Android keyevent keycodes and scancodes

2009-11-13 Thread Dianne Hackborn
The mapping tables are device-specific. On Fri, Nov 13, 2009 at 7:36 AM, Android_n00b nikhil...@gmail.com wrote: Hi Yi, I am looking for the KeycodeLabels.h files in /android/frameworks/base/ libs/ui because that is where it is supposed to be, but I cannot find it. I see the KeyLayoutMap.h

[android-developers] Re: Choosing Dev Phone

2009-11-13 Thread Nathan
If I were in your shoes, Nathan, I think I'd try to hold off buying anything until 2.0 is released at large and it's clear which devices will and won't run it. I see the wisdom in that. I can get by with emulators. At this time, Dev2 is at the top of my list - if it runs 2.0 Buying an

[android-developers] Parsing results of XmlEncoder on server

2009-11-13 Thread stanlick
I am trying to consume the http response from a server that generated the payload via java.beans.XMLEncoder. Unfortunately, there is no corresponding XMLDecoder in Android so I am sitting here staring at perfectly valid XML (although ugly) wondering how I can deserialize it back into the

Re: [android-developers] Re: showDialog() and requestFeature() must be called before adding content Error

2009-11-13 Thread Anton Pirker
You are awesome! Calling the .show() method was completely stupid. In your onCreateDialog() callback method you just create the dialog and then return it. The rest is done by Android. Now everything works fine! Thanks a million, Anton TreKing wrote: I've seen this error when trying to

[android-developers] Re: Where is the DDMS allocation tracker

2009-11-13 Thread Al
This isn't available in the DDMS view in Eclipse, you have you open the separate DDMS app in SDK-PATH/tools/ddms.bat (or sh I think for linux/os x). On Nov 13, 2:53 pm, olivier olivier.stev...@treebux.fr wrote: Dear, I can't find the DDms allocation tracker in the DDMS perspective in eclipse.

Re: [android-developers] Alternative market for paid apps

2009-11-13 Thread Abdul Mateen
Amazing, I think developers will loose android platform because of this piracy, there is not so much on App Store, and now Microsoft will win the war against Google, Guys If you have paid app people can get it for free here It took me 2 days to remove mine

  1   2   3   >