[android-developers] How much is the weight of the shipped box?

2010-01-08 Thread Mario Chacon
Hello, I'm from Argentina and I'm searching the weight of the Nexus Box, Could you tell me how much it is, please? I can't find it and I need to know before the ship. Thank you salu2... masch... -- You received this message because you are subscribed to the Google Groups "Android Developers" gro

[android-developers] Carnegie Mellon University seeks Android developers opinion

2010-01-08 Thread Mobile Survey CMU
We are conducting a survey of mobile application developers aimed at improving our understanding of mobile application development, focused on developer practices for building mobile applications. This is a research project, sponsored by the CyLab Mobility Research Center of Carnegie Mellon Univers

[android-developers] Spinner questions

2010-01-08 Thread tonybse
Hello, I would appreciate if somebody can comment the questions below... - is there any way to read the spinner status (is it "open" or "closed") ? - Is there any way to change the content of the spinner items without closing it? Currently, I can set a custom data adapter and show the spinner.

[android-developers] Re: ADB working with HTC Droid Eris?

2010-01-08 Thread Voted Most Popular
I installed the HTC sync from the HTC website that includes an ADB driver that works with the Eris. Remove the old driver and install HTCSync. On Dec 9 2009, 11:32 am, nethru wrote: > I got the same exact issue as original poster.  I tried what was on > that unlockr site but it didn't workeither.

[android-developers] Re: Multitouch support in Android 2.0

2010-01-08 Thread naya
I wonder about "Pointer ID" which is obtained using ACTION_POINTER_ID_MASK. Documentation says "Pointer ID" is not "Array Index" but "ID", and "Index" can be found with findPointerIndex("ID"). But when I examine source file("InputDevice.java"), it looks like "Array Index" instead of "ID" as quoted

[android-developers] Android Submission Guideline

2010-01-08 Thread Amit Mhatre
Hi Experts, Can you please suggest if there is any submission guideline suggested by android before app submission to market place. Do we need to do any level of testing? Thanks Amit Mhatre -- You received this message because you are subscribed to the Google Groups "Android Developers" group. T

[android-developers] Creating Comunal ShoutCasts Lib

2010-01-08 Thread ikalbeniz
Hi, Apparently nobody has published a Android Library to play ShoutCast streams.. there are particular developments but none of the OpenSource. So why don`t we develop our own library? I will post my first approach to the class and the community can post modifications till we get a functional clas

[android-developers] Android docs in an offline format

2010-01-08 Thread oregonduckman
I am looking for a source for all of the Android docs that can be read offline. It would be great if Google would publish their docs in a linked PDF or Kindle format or even the HTML in a zip file so an individual can reformat the docs themselves into PDF/Kindle. -- You received this message becau

[android-developers] Re: what is a suitable upper limit for application size?

2010-01-08 Thread Jack.Chu
apps more than 1MB is relatively very large on android. Maybe you can work around by put something on sd card. On Jan 8, 10:56 am, ian wrote: > The tourism related app I am completing has about 250 images for a > total of maybe 15MB. > > I;d like to add another 100 or so images but sometimes I ge

[android-developers] To read XML file using xslt

2010-01-08 Thread prachi
Hii all I want to read XML file using XSLT concept and display it as a web page using webview. -- 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

[android-developers] Re: ADT Plugin for Exlipse installation fails

2010-01-08 Thread Mike Butler
I've also had these exact same problems. It's also taking a very long time (10 minutes) for eclipse to download 1.6MB to figure out if it needs to update, even via the "check connection" button. On Jan 5, 9:59 am, Manimal wrote: > I added "http://download.eclipse.org/releases/galileo/'so the lis

[android-developers] Problem with Password Reset Captcha

2010-01-08 Thread Wong, Douglas
I was trying to post a response to a message, but I had forgotten my password. I clicked the link to reset my password. I filled in the information on the form and was presented with a captcha. Unfortunately the characters in the captcha were very hard to read and I couldn't enter the correct

[android-developers] Re: How do I get full-sized image back from Camera using MediaStore.IMAGE_CAPTURE ?

2010-01-08 Thread MrChaz
As far as I know it's bugged and you can't get full resolution images via the intent. I ended up just creating my own camera activity. On Jan 8, 5:26 pm, Ray Benjamin wrote: > Hi, > > I managed to figure out how to get the camara application to give me an > image, but it is rather tiny, only 18k

Re: [android-developers] How to best maintain two different versions of the same app?

2010-01-08 Thread Dan Sherman
We had good luck with our latest project with just checking the package string. Naming the project xxx.xxx.project, and xxx.xx.project_lite And in our Activity subclass, checking for the package name, and setting a static variable for paid. Depends how much code needs to switch with paid

Re: [android-developers] Re: abort outgoing call

2010-01-08 Thread Alejandro D. Garin
I wrote the Uri parse different: Intent callIntent = new Intent(Intent.ACTION_CALL, Uri.parse("tel:" + NUMBER)); NUMBER is a constant with the new number to dial. On Fri, Jan 8, 2010 at 3:43 PM, Alejandro D. Garin wrote: > Hi Gulfam, > > I'm doing exactly the same and i

Re: [android-developers] How to best maintain two different versions of the same app?

2010-01-08 Thread Olivier Guilyardi
On 01/08/2010 07:15 PM, Mariano Kamp wrote: > this seems to be a very basic need, but googling it I got the impression > that is not easily or elegantly solvable. > > The requirement is totally simple: I want to have a lite and pro version > of an app. There is a little bit of difference between t

Re: [android-developers] Re: abort outgoing call

2010-01-08 Thread Alejandro D. Garin
Hi Gulfam, I'm doing exactly the same and it's working, at least in the emulator. And using sdk 2.0 api 6. This are my android permissions: On Fri, Jan 8, 2010 at 3:36 PM, Gulfam wrote: > Hi Alejandro D. Garin, > > Reintiating call means when i setResultData(nul

[android-developers] Re: dispatchTouchEvent

2010-01-08 Thread Business Talk
I found the way to generate the MotionEvent, and it's MotionEvent.obtain On Jan 8, 1:15 pm, Business Talk wrote: > How can I programmatically press/release a button? I was playing with > the button.dispatchTouchEvent(motionEvent); but failed to > programmatically generate  the MotionEvent to be p

[android-developers] Re: abort outgoing call

2010-01-08 Thread Gulfam
Hi Alejandro D. Garin, Reintiating call means when i setResultData(null); and after this i want to call at new number as Intent DialIntent = new Intent (Intent.ACTION_CALL,Uri.parse(3224005421));/**local number DialIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); co

Re: [android-developers] How to best maintain two different versions of the same app?

2010-01-08 Thread Mark Murphy
Mariano Kamp wrote: > Working around this ID issue the straight forward approach would be to > have a third project with the common code that exports its code, > libraries and in a best case scenario also the ressources to the other > two objects. Unfortunately this doesn't work. Only the actual An

Re: [android-developers] How to best maintain two different versions of the same app?

2010-01-08 Thread Frank Weiss
I've suggested using Eclipse project dependency, but haven't whether or not it works for Android projects. On Jan 8, 2010 10:15 AM, "Mariano Kamp" wrote: Hi, this seems to be a very basic need, but googling it I got the impression that is not easily or elegantly solvable. The requirement is to

Re: [android-developers] Re: OpenGL fixed point vs. floating point

2010-01-08 Thread Frank Weiss
If there's no API, writing your own code is reasonable. On Jan 8, 2010 9:09 AM, "Peter Eastman" wrote: > Just render a small object using identical code except one is float and one is int, then time them... Unless a garbage collection happens to kick in during one of those tests, or the OS decid

[android-developers] dispatchTouchEvent

2010-01-08 Thread Business Talk
How can I programmatically press/release a button? I was playing with the button.dispatchTouchEvent(motionEvent); but failed to programmatically generate the MotionEvent to be passed to the dispatchTouchEvent -- You received this message because you are subscribed to the Google Groups "Android De

[android-developers] How to best maintain two different versions of the same app?

2010-01-08 Thread Mariano Kamp
Hi, this seems to be a very basic need, but googling it I got the impression that is not easily or elegantly solvable. The requirement is totally simple: I want to have a lite and pro version of an app. There is a little bit of difference between those two apps, but they are 99% identically. Unfo

[android-developers] Re: upgrade my G1 to android 2.0

2010-01-08 Thread schwiz
if you root your phone and head over to xda there are a few 2.0 builds for G1 but last time I checked the camera wasnt working yet. On Jan 8, 11:05 am, Mark Murphy wrote: > DAVIDT wrote: > > I want to upgrade my G1, which is currently running on andriod 1.6, to > > andriod 2.0 or 2.1. Is it possi

[android-developers] Re: what is a suitable upper limit for application size?

2010-01-08 Thread ian
Well that idea of downloading of data onto the SD card does sound like the proper route to take. If it didn't happen every start-up then it isn't much of a problem at all. I'll sort out the details and take that good advice. Thanks for the help folks. - Ian On Jan 8, 11:28 am, Cédric Berger w

[android-developers] Virtual Camera + Accelerometer + 3ds max

2010-01-08 Thread Guilherme Vieira
Good afternoon. Here is my idea shortly: I want to make a virtual camera to 3ds max. I mean, I want to be able to move my phone in space and then export the transformations to my 3ds camera. So I have to consider *basic *points: - how can I recover the accelerometer values and turn then into

[android-developers] Re: addToMyContactsGroup does not seem to work on HTC Hero

2010-01-08 Thread fry
I have made some experiments here and found that this labels google/ phone are not about grouping - there is undocumented "type" column in the People table which seems to be responcible for this. The following code: final Cursor pcur = context.managedQuery(Contacts.People.CONTENT_URI,

[android-developers] How do I get full-sized image back from Camera using MediaStore.IMAGE_CAPTURE ?

2010-01-08 Thread Ray Benjamin
Hi, I managed to figure out how to get the camara application to give me an image, but it is rather tiny, only 18k. Has anyone figured out a reliable way to get a full-sized image returned if you are using a MediaStore.IMAGE_CAPTURE intent? Thanks, Ray -- You received this message because

[android-developers] Re: OpenGL fixed point vs. floating point

2010-01-08 Thread Peter Eastman
> Just render a small object using identical code except one is float and one > is int, then time them. Unless a garbage collection happens to kick in during one of those tests, or the OS decides to timeslice to another process, or the JIT decides to recompile some code with better optimization,

Re: [android-developers] upgrade my G1 to android 2.0

2010-01-08 Thread Mark Murphy
DAVIDT wrote: > I want to upgrade my G1, which is currently running on andriod 1.6, to > andriod 2.0 or 2.1. Is it possible? Not presently, no. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://twitter.com/commonsguy Android Consulting/App Development: http://commonsware.com/consul

[android-developers] upgrade my G1 to android 2.0

2010-01-08 Thread DAVIDT
Hi All I want to upgrade my G1, which is currently running on andriod 1.6, to andriod 2.0 or 2.1. Is it possible? Thanks David -- 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@googlegrou

[android-developers] Re: Initiating a GPRS connection

2010-01-08 Thread Android Development
Really need to find a way to do this guys. Help really appreciated. On Thu, Jan 7, 2010 at 6:13 PM, Android Development wrote: > Hello, > > Any feedback on how to achieve this task? > > On 1/4/10, Android Development wrote: > > Hello, > > > > If I wish to initiate a GPRS data connection programa

Re: [android-developers] Re: blocking UI thread when Yes/No AlertDialog is displayed

2010-01-08 Thread Romain Guy
It's not horrible, it's different. It's not more difficult or easier than MessageBox.Show, it's just different. > I need to not go forward with some code until the users has made its > decision. To have to do these very messy workarounds is just too sad = These are not workarounds, they're the wa

[android-developers] Re: blocking UI thread when Yes/No AlertDialog is displayed

2010-01-08 Thread Ted
swapnil: I dont understand the code that Romain posted. Would you like to help me out, sending some code if you have a "modal dialag" as you were looking for? I'd appreciate it =) Regards, Ted On 4 Jan, 11:51, swapnil kamble wrote: > Thanks Dianne for your nice explanation. I have used synchro

[android-developers] Re: blocking UI thread when Yes/No AlertDialog is displayed

2010-01-08 Thread Ted
Interesting thread. I actually want the exact same thing as swapnil kamble, coming from .NET it is very nice to deal with MessageBox.Show. The Android way is actually horrible from where Im standing (even though I really like Android and the framework in general). I need to not go forward with so

Re: [android-developers] A Simple Layout question

2010-01-08 Thread TreKing
> > I can do it for normal screen sizes by hardcoding the screen size to > desired px but it is not working on bigger screensizes, I want to add this > in layout.xml please advice. > You shouldn't be hard-coding pixels sizes for anything in your layouts. As you have already seen, this will break a

[android-developers] Re: ImageSpan not supported in RemoteViews ?

2010-01-08 Thread Koxx
I have the same problem :( -- 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.co

[android-developers] Re: No stats? 0 total; 0 active installs while 5000 AdMob impressions??

2010-01-08 Thread WoodManEXP
My app numbers have not changed in several days which strikes me as unusual as they were very active through October, November and December. But on about Jan 2 they stopped moving. And the active install numbers keep fluctuating in strange ways. Maybe all the Androids being advertised on TV just f

[android-developers] Re: EditTextPreference: how to make it single-line?

2010-01-08 Thread Edward Falk
On Jan 8, 8:12 am, Edward Falk wrote: > it's > not documented in the EditTextPreference page Ooor, I could have read the opening paragraph instead of skipping straight to the list of XML attributes. Duh. -- You received this message because you are subscribed to the Google Groups "Andro

Re: [android-developers] Re: abort outgoing call

2010-01-08 Thread Alejandro D. Garin
Hi, What do you mean with "not reinitiating the call" ? On Fri, Jan 8, 2010 at 4:07 AM, Gulfam wrote: > Hi , > > I was aborting BroadCastReceiver using abortBroadcast(); method. > Its working fine with 1.0 to 1.6 but on 2.0 or + its not working. I > have checked the documentation that is also

[android-developers] Re: EditTextPreference: how to make it single-line?

2010-01-08 Thread Edward Falk
On Jan 3, 11:13 am, Wayne Wenthin wrote: > android:singleLine="true" Ahh, perfect. I thought that attribute was only for TextView; it's not documented in the EditTextPreference page, but I guess I should have tried it anyway. Thank you very much. -- You received this message because you are

[android-developers] addToMyContactsGroup does not seem to work on HTC Hero

2010-01-08 Thread fry
Hi, I am adding a new contact programatically in this way: final Uri personUri = context.getContentResolver().insert (Contacts.People.CONTENT_URI, peopleValues); final long contactId = ContentUris.parseId(personUri); Contacts.People.addToMyContactsGroup(context.getContentResolver(), contactId);

[android-developers] Re: what is a suitable upper limit for application size?

2010-01-08 Thread Kaj Bjurman
25% Don't you think that that is too much? Most users install more than 4-5 applications. I would never ever install an application that is that large. I do however agree with the others who says that it's ok if you download the images dynamically, and stores it on the sdcard. That's how my applic

[android-developers] I am a german market developer. How can I see the english comments to my program?

2010-01-08 Thread Martin
Hi! I am a german market developer. How can I see the english comments to my program? I just see the german ones. Greetings, Martin -- 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@goo

Re: [android-developers] Re: what is a suitable upper limit for application size?

2010-01-08 Thread Cédric Berger
On Fri, Jan 8, 2010 at 15:43, ian wrote: > Thanks for the interesting suggestion, although it sounds a little > technical for my limited expertise. > > I don't like the idea of the users having to download all that data > every time they use my program. That basically turns the app into just > a

[android-developers] Re: No stats? 0 total; 0 active installs while 5000 AdMob impressions??

2010-01-08 Thread tobias429
The update of the market stats appears to have been down for the last two days. Mine have been updated again some hours ago. If you check back on the market you might see yours to be updated now as well. On 8 Jan., 09:13, greg1x wrote: > Hi! > > I have uploaded a free AdMob supported app to the m

Re: [android-developers] Re: Nine patch pre-scaling on Hdpi

2010-01-08 Thread Mariano Kamp
Hmmh, I checked again and it didn't work. Maybe it worked in the beginning and I am sure that I verified that with an 1.5 emulator, but I added different things meanwhile, e.g. added drawable-mdpi version without providing one in drawable also. But then it seems like I haven't tested that on 1.5 an

[android-developers] Re: AppWidget is not updating

2010-01-08 Thread Vikas1976
Forget it, I figured it out. In the "irrelevant code" I was calling onUpdate() in onReceive() whenever I wanted to update the app, but I was sending: new int[] {0} as my AppWidgetIds. Duh! Vikas -- You received this message because you are subscribed to the Google Groups "Android Developers"

[android-developers] Re: Chinese company offers translation for right to publish app on their market

2010-01-08 Thread Matt
I was also contacted by a Chinese company called, Netdragon Company. They are looking for applications to publish in their market. Does anyone know if they are a legitimate business, and safe to work with? Matt On Jan 8, 2:26 am, ko5tik wrote: > Why would it be illegal? If your application is u

[android-developers] Re: what is a suitable upper limit for application size?

2010-01-08 Thread ian
Thanks for the interesting suggestion, although it sounds a little technical for my limited expertise. I don't like the idea of the users having to download all that data every time they use my program. That basically turns the app into just a web site, sort of. I could probably shrink it all fro

[android-developers] Re: Android Coverflow widget

2010-01-08 Thread Taf
Thanks glad you like it :) On 8 Jan, 12:31, zero wrote: > good work, thanks for releasing as open source :) > > On Jan 8, 9:45 am, Taf wrote: > > > > > Hi, > > > I've had a go at creating a coverflow like widget. My results can be > > found here: > > >http://www.inter-fuser.com/2010/01/android-c

[android-developers] Re: OpenGL fixed point vs. floating point

2010-01-08 Thread Marc
Just render a small object using identical code except one is float and one is int, then time them. An API would be nice though. On Jan 7, 10:08 pm, Peter Eastman wrote: > > First you need to find exactly what kind of CPU it has. Then go to the > > manufactures web site and download the docs on p

Re: [android-developers] Re: MapView Overlay problem

2010-01-08 Thread TreKing
I'm still a bit confused on what you're doing, but I would suggest: 1 - Subclass ItemizedOverlay instead of Overlay to manage a collection of similar items at once. It maintains a list OverlayItems that represent each unique point on the map. In your case these would be the Track points you have.

[android-developers]

2010-01-08 Thread Kather Jailani
sent.from.G1 -- 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 opti

[android-developers] startActivityForResult & singleTop.

2010-01-08 Thread Keean Schupke
I need to create an activity that can be "singleTop" so that multiple intents get sent to the "onNewIntent" method without restarting the activity. I also need this activity to return a result. The basic behaviour is: Activity "A" calls startActivityForResult on "B" one or more times (providing

[android-developers] Re: OpenGL; GL11.glDrawTexiOES does not seem to work for Nexus One

2010-01-08 Thread Streets Of Boston
Thanks! This function is indeed standard GL 1.1. Maybe there's something else that I don't do right that happens to work on all other phones, but not on the Nexus: Here is the code that draw my background texture: beginBGDrawing(gl); gl.glBindTexture(GL10.GL_TEXTURE_2D, mBackgroundTextureID); (

Re: [android-developers] Developer console stopped updating?

2010-01-08 Thread Justin Giles
Just updated for me. Don't know why it was down. And no, the mass active install purging from Dec. 18 still hasn't been fixed. On Thu, Jan 7, 2010 at 6:34 PM, Greg Donald wrote: > On Thu, Jan 7, 2010 at 6:26 PM, nubin...@gmail.com > wrote: > > My "total" and "active install" numbers in Deve

[android-developers] AbortBroadcast Problem With 2.0 and 2.0.1 SDK's

2010-01-08 Thread Gulfam
Hi All, I am facing issue with 2.0 and 2.0.1 on aborting broadcast for out going calls. In my main activity on callButton press I am initiating call like this /*Mian Activity Where Call Initiating**/ public class MainActivity extends Activity implements OnClickL

Re: [android-developers] How to read XML file from sdcard and parse it?

2010-01-08 Thread Mark Murphy
ROHIT wrote: > I want to access the XML file from sdcard and i want to parse thar > file. How ta access this file and pass it to Parse method? Use Environment.getExternalStorageDirectory() and build a File object to point to the XML file in question. After that, if you are using DOM or SAX, it is

Re: [android-developers] My activity runs onCreate() every time and process do not disappear

2010-01-08 Thread Mark Murphy
Yuchih wrote: > Hello all: > I have a activity always runs onCreate() after I come back to previous > activity. > I think my emulator needs memory, so it killed my activity. > But I use eclipse DDMS tool to watch my process, it still there with > the same process id. > This really confuses me. Coul

Re: [android-developers] apk is being downloaded as zip file in IE

2010-01-08 Thread Mark Murphy
Jags wrote: > I develop for Android in mac . > > Apart from publishing my app in google market, I also provide the apk > file on my website. As, unlike iPhone android published apps dont give > us a link similar to itunes link to app, we provide our link pointing > to apk file. > > Now the proble

[android-developers] Re: What is the defalt screensize of emulator.

2010-01-08 Thread Sasikumar S
See this link http://www.androidpeople.com/category/screen/ On Jan 8, 11:39 am, Manoj wrote: > Please tell what is the default screensize of emulator. -- 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: Android Coverflow widget

2010-01-08 Thread zero
good work, thanks for releasing as open source :) On Jan 8, 9:45 am, Taf wrote: > Hi, > > I've had a go at creating a coverflow like widget. My results can be > found here: > > http://www.inter-fuser.com/2010/01/android-coverflow-widget.html > > If you fancy giving it a try I'd been interested in

[android-developers] Intent filter matching problem

2010-01-08 Thread Felipe Henriques da Silva
Hi everyone, I have a problem with an intent-filter matching. I am using the following filter for my activity: My objective is to only receive intents with images. The problem is that intents with mimetype "*/*" are also b

[android-developers] Re: apk is being downloaded as zip file in IE

2010-01-08 Thread zero
make sure you send the right mime type with your file. application/vnd.android.package-archive auto-detection of clients may interpret the file as a zip, because it is, sorta. ;) On Jan 8, 12:44 pm, Jags wrote: > I develop for Android in mac . > > Apart from publishing my app in google market, I

[android-developers] How to add footer and Header to a list

2010-01-08 Thread RamaMohan
Hi all, I have a list view and i need to add a header and footer .In the footer i need to have a button like Next to go to next page.I need it urgently. If anyone knows the answer please send me .. Thanks Ram -- You received this message because you are subscribed to the Google Groups "Android D

[android-developers] Does emulator 1.6/2.0 supports bluetooth and WIFI?

2010-01-08 Thread EvgenyV
Hi all! 1. Can I emulate the WIFI and bluetooth on emulator? 2. Can you send, please the links to examples for bluetooth and WIFI development? Thanks in advance, Evgeny -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group,

[android-developers] Re: create app that comes with a widget and the program

2010-01-08 Thread kirti kaul
Hi, This can be acheived by implementing the AppWidgetProvider Also you need to have a configuration activity,which launches the App widget... The implementation is simple,jus you need to add an activity and use shared preferences to communicate with the AppWidget There are many examples given,you

[android-developers] apk is being downloaded as zip file in IE

2010-01-08 Thread Jags
I develop for Android in mac . Apart from publishing my app in google market, I also provide the apk file on my website. As, unlike iPhone android published apps dont give us a link similar to itunes link to app, we provide our link pointing to apk file. Now the problem is, this apk file when dow

[android-developers] A Simple Layout question

2010-01-08 Thread Abdul Mateen
Hi, I want to add admob add in my application, I want to make application for every screensize, I am having a problem with is, I want to arrange a layout such that, ad comes on the top the rest of which should be webview. I can do it for normal screen sizes by hardcoding the screen size to desired

[android-developers] Re: Segfault in what looks like WebView

2010-01-08 Thread Krystian Lewandowski
Hi, same thing happens when i'm trying to use fbconnect-android sample on emulator (1.6): http://code.google.com/p/fbconnect-android/issues/detail?id=23 I don't have any Unix machine here, so can't build SDK/.so with debugging symbols and decode stack trace. Is there a way to do this other way? B

[android-developers] Re: What is the defalt screensize of emulator.

2010-01-08 Thread jwei512
Depends what skin you are using and what API level the emulator is set on... For instance, if you are using the default skin for the emulator on API Level 3, the screen size is 480 x 320. But again, this will change on a phone to phone basis. - jwei http://thinkandroid.wordpress.com On Jan 7,

Re: [android-developers] No stats? 0 total; 0 active installs while 5000 AdMob impressions??

2010-01-08 Thread Abdul Mateen
Well! I beleive that impression cpm(cost per thousand impression ) is not added in revenue until the end of payment processing. I think you will only see the per click revenue for now. am I right? A little advice. Update your application and add flurry and see the stats. Thank You. On Fri, Jan

[android-developers] Re: NPAPI support in Android 2.0 SDK WebView

2010-01-08 Thread garbeam
Hi there, any news on my NPAPI support question in Android 2.0+? Thanks, Anselm On Dec 15 2009, 4:03 pm, garbeam wrote: > Hi there, > > in older android SDK versions it was possible to load custom NPAPI > plugins into the WebView through reading them from assets and writing > them into the file

[android-developers] My activity runs onCreate() every time and process do not disappear

2010-01-08 Thread Yuchih
Hello all: I have a activity always runs onCreate() after I come back to previous activity. I think my emulator needs memory, so it killed my activity. But I use eclipse DDMS tool to watch my process, it still there with the same process id. This really confuses me. Could anyone explain why? Here

[android-developers] Re: what is a suitable upper limit for application size?

2010-01-08 Thread Nanard
Hi, I agree about the size limit problem. I think there should be a size limit (to keep RAM for OS & other app), but we should be able to check in our code if we are 'near' the allocation limit for our app. Anyway, for your case : would it be possible to REMOVE all images from the .apk, and down

[android-developers] Re: Chinese company offers translation for right to publish app on their market

2010-01-08 Thread ko5tik
Why would it be illegal? If your application is under something like CC, you already allowed it - and there is a small checkbox which allows application to be taken off phone - also invitation to republish -- You received this message because you are subscribed to the Google Groups "Android Deve

Re: [android-developers] How to read XML file from sdcard and parse it?

2010-01-08 Thread dilli rao
InputStream obj_is = null; Document obj_doc = null; DocumentBuilderFactory doc_build_fact = null; DocumentBuilder doc_builder = null; obj_is = new FileInputStream("/sdcard/xmlfile.xml"); doc_build_fact = DocumentBuilderFactory.newInstance(); doc_builder = doc_build_fact.newDocumentBuilder(); obj_d

Re: [android-developers] iPhone to Android: Creating "good" Android Interfaces

2010-01-08 Thread Michael Rueger
On 1/8/2010 7:57 AM, Ben Gotow wrote: Hey everybody, I'm porting an iPhone app to Android and I'm having trouble designing an interface that looks and feels "Android." I've read all of the design documents in the Android Dev Guide and looked through all the Google-designed apps, but I feel like

Re: [android-developers] Re: Where to get a Samsung Moment for development

2010-01-08 Thread dan raaka
if you are local to mountain view let me know. I can help -Dan On Thu, Jan 7, 2010 at 4:53 AM, Don wrote: > Hello, > I'm now having the exact same problem, a customer is reporting an > issue with my application on their Samsung Moment, but I can't debug > the issue as I don't have the device!

[android-developers] Android Coverflow widget

2010-01-08 Thread Taf
Hi, I've had a go at creating a coverflow like widget. My results can be found here: http://www.inter-fuser.com/2010/01/android-coverflow-widget.html If you fancy giving it a try I'd been interested in your feedback. I've only tried it on a HTC G1 running Android 1.1 Thanks, Neil. -- You rece

[android-developers] Re: get outgoing call details in background

2010-01-08 Thread instcode
I have a workaround for this one by deferring the call log retrieving process a little bit, say 200ms. I'm still looking for a more elegant solution. On Nov 20 2009, 11:06 pm, "patrizio.munzi" wrote: > Hi guys, > > in this last month I've been trying to develop on Android. > I've tried a few stuf

[android-developers] No stats? 0 total; 0 active installs while 5000 AdMob impressions??

2010-01-08 Thread greg1x
Hi! I have uploaded a free AdMob supported app to the market two days ago. AdMob shows 5000 impressions (and revenue), while: Android.com: 0 total; 0 active installs (0%) Android Market on the phone: <50 downloads 5000 Ad impressions (and revenue) for <50 downloads and 0 installs can not be tru

<    1   2