Re: [android-developers] Undocumented manifest tag

2011-04-04 Thread Dianne Hackborn
This is for system updates of applications built in to the system image. It is not of any use for third party applications. On Sun, Apr 3, 2011 at 10:52 PM, Brill Pappin bpap...@sixgreen.com wrote: Looking through the OS source, I'm seeing places were the tag original-package

[android-developers] Re: Refresh Imageview PLEASE HELP killing me!

2011-04-04 Thread Craig Mitchell
You need to give control back to the EDT so it can draw the image. The for loop needs to be in a non EDT thread. On Apr 4, 3:01 pm, Noobs41bot jspi...@gmail.com wrote: Ok so I have all the code in place to create a random degree of rotation between a start and finish... works great... i have

[android-developers] Getting rid of white line in Tab Widget

2011-04-04 Thread AlexBonel
Didn't find any discussion of this problem in the group. How can I get rid of the white line under tab widgets in TabActivity? And if anybody knows I would be verry gratefull if you would also tell me how to change background color in TabWidget? -- You received this message because you are

[android-developers] Re: Creating 9-patch Images on Device

2011-04-04 Thread skink
On 4 Kwi, 07:48, Matt M matthew.mag...@gmail.com wrote: skink, Thank you for your input. I have not considered Drawable, but probably because I do not know much about them :) What do they bring to the table to appropriately stretch an image like a 9patch? Thank you! Matt. Matt, i'm

Re: [android-developers] Enabling ProGuard in Eclipse

2011-04-04 Thread 陈彧堃
it‘s ok to append to the end, I tried. On Wed, Jan 19, 2011 at 3:02 PM, Ted Hopp ted.h...@gmail.com wrote: The new documentation on ProGuard (http://developer.android.com/guide/ developing/tools/proguard.html) says to add a line to the default.properties file in the project home directory.

Re: [android-developers] Gallery default item selected is in center

2011-04-04 Thread umakantpatil
No reply yet on this topic ? Not even from some Android Framework developers ? :( -- 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] Re: Monkeyrunner not capturing screenshot correctly

2011-04-04 Thread Diego Torres Milano
In some cases, after trial and error, I had to add up to 3 secs. On Apr 3, 2:28 pm, SJ boris.iva...@gmail.com wrote: Thanks Diego. (Actually Im using your approach with Eclipse but on MAC. Works well. But not manage on Win.) MonkeyRunner.sleep(1.0) result = device.takeSnapshot()

[android-developers] Re: adb devices returns an empty list

2011-04-04 Thread FrankG
Hello Argon, IMHO you should switch to android-platform, as this kind of question is out of scope of the android sdk. And their you should provide by far more details. I.e. from where comes your platform, do you have the platform code, is the adbd started by init.d, can you see adbd using ps on

[android-developers] ORMs for Android

2011-04-04 Thread Er. syed imran ali
Hi all, i have to save some complex data in to database, so for that i don't want to use sqlite3, instead of that i want to use any ORM supported by Android, I found db4o, i am try to implement that, in between i want to know from your side, is here any other ORM that Android has been supporting

[android-developers] Get data from EditText

2011-04-04 Thread rishabh agrawal
How to get data from EditText how to stored in Buffer i.e Integer.. -- 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] Is CursorAdapter ok to use?

2011-04-04 Thread space
Hi! I got an ANR in an application which used the CursorAdapter, and I started thinking if it's allowed to be used or not. It's pretty common to create a ListActivity (or just an Activity with a ListView) and set a CursorAdapter as adapter to it. However when the data set changes, the

[android-developers] Re: Get data from EditText

2011-04-04 Thread Zsolt Vasvari
Yes. On Apr 4, 3:36 pm, rishabh agrawal android.rish...@gmail.com wrote: How to get data from EditText how to stored in Buffer i.e Integer.. -- 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] Problem in setting Camera in 3D Android using opengles

2011-04-04 Thread Atul Prakash
hii m working on android 3D animation..i need to rotate my camera settings..using GLSURFACEVIEW i set up a viewport and frustum...now i want to rotate my camera in scene ...for that i need matrix of each object and of camera too...can anybody suggest any method so that i can render my scene

[android-developers] Re: Android app download stats not updating

2011-04-04 Thread SendOutEmails
Yes, im seeing no data for all my apps now for the last 5 days. It would be good to have a solid update. Please! -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To

Re: [android-developers] Is CursorAdapter ok to use?

2011-04-04 Thread Kostya Vasilyev
Reading should be Ok, perhaph there is something unusual going on in your code? The last function on the stack is SqliteDatabase.lock - do you perhaps have a background thread that also locks the database for a long time? -- Kostya 2011/4/4 space pal.sz...@gmail.com Hi! I got an ANR in an

[android-developers] HDMI out API

2011-04-04 Thread dasorin2000
There is some API to handle HDMI out screen in Android or is just a copy of original device display? Thanks Sorin -- 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

[android-developers] WebView as map

2011-04-04 Thread hEngi
Hi, I'm new in android. I'd like to use a picture as a map. The easiest way is WebView. There is zoom and i can pull the image etc. But i have a problem. I cannot use my picture from res/drawable. I need to store it in the phone cause i need an url to it. Is there any way to load picture from res/

[android-developers] Re: Is CursorAdapter ok to use?

2011-04-04 Thread space
Yes, there is another thread, doing DB access as well. But I'm wondering about the general case: in general, doing any DB access (even queries/reads) can cause ANRs (the filesystem can be blocked, another thread or even another process could access the same DB, etc). So the question is: is

Re: [android-developers] Re: Is CursorAdapter ok to use?

2011-04-04 Thread Kostya Vasilyev
I've never had an issue with reading on the UI thread, and even doing an occasional small update (and my current project does use a database and content providers quite a bit). Speficially, CursorAdapter is intended to be used from the UI thread - its data fetching callbacks, getCount, getItemId,

[android-developers] to implement a gallery getting resource from a webservice

2011-04-04 Thread Pinkesh Gupta
hi i am new to android i am implementing a gallery from the imageurl that i have obtained after parsing the .net web service using soap the code which i had implement is as follows: package com.WikiFun; import java.io.InputStream; import java.net.URL; import

[android-developers] Regarding security of the framework 2

2011-04-04 Thread madushanka
What is the best file encryption mechanism should use with android OS? symmetric algorithms(DES, AES, Blowfish) or asymmetric algorithms (RSA, DSA, PGP). ? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

Re: [android-developers] Re: does NFC in gingerbread support card simulate?

2011-04-04 Thread Michael Roland
Hallo Zhihong, I'm not sure what function you mean. In the Tags app i see a tab called My tag where you can share your tag with other Android phones (or any device that supports Android's non-standard way of exchanging NDEF messages over LLCP). If that's what you mean, that's not card/tag

Re: [android-developers] Regarding security of the framework 2

2011-04-04 Thread Marcin Orlowski
On 4 April 2011 11:03, madushanka chamilhewag...@gmail.com wrote: What is the best file encryption mechanism should use with android OS? symmetric algorithms(DES, AES, Blowfish) or asymmetric algorithms (RSA, DSA, PGP). ? Algorithms are usually NOT implementation dependent - crypto one are

[android-developers] Start Dialer with delay

2011-04-04 Thread viktor
Hi, My issue is that need to show in Dialer correct number when incoming call, just trick number in Dialer. I tried to add temp contact to contacts DB, but Dialer doesn't sync the contact!? Is it possible to start Dialer with some delay or deny starting and then restart it? -- You received

[android-developers] Re: in-app billing problems

2011-04-04 Thread Peter
I discovered the same. You need a production signed apk on your device to test this. I also saw that you are charged for testing this. But you can refund the money later, so that shouldn't be a problem. Actually I don't get why I need to create a test account for testing this, because everything

Re: [android-developers] Re: in-app billing problems

2011-04-04 Thread Kostya Vasilyev
A test account lets you make purchases with your actual product ids, as a final test, before you publish the application. I don't think you can do this with any other account. 04.04.2011 13:34 пользователь Peter peter.fort...@gmail.com написал: I discovered the same. You need a production signed

[android-developers] Tansition between two Images.

2011-04-04 Thread Aditya
Hello, I need to keep an image in background and rotate or do any other animation on top of that with another image. But I cant keep any image in background. Can any one please help me? Thanks Aditya.

Re: [android-developers] Tansition between two Images.

2011-04-04 Thread Raghav Sood
Hi, If the background image is literally a background you could set it in XML using android:background=@dfrawable/whatever. If it is for a small portion of the screen you could put it in an image view and draw the animation on top of it. On Mon, Apr 4, 2011 at 3:21 PM, Aditya

[android-developers] read character unicode form sqlite

2011-04-04 Thread thavorac chun
Hi everyone, I'm working with sqlite right now and at this this moment i found a problem related to reading data from sqlite that i can not solve it. For example i have a french word Hôtel that have been insearted to database and after reading it to represent in device, it turn to Hà´tel

Re: [android-developers] read character unicode form sqlite

2011-04-04 Thread Kostya Vasilyev
Sqlite on Android is definitely Unicode aware and safe. Make sure you store and retrieve your data as Java String objects (not byte arrays). 04.04.2011 14:00 пользователь thavorac chun thavorac.c...@gmail.com написал: Hi everyone, I'm working with sqlite right now and at this this moment i found

Re: [android-developers] Tansition between two Images.

2011-04-04 Thread Aditya
Thanks for the response, But am looking something to be done in code itself, not in xml. On Mon, Apr 4, 2011 at 3:27 PM, Raghav Sood raghavs...@gmail.com wrote: Hi, If the background image is literally a background you could set it in XML using android:background=@dfrawable/whatever. If it

Re: [android-developers] Tansition between two Images.

2011-04-04 Thread Raghav Sood
You could use http://developer.android.com/reference/android/view/View.html#setBackgroundResource(int) On Mon, Apr 4, 2011 at 4:01 PM, Aditya dabhaga...@gmail.com wrote: Thanks for the response, But am looking something to be done in code itself, not in xml. On Mon, Apr 4, 2011 at 3:27 PM,

[android-developers] Re: WebView as map

2011-04-04 Thread hEngi
Maybe i will use assets folder^^ On Apr 4, 10:28 am, hEngi unnam...@gmail.com wrote: Hi, I'm new in android. I'd like to use a picture as a map. The easiest way is WebView. There is zoom and i can pull the image etc. But i have a problem. I cannot use my picture from res/drawable. I need to

[android-developers] Android horizontal scroll list like Gallery

2011-04-04 Thread umakantpatil
Hey, I want horizontal scroll like Gallery. Im not using Gallery because its center locked. Can some one here would help me out with this So I can have horizontal scrolling list? I think best example of this is pulse news reader :- https://market.android.com/details?id=com.alphonso.pulse

[android-developers] Market Statistics not working

2011-04-04 Thread Manuel R. Ciosici
Hello, Since April 1 I can't view statistics for one of my apps and for the other I only get statistics up to March 1. I've also been experiencing weird error messages saying that I can't have access to the information since I don't own the apps and Error 404 when I access the developer

[android-developers] hide top alternative keys on soft keyboard

2011-04-04 Thread Rich E
Hi all, I was wondering if it is possible to hide the top 'alternative' keys (!, ?, , ', :, all in yellow) on the soft keyboard before showing it. I would like to conserve as much space as possible and as these keys would never be used in this specific case, it would be great if I could tell

Re: [android-developers] Re: (File export) What's going on with my code?[NEED HELP]

2011-04-04 Thread Alaeddine Ghribi
So i maked this: catch(FileNotFoundException ex){ Toast.makeText(context, File Not found, Toast.LENGTH_SHORT).show(); String x=ex.getMessage(); Log.d(Carburant, x); } Here is the message i get: 04-04 11:07:20.851: DEBUG/Carburant(377): /alaa.peugeot.settings.dat (No such file

[android-developers] Re: Android Layouts Are Horrible

2011-04-04 Thread Mike dg
Maybe you should try a ListView instead. On Apr 4, 1:01 am, grndvl1 grnd...@gmail.com wrote: Why is it I spend more time dealing with the layout of items than the actual coding of the program?  The Eclipse Graphical Layout tool really blows as it has a ton of errors and can't handle simple

Re: [android-developers] read character unicode form sqlite

2011-04-04 Thread lbendlin
It doesn't actually matter how you store it as under the hood SQLite stores everything as string. You can dso dirty type conversion tricks when reading. From my experience SQLite uses ANSI strings though so in order to read your Unicode data back you actually have to use byte arrays for

Re: [android-developers] Re: (File export) What's going on with my code?[NEED HELP]

2011-04-04 Thread Kostya Vasilyev
A few things. 1 - For the target file, don't use SDCARD in your paths. Environment.getExternalStorageDirectory already gives you the path to the top-level directory (root) of the memory card. Android 2.2 uses a path that's different from earlier versions, and you can rely on this function to do

[android-developers] Re: hide top alternative keys on soft keyboard

2011-04-04 Thread lbendlin
Do you mean the row that appears on autocompletion when you selected a word? -- 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

Re: [android-developers] read character unicode form sqlite

2011-04-04 Thread Kostya Vasilyev
2011/4/4 lbendlin l...@bendlin.us It doesn't actually matter how you store it as under the hood SQLite stores everything as string. You can dso dirty type conversion tricks when reading. It does not store everything as a string. There are native types for integer, real and BLOB, in addition

Re: [android-developers] Re: does NFC in gingerbread support card simulate?

2011-04-04 Thread Michael Roland
Hallo JMC, I think there is a big misunderstanding out there of what card emulation is (and what it is not!). First of all, NFC has three different communication modes: * Reader/writer mode, * Peer-to-peer mode, and * Card-emulation mode *Reader/writer mode* is used to access NFC tag (i.e. tags

[android-developers] DirectFb

2011-04-04 Thread Nilly
Hi, I have followed the following link. http://groups.google.com/group/android-developers/browse_thread/thread/c97dd3301ffab308/c6a8f41261e619e8?show_docid=c6a8f41261e619e8 I have compiled successfully using the code you have suggested but i am not able to run it on the board. I have written an

Re: [android-developers] Re: (File export) What's going on with my code?[NEED HELP]

2011-04-04 Thread Alaeddine Ghribi
I really don't know what method to use! all right, i have this: copyfile(context,data/data/ carburant.android.com/files/alaa.peugeot.settings.dat,sdCard.getAbsolutePath() + /Carburant/storeddata.dat); I have to replace data/data/ carburant.android.com/files/alaa.peugeot.settings.dat by a method.

[android-developers] Loading/flashing system.img, userdata.img

2011-04-04 Thread Abhijeet Pathak
I have downloaded froyo and gingerbread AOSP code and have compiled it. I have got system.img and userdata.img as result. I am using Samsung Galaxy 3 (GT-I5801) phone. I am not sure but I guess it doesn't support fastboot. How do I flash these images to my phone? And also, will they overwrite

[android-developers] Loading/flashing system.img, userdata.img

2011-04-04 Thread Abhijeet Pathak
I also tried using fastboot. I am getting following response: #fastboot system /sdcard/system.img Error scanning partitions : No such file or directory -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email

[android-developers] Layout Question

2011-04-04 Thread Jake Colman
I have a layout that is displaying the time in the format 7:35 PM. I'd like the display to be centered horizontally and vertically within the layout. Here is what I am using: ?xml version=1.0 encoding=utf-8? RelativeLayout xmlns:android=http://schemas.android.com/apk/res/android;

Re: [android-developers] Loading/flashing system.img, userdata.img

2011-04-04 Thread Kostya Vasilyev
This is not the best place to ask this. Try android-porting or http://www.xda-developers.com 2011/4/4 Abhijeet Pathak pathak...@gmail.com I also tried using fastboot. I am getting following response: #fastboot system /sdcard/system.img Error scanning partitions : No such file or

[android-developers] Re: in-app billing problems

2011-04-04 Thread Peter
Of course. That makes sense. Didn't thought of that. On Apr 4, 11:41 am, Kostya Vasilyev kmans...@gmail.com wrote: A test account lets you make purchases with your actual product ids, as a final test, before you publish the application. I don't think you can do this with any other account.  

[android-developers] Problem Setting the Alpha Value for an Appwidget Background

2011-04-04 Thread Jake Colman
I want to be able to set the alpha value for my appwidget's background so that I can control its transparency at runtime. After googling a bit, I came up with the following: Drawable bg = Resources.getSystem().getDrawable(R.drawable.appwidget_bg); bg.setAlpha(100); This code throws a

[android-developers] Re: Resources can't be loaded in a Open GL live wallpaper

2011-04-04 Thread MobileVisuals
I have investigated this now and the same nullpoint exception happens everytime I call any of the ContextWrapper methods. This is very strange because GLWallpaperService extends from ContextWrapper, so there is an instance of ContextWrapper. I checked this with Log.i(this, +this ); which

Re: [android-developers] read character unicode form sqlite

2011-04-04 Thread lbendlin
I guess we're both right in some way :-) Here's the official documentation: http://www.sqlite.org/version3.html -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To

Re: [android-developers] Loading/flashing system.img, userdata.img

2011-04-04 Thread Abhijeet Pathak
Yes.. But Google Android documentation also does not describe any other method than fastboot.. and that too for only few phones. Thats why I asked here. -- 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] Loading/flashing system.img, userdata.img

2011-04-04 Thread Abhijeet Pathak
Is it compulsory to have special Google Development phone for ROM development or any Android phone can be used for 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] Text drawn by mPaint.drawText looks different with the default TextView?

2011-04-04 Thread mathcat
In a custom view extending View, I call mPaint.drawText in the onDraw method, with a new Paint object mPaint. But the text drawn looks different to the default TextView, the lines are thinner and not smooth(like rope bitten by some insects). I just want it to be the same look as TextView.How to do

Re: [android-developers] Re: Can't communicate with NfcB tag

2011-04-04 Thread Nick Pelly
Hi, Please don't hijack threads - this is a different discussion so a different thread :) I can give you a quick answer. We scan a *lot* of tags, and also noticed a small set of NfcB/ISO-DEP cards that are a little tricky. You have to orient the antennas in just the right alignment, and it can

[android-developers]StringIndexOutOfBoundsException when calling ava.net.URL.openStream

2011-04-04 Thread manigault
Hi all, I faced really nasty problem these days. I am executing the following code String destination = ;// this string is initialized before coming here URL url = null; InputStream inputStream = null; try { url = new URL(destination); inputStream =

[android-developers] Re: Text drawn by mPaint.drawText looks different with the default TextView?

2011-04-04 Thread skink
On Apr 4, 3:37 pm, mathcat scien...@gmail.com wrote: In a custom view extending View, I call mPaint.drawText in the onDraw method, with a new Paint object mPaint. But the text drawn looks different to the default TextView, the lines are thinner and not smooth(like rope bitten by some

[android-developers] Re: Text drawn by mPaint.drawText looks different with the default TextView?

2011-04-04 Thread mathcat
Thank you skink! But why the lines are thinner? how to make them the same as TextView? On Apr 4, 9:41 pm, skink psk...@gmail.com wrote: On Apr 4, 3:37 pm, mathcat scien...@gmail.com wrote: In a custom view extending View, I call mPaint.drawText in the onDraw method, with a new Paint object

[android-developers] Re: Text drawn by mPaint.drawText looks different with the default TextView?

2011-04-04 Thread mathcat
Thank skink! But why the lines are thinner than TextView? How to handle that? On Apr 4, 9:41 pm, skink psk...@gmail.com wrote: On Apr 4, 3:37 pm, mathcat scien...@gmail.com wrote: In a custom view extending View, I call mPaint.drawText in the onDraw method, with a new Paint object mPaint.

Re: [android-developers]StringIndexOutOfBoundsException when calling ava.net.URL.openStream

2011-04-04 Thread Daniel Drozdzewski
What does destination String equal to? have you changed it recently? On Mon, Apr 4, 2011 at 2:40 PM, manigault manig...@gmail.com wrote: Hi all, I faced really nasty problem these days. I am executing the following code    String destination = ;// this string is initialized before coming

[android-developers] Represent Graphically a Tree

2011-04-04 Thread Jordan
What would be the best way to represent a data tree graphically? I've thinked to use a multi level TextView, but these levels are implemented into ListView or I must implement them into my code? Like a File Manager, wich the filesystem is the tree structure and the directory and files are the

[android-developers] Re: More on Fragment inflation

2011-04-04 Thread blake
Code is here: http://callmeike.net/blake/android/contact-viewer-acp.tgz -- 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] Android horizontal scroll list like Gallery

2011-04-04 Thread Alessio Grumiro
I think you can use horizontal scrollview with horizontal linear layout inside. Inside linear layout you can put items without listview, i hope. Do you have a better solution? Bye 2011/4/4 umakantpatil umakantpat...@gmail.com Hey, I want horizontal scroll like Gallery. Im not using Gallery

Re: [android-developers] Re: (Full) NFC support for Android (on a Nexus S, specifically)

2011-04-04 Thread Nick Pelly
We're not in a hurry to add public API's for Card Emulation. It is a developers nightmare because most NFC hardware will only support one type of card emulation technology. And there are at least 4 very common types (Felica, Mifare Classic, Mifare Desire, ISO-DEP). So a developer would need to

Re: [android-developers] Problem Setting the Alpha Value for an Appwidget Background

2011-04-04 Thread Kostya Vasilyev
You are trying to load your own drawable from system resources. Get rid of the getSystem thing. 04.04.2011 17:23 пользователь Jake Colman col...@ppllc.com написал: I want to be able to set the alpha value for my appwidget's background so that I can control its transparency at runtime. After

[android-developers] Re: Activity lifecycle

2011-04-04 Thread Gino
In my tests, it looks like onSavedInstanceState() does not get called when switching from portrait to landscape mode, or vice versa. It does get called if you press the Home button. This is on an Android 2.1 device, but it most likely applies to 1.6 and afterwards as well. Does anyone know an

[android-developers] Using RatingBar as Fav with one star

2011-04-04 Thread ramindroid
Hi, I tried implementing the Favourite functionaity for any Contacts using the RatingBar (having one Star). I set the rating a 0.0 initially (with stepSize as 1.0). On clicking, the star gets rating 1 (turns green) but further click to make it 0 is not working ( on setting stepSize as 0.5, Its

[android-developers] Re: adb devices returns an empty list

2011-04-04 Thread argongold
Hi Frank, Thanks and I am going to post this message to android-platform group. regards, argon On Apr 4, 3:16 pm, FrankG frankgru...@googlemail.com wrote: Hello Argon, IMHO you should switch to android-platform, as this kind of question is out of scope of the android sdk. And their you

Re: [android-developers] Loading/flashing system.img, userdata.img

2011-04-04 Thread Marcin Orlowski
On 4 April 2011 15:34, Abhijeet Pathak pathak...@gmail.com wrote: Is it compulsory to have special Google Development phone for ROM development or any Android phone can be used for this? You're already told to ask on the *right* group. -- You received this message because you are

[android-developers] Re: Problem Setting the Alpha Value for an Appwidget Background

2011-04-04 Thread Jake Colman
Kostya, Ok, that was easy. So now I don't crash but the background isn't changing either! After setting the alpha value do I need to somehow tell the appwidget to use the modified background? Or am I actually going about this the entirely wrong way and not even using the right method?

Re: [android-developers]StringIndexOutOfBoundsException when calling ava.net.URL.openStream

2011-04-04 Thread Martin Obreshkov
No destination is dynamically returned by other request to the server. Basically i am a server which returns a list of urls which i am processing in a for loop using this code. The server is querying a search engine and returns urls which content mach the desired search. On Mon, Apr 4, 2011 at

Re: [android-developers] Re: widget on lockscreen

2011-04-04 Thread Martin Obreshkov
Hmm i noticed that MixZing is also having a lock screen widget. If this is only possible for HTC sense how they do it. On Wed, Jun 30, 2010 at 11:51 AM, Martin Obreshkov manig...@gmail.comwrote: Thanks On Wed, Jun 30, 2010 at 11:35 AM, Al Sutton a...@funkyandroid.com wrote: It's a firmware

[android-developers] Re: (Full) NFC support for Android (on a Nexus S, specifically)

2011-04-04 Thread JMC114
Hey Nick, Thanks for your reply. The main problem with peer-to-peer NFC, is that it is not (yet) compatible with existing infrastructures that depend on RFID. Despite P2P NFC being easier to use for developers, and having more potential in the long run, and being - I presume - more secure (or,

Re: [android-developers] Re: (File export) What's going on with my code?[NEED HELP]

2011-04-04 Thread TreKing
Review this: http://developer.android.com/guide/topics/data/data-storage.html http://developer.android.com/guide/topics/data/data-storage.htmlAnd Google Java IO. Once you have a better understanding of how the system deals with Files and what you're actually trying to do it should be a lot

Re: [android-developers] Market Statistics not working

2011-04-04 Thread TreKing
On Mon, Apr 4, 2011 at 5:40 AM, Manuel R. Ciosici manuelrcios...@gmail.comwrote: Has anyone experienced something like this before? Yes, we have: http://groups.google.com/group/android-discuss/browse_thread/thread/7070b84290d452ae

[android-developers] Testing Topic Please ignore

2011-04-04 Thread Noobs41bot
I keep posting, but they are not showing up... maybe its becuase of code examples in the txt... -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from

[android-developers] Re: Problem Setting the Alpha Value for an Appwidget Background

2011-04-04 Thread Jake Colman
Nothing! Since the drawable is already associated with the layout, shouldn't it simply use the modified drawable? KV == Kostya Vasilyev kmans...@gmail.com writes: KV What do you do with bg after setting the alpha? KV 04.04.2011 18:44 пользователь Jake Colman col...@ppllc.com написал:

[android-developers] Re: Text drawn by mPaint.drawText looks different with the default TextView?

2011-04-04 Thread lbendlin
http://developer.android.com/reference/android/graphics/drawable/BitmapDrawable.html look for the antialiases tag -- 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

[android-developers] Do OpenGL ES 2.0 phones also support ES 1.1?

2011-04-04 Thread GJTorikian
Given that the APIs for OpenGL ES 2.0 and 1.1 are incompatible, I was wondering if there is always some inherent support for both in Android, or if it was on a per phone basis. I am developing an ES 1.1 game. On my phone, a nearly two year old model, the game drew quite well, visually. On my

Re: [android-developers] Testing Topic Please ignore

2011-04-04 Thread TreKing
On Mon, Apr 4, 2011 at 10:15 AM, Noobs41bot jspi...@gmail.com wrote: I keep posting, but they are not showing up... maybe its becuase of code examples in the txt... No, it's because this forum runs on Google Groups. When posting assume it can take up to a week for anyone to see what you've

Re: [android-developers] Re: does NFC in gingerbread support card simulate?

2011-04-04 Thread Brill Pappin
Thanks for that Michael, That has got to be the most useful message in this list to date. - Brill Pappin Sixgreen Labs Inc. On Mon, Apr 4, 2011 at 8:07 AM, Michael Roland mi.rol...@gmail.com wrote: Hallo JMC, I think there is a big misunderstanding out there of what card emulation is (and

[android-developers] Re: does NFC in gingerbread support card simulate?

2011-04-04 Thread JMC114
Hey Michael, Thank you very much for you elaborate answer. As you suggested, I did not distinguish between smart cards and NFC tags. I have several follow-up questions regarding your answer. *Regarding P2P communication* - If I understand correctly, Android uses a proprietary protocol (which I

[android-developers] .Net Developer Job Opening - Valencia, CA

2011-04-04 Thread Makro Tech
Hi This is Vignesh with Makro Technologies, Inc. We have been in business for over 10 years and we are one of the Fast 500 National IT staffing and Solution firms in USA. Our clients include country’s top-notch IT, Healthcare, Pharmaceutical, Financial, Telecom,Government and other industries.

Re: [android-developers] Re: Problem Setting the Alpha Value for an Appwidget Background

2011-04-04 Thread Kostya Vasilyev
No. The widget is shown by a separate process, which loads drawables independently from your own. You could push the actual in-memory drawable over with setImageDrawable (iirc), but that's not very efficient, although for a small image like that should be OK. 04.04.2011 19:16 пользователь Jake

Re: [android-developers] Re: (File export) What's going on with my code?[NEED HELP]

2011-04-04 Thread Alaeddine Ghribi
All the informations are here i guess! But there is not an example :( ! Plus, the examples in in the android dev site are not very clear! Please, can you help me(i'm noob, i know :( :D!) ? Thanks. Accessing files on external storage If you're using API Level 8 or greater, use

[android-developers] Problem with activity group

2011-04-04 Thread Laxmi Verma
Hi, I am using ActivityGroup class for one of my tab in my application. 1) There is a tab activity class calling the activitygroup class. 2) In activity group class i am calling one activity say Activity A which is a list view. 3) On Activity A item click, I am calling another activity say

Re: [android-developers] Re: (File export) What's going on with my code?[NEED HELP]

2011-04-04 Thread TreKing
On Mon, Apr 4, 2011 at 10:54 AM, Alaeddine Ghribi alaeddineghr...@gmail.com wrote: All the informations are here i guess! But there is not an example You don't need an Android example. This is all standard Java IO. AGAIN: Google Java IO. Use the Android docs to get File objects to the right

Re: [android-developers]StringIndexOutOfBoundsException when calling ava.net.URL.openStream

2011-04-04 Thread Kostya Vasilyev
The top-level function you're calling should indeed only throw those exceptions that are specified in its signature. But if it calls other classes / methods, there could be all kinds of exceptions, including runtime errors (like the one you are facing). The former would be caught and eventualy

[android-developers] Building application based on 2.2 for 3.0

2011-04-04 Thread Manish Garg
Hi, I had created one application on 2.2. Now my requirement is to run same application on HonyComb but it is not getting build. Do i need to take care something? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send

[android-developers] Re: Android Layouts Are Horrible

2011-04-04 Thread Stephen Lebed
I've actually been very happy with the progress Google has made to the layout tools. It took a little while to get used to, but now I'm finding it very easy to arrange and rearrange design elements. Best, Stephen On Apr 3, 10:01 pm, grndvl1 grnd...@gmail.com wrote: Why is it I spend more time

[android-developers] [ask] responsiveness getting data from web service

2011-04-04 Thread Handita Okviyanto
Hey guys I wanna ask something about getting data through the web. About consuming data from webservice. I just newbie in android. I want to connect my application to json data on the web. I successfully made it and running it. But the problem is about responsiveness. I using thread to get data

[android-developers] [ask] responsiveness getting data from web service

2011-04-04 Thread Handita Okviyanto
Hey guys I wanna ask something about getting data through the web. About consuming data from webservice. I just newbie in android. I want to connect my application to json data on the web. I successfully made it and running it. But the problem is about responsiveness. I using thread to get data

Re: [android-developers] [ask] responsiveness getting data from web service

2011-04-04 Thread Kostya Vasilyev
Based on this: But the problem is about responsiveness. I using thread to get data from the server. But when I test using my device it takes so long and then android automatically show a dialog that my application is not responding and providing user to close it. It maybe takes more than 5

[android-developers] Layout and GraphicsView

2011-04-04 Thread henry
I need to add two buttons and one textView with a Graphicsview. How do I do this? I noticed an expert, Tony Obrien, has an code example, Could you share with me? Thanks, -Henry -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to

Re: [android-developers] Where is the source code of ADT

2011-04-04 Thread Tor Norbye
The source code for ADT is here: http://android.git.kernel.org/?p=platform/sdk.git;a=summary See http://source.android.com/source/download.html for instructions on how to get the source, and see http://tools.android.com/build for instructions on how to build the ADT. -- Tor On Sat, Apr 2, 2011

[android-developers] Re: [ask] responsiveness getting data from web service

2011-04-04 Thread Handita Okviyanto
Oke. I will try it. Thanks for the response On Apr 4o, 11:18 pm, Kostya Vasilyev kmans...@gmail.com wrote: Based on this: But the problem is about responsiveness. I using thread to get data from the server. But when I test using my device it takes so long and then android automatically

Re: [android-developers] Represent Graphically a Tree

2011-04-04 Thread TreKing
On Mon, Apr 4, 2011 at 9:06 AM, Jordan trolldr...@lulz-industries.orgwrote: What would be the best way to represent a data tree graphically? ExpandableListView? - TreKing

[android-developers] Re: Mac phone

2011-04-04 Thread bob
I tried typing lsusb and it says this: -bash: lsusb: command not found On Apr 3, 6:53 am, Nasif Noorudeen nas...@gmail.com wrote: use  lsusb check  it is detcting in usb after enabling usb-debugging.. On Sun, Apr 3, 2011 at 2:46 AM, Oliver Crow cro...@gmail.com wrote: I found I had

  1   2   3   >