Re: [android-developers] application in Long press Home button(Recent task info)

2010-11-25 Thread Kostya Vasilyev
Try setting both: FLAG_ACTIVITY_NEW_TASK and FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS -- Kostya 25.11.2010 7:49, A N K ! T пишет: yes that what i meantbut if i set any flag except FLAG_ACTIVITY_NEW_TASK that activity wont start 2010/11/24 Kostya Vasilyev kmans...@gmail.com

[android-developers] Problem with list

2010-11-25 Thread pramod.deore
Hi all, I have a 2 ArrayList as ArrayListString results = new ArrayListString(); ArrayListString results1 = new ArrayListString(); From database I retrieved data and display them in the form of list. results.add( rid+:+roomName+?+sid+,+switchName); results1.add( roomName+-+switchName);

[android-developers] [Android] If modify framework layer code, how to debug it validly?

2010-11-25 Thread kevens hao
Now i modify framework code in source code, so every time i must rebuild the whole source code and view the result. Any debug skill to improve the effect? Thanks. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send

Re: [android-developers] [Android] If modify framework layer code, how to debug it validly?

2010-11-25 Thread Dianne Hackborn
You should ask these kinds of questions in android-porting. On Thu, Nov 25, 2010 at 12:36 AM, kevens hao ithjf.kev...@gmail.com wrote: Now i modify framework code in source code, so every time i must rebuild the whole source code and view the result. Any debug skill to improve the effect?

[android-developers] Re: SAX- \n \r not recognized

2010-11-25 Thread Jens
A single LF is the expected output for CR LF sequences. Normalization is part of the deal with XML. http://www.w3.org/TR/REC-xml/#sec-line-ends In short: Find a non-conformant XML parser or encode your content. On 23 Nov, 06:04, Android Humanoid droid.hu...@gmail.com wrote: SAXParserFactory

[android-developers] Re: Problem with list

2010-11-25 Thread pramod.deore
is there is any way using that I can hide some part of list. If suppose my list is like 1:Hall:1:AC 1:Hall:2:TV 1:Hall:3:Tube But I want to show list as Hall:Ac Hall:TV Hall:Tube. On Nov 25, 1:21 pm, pramod.deore deore.pramo...@gmail.com wrote: Hi all, I have a 2 ArrayList as

[android-developers] Re: Application Icon Badge

2010-11-25 Thread String
On Nov 25, 7:31 am, guru sagar gurusagar...@gmail.com wrote:                    I want to know weather it is possible to keep badges on application Icons in android .,For example if i have unread sms in then it should display it on the icon No, I think you're confusing Android with some other

[android-developers] Re: PUBLISHED APPS MISSING FROM UPDATED CONSOLE

2010-11-25 Thread Nicolas Thibaut
thanks, it works for me I can publish :) On 25 nov, 10:04, String sterling.ud...@googlemail.com wrote: So, my best selling app was also AWOL from the console this morning. But it IS still visible in the Market client, and I can still edit it by entering its Console URL manually:

Re: [android-developers] Re: Problem with list

2010-11-25 Thread Kumar Bibek
Not sure about your exact requirement, but I guess Expandable list View could be of help.. Kumar Bibek http://techdroid.kbeanie.com http://www.kbeanie.com On Thu, Nov 25, 2010 at 2:42 PM, pramod.deore deore.pramo...@gmail.comwrote: is there is any way using that I can hide some part of

[android-developers] Image Resizing and rescaling from code

2010-11-25 Thread Atik
Hi Friends, i have two images, first image of size 345x 465 and second of 495x321. so when i m using the first image in image view or layout, the image is best fitted with screen whereas when i am using second image then its not taking the full height of the phone or emulator and making data /text

Re: [android-developers] Re: Application Icon Badge

2010-11-25 Thread guru sagar
Hi String, can we make app widgets embedd into application icon., Thanks, Gurusagar -- 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] Camera Hardware abstraction layer for froyo

2010-11-25 Thread venu
Hi all, I am porting android onto dm365.I am using froyo. My camera(mt9p031) is not working. I enable v4l drivers required for camera hardware in kernel level. How to write HAL for this camera in froyo. Any suggestions welcome.. Thanks in advance -- You received this message because you are

[android-developers] Re: PUBLISHED APPS MISSING FROM UPDATED CONSOLE

2010-11-25 Thread String
So, my best selling app was also AWOL from the console this morning. But it IS still visible in the Market client, and I can still edit it by entering its Console URL manually: http://market.android.com/publish/Home#EDIT_APPLICATION?pkg=com.package.name Not that they shouldn't fix this... just

Re: [android-developers] application in Long press Home button(Recent task info)

2010-11-25 Thread A N K ! T
ya thanks by setting these two attribute in manifest it is working fine now android:excludeFromRecents=true android:taskAffinity=com.callH 2010/11/25 Kostya Vasilyev kmans...@gmail.com Try setting both: FLAG_ACTIVITY_NEW_TASK and FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS -- Kostya

Re: [android-developers] application in Long press Home button(Recent task info)

2010-11-25 Thread Kostya Vasilyev
OK, good. -- Kostya Vasilyev -- http://kmansoft.wordpress.com 25.11.2010 12:29 пользователь A N K ! T ankit.awasth...@gmail.com написал: ya thanks by setting these two attribute in manifest it is working fine now android:excludeFromRecents=true android:taskAffinity=com.callH 2010/11/25

[android-developers] touch zoom for image

2010-11-25 Thread Atik
hi, i have an image , the text is not much clearly visible so after displaying the image then i want that if user touch on screen the particular part will zoom by giving him the clear view to read... thx -- You received this message because you are subscribed to the Google Groups Android

[android-developers] Google Maps API

2010-11-25 Thread pedr0
hi at all, I am currently developing an little application which use API Maps and I have some problems: I would like shows an comic style comic could (like Web Google Map) when the users touch an overlay item present on the map, how can I do this? I have to write by hands the code that do this?

[android-developers] Re: Problem with list

2010-11-25 Thread pramod.deore
Thanks Bibek for reply, I have following code public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); System.out.println (Inside onCreate method of ShowStatus); anim = AnimationUtils.loadAnimation( this, R.anim.magnify ); try

[android-developers] Re: Application Icon Badge

2010-11-25 Thread String
No, app widgets get placed onto the home screen. Please read: http://developer.android.com/guide/topics/appwidgets What I meant in my first response was, you can't dynamically change your app's launcher icon. That's an iOS trick. Android has other patterns for delivering that sort of information

Re: [android-developers] Re: Problem with list

2010-11-25 Thread Kostya Vasilyev
Pramod, Take a look at CursorAdapter: it uses a database cursor, which you can use in your other methods (such as context menu handlers) to get all necessary values directly from the database. It also lets you use your own view layout for your list items. A separate TextView for each data

[android-developers] Re: Problem with list

2010-11-25 Thread pramod.deore
Thanks Kostya. On Nov 25, 2:48 pm, Kostya Vasilyev kmans...@gmail.com wrote: Pramod, Take a look at CursorAdapter: it uses a database cursor, which you can use in your other methods (such as context menu handlers) to get all necessary values directly from the database. It also lets you use

[android-developers] Re: Google Maps API

2010-11-25 Thread pedr0
There was a mistake! Like a comic cloud, not could! Ops! :-) On 25 Nov, 10:25, pedr0 pulsarpie...@gmail.com wrote: hi at all, I am currently developing an little application which use API Maps and I have some problems: I would like shows an comic style comic could  (like Web Google Map)

[android-developers] Undeletable SMS

2010-11-25 Thread Android Test
Hi All, How to save an received SMS in another location (e.g. SD card) and make it no deletable? Assuming this received SMS contains important message (Like username) which will be required in the future. Regards. -- You received this message because you are subscribed to the Google Groups

[android-developers] Feature Graphic, High Resolution Application Icon and Promotional Video.

2010-11-25 Thread sblantipodi
Hi, as stated in other thread the Feature Graphic, High Resolution Application Icon and Promotional Video are always removed after we upload them. Is there someone who know when we can finally upload this file without having to re-upload and re-upload it? Do you know also what URL should we use

[android-developers] Re: Problem with AnimationDrawable

2010-11-25 Thread Serdel
Ok it still needs some more testing but it looks like I have solved the problem by creating the animation with manually adding Bitmaps as frames, and then calling recycle() on them. And I can now run the 2 animations with full frame and size. It is a less elegant approach and more 'hard-coded' but

[android-developers] Re: Problem with AnimationDrawable

2010-11-25 Thread Serdel
Ok it still needs some more testing but it looks like I have solved the problem by creating the animation with manually adding Bitmaps as frames, and then calling recycle() on them. And I can now run the 2 animations with full frame and size. It is a less elegant approach and more 'hard-coded' but

[android-developers] Re: Feature Graphic, High Resolution Application Icon and Promotional Video.

2010-11-25 Thread Adam Hammer
It's not always, but it's enough. There is a LOT of problems with the new console. 1) Paging broken in multiple ways (3 pages shown, page 2 has 1 item, page 3 has nothing) 2) Not all published apps showing 3) No unpublished apps 4) Occasional dropping of the high res and promotional items (I've

[android-developers] Re: Copy Protection ON and phones compatibility.

2010-11-25 Thread Johan Abramsson
Hi, Some information can be found here:http://developer.sonyericsson.com/ community/message/132088#132088 In short: Everytime SE issued a new firmware they needed to register it with Android Market, and that could according to their support not be performed until after the firmware had been

[android-developers] Re: Feature Graphic, High Resolution Application Icon and Promotional Video.

2010-11-25 Thread sblantipodi
ok, thanks. On Nov 25, 11:44 am, Adam Hammer adamhamm...@gmail.com wrote: It's not always, but it's enough. There is a LOT of problems with the new console. 1) Paging broken in multiple ways (3 pages shown, page 2 has 1 item, page 3 has nothing) 2) Not all published apps showing 3) No

[android-developers] Slider bar

2010-11-25 Thread pramod.deore
I want to draw slider bar(gauge) how to draw that? As I search but I didn't got the solution. Thanks -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from

[android-developers] Re: How to build a 2d GUI to an OpenGL ES app?

2010-11-25 Thread Eyvind Almqvist
Do you mean mixing Java and C++ in an Android project? SurfaceView and the GUI in Java and GLSurfaceView and the visual effects in OpenGLC+ +? On 25 Nov, 01:12, Miguel Morales therevolti...@gmail.com wrote: You can simply have a SurfaceView overlaying your GLSurfaceView and draw whatever HUD

[android-developers] How to implement 3D morphing in Open GL ES?

2010-11-25 Thread Eyvind Almqvist
My company has released the M3G product Astral 3D worlds. It is a visual stimulation tool with lots of 3d effects like shapeshifting objects and mystical tunnels. These were conctructed by morphing different 3d meshes. These were easy to build, because M3G has classes for morphing. It is much

[android-developers] Why does android native contact app have CACHED NAME,CACHED NUMBER TYPE and CACHED NUMBER LABEL ????

2010-11-25 Thread Pink
Hi, Android native Contact application maitaining different data bases for Contacts and CallLog. Contact data base is having entire information about Contact. CallLog has information all Calls. Once CallLog Database is observed. The database is having information about CallLog like

Re: [android-developers] Re: How to build a 2d GUI to an OpenGL ES app?

2010-11-25 Thread Miguel Morales
What? No, no C++. Just use a GLSurfaceView to render all your 3d openGL stuff. Then add an overlay View (maybe a SurfaceView) and add all your regular 2D controls/widgets that come with Android. On Thu, Nov 25, 2010 at 3:11 AM, Eyvind Almqvist eyv...@mobile-visuals.com wrote: Do you mean

[android-developers] Re: How to use one application GUI code as jar file from other appliaction?

2010-11-25 Thread Pink
How can i achieve this? Any example may help me more? On Nov 24, 3:54 am, TreKing treking...@gmail.com wrote: On Fri, Nov 19, 2010 at 3:08 AM, Pink sivareddy.j...@gmail.com wrote: How to prevent these exceptions and make use one application GUI code in another? Sounds like you want an

[android-developers] Re: 1.5 quits for apparently no reason whilst animating (WIN DEATH)

2010-11-25 Thread Muleskinner
SOLVED! The issue appears to have been caused by keeping pointers for drawing on offscreen images. I have a six or seven small offscreen images in memory that are updated periodically. I was maintaining a Canvas pointer for each of them, e.g.: Bitmap bitmap = Bitmap.createBitmap( 128, 32,

[android-developers] How to put text below the image of the item in a mapview? (googlemap view)

2010-11-25 Thread Pableras
Hi i have a map with some items on it. Each item haves the same image (i use itemizedoverlay class, like in the android developers example) i need to have a text name below the image of the item, on the map how can i do it? -- You received this message because you are subscribed to the Google

[android-developers] Android SDK for Android

2010-11-25 Thread Adam Hammer
Is it possible to run a android sdk on android itself? Ie. develop and maintain software only using a android device? -- 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] Re: Restricted location in publisher GUI is not working on some devices

2010-11-25 Thread Chister Nordvik
I changed location to All countries and it appeared... so something is amiss here. But now I have all the other problems with apps disappearing, paging not working, screenshots disappearing so guess this issue is low on their list... On 13 Nov, 02:21, dan raaka danra...@gmail.com wrote: market

[android-developers] How to startActivity() in a subclass of Dialog?

2010-11-25 Thread xi developer
I have one subclass which extends Dialog class, it seems I can not use startActivity() function to start a new Activity in this subclass which extends Dialog class, how to resolve it? How to start a new Activity in a Dialog subclass? (In my customized dialog class, I have one button, when pressed,

[android-developers] Java and Native files for Bluetooth HF profile implemntation

2010-11-25 Thread Suresh Pal
Hi Guys, Can anyone point out what are files and codes, which I need to look to find out the HF profile implementation for Bluetooth. I have studied the code related to application development in bluetooth. But I am interested to know, how HF profile is implemented in Android, what are Java and

[android-developers] OTA XML provisioning document

2010-11-25 Thread Amit
Hi All, I already have a mechanism by which I can send OTA configuration settings(to provision APN for operators) to other mobiel platforms like Nokia S40. I want to extend my reach so that I can provision the Android Devices as well. I need a help regarding the provisioning XML example.

Re: [android-developers] How to startActivity() in a subclass of Dialog?

2010-11-25 Thread Mark Murphy
On Thu, Nov 25, 2010 at 7:33 AM, xi developer xidevelope...@gmail.com wrote: I have one subclass which extends Dialog class, it seems I can not use startActivity() function to start a new Activity in this subclass which extends Dialog class, how to resolve it? How to start a new Activity in a

Re: [android-developers] Google Maps API

2010-11-25 Thread Mark Murphy
https://github.com/jgilfelt/android-mapviewballoons On Thu, Nov 25, 2010 at 4:25 AM, pedr0 pulsarpie...@gmail.com wrote: hi at all, I am currently developing an little application which use API Maps and I have some problems: I would like shows an comic style comic could  (like Web Google

Re: [android-developers] Undeletable SMS

2010-11-25 Thread Mark Murphy
On Thu, Nov 25, 2010 at 4:58 AM, Android Test aandroidt...@gmail.com wrote: How to save an received SMS in another location (e.g. SD card) and make it no deletable? Ask the user to have it tattooed to their arm. Anything on the device is, in the end, deletable. -- Mark Murphy (a Commons Guy)

Re: [android-developers] Camera Hardware abstraction layer for froyo

2010-11-25 Thread Mark Murphy
Questions regarding Android firmware and porting do not belong on this list. Try: http://source.android.com/community/index.html On Thu, Nov 25, 2010 at 4:13 AM, venu venuthepo...@gmail.com wrote: Hi all, I am porting android onto dm365.I am using froyo. My camera(mt9p031) is not working. I

Re: [android-developers] Android SDK for Android

2010-11-25 Thread Mark Murphy
No, not as you are describing it. For starters, the Sun Java compiler does not run on Android. There is the Scripting Layer for Android (SL4A), which supports on-device development, but only has access to a tiny subset of the SDK. On Thu, Nov 25, 2010 at 7:21 AM, Adam Hammer

Re: [android-developers] Re: How to use one application GUI code as jar file from other appliaction?

2010-11-25 Thread Mark Murphy
On Thu, Nov 25, 2010 at 6:28 AM, Pink sivareddy.j...@gmail.com wrote: How can i achieve this? http://developer.android.com/guide/developing/other-ide.html#libraryProject http://developer.android.com/guide/developing/eclipse-adt.html#libraryProject -- Mark Murphy (a Commons Guy)

Re: [android-developers] Why does android native contact app have CACHED NAME,CACHED NUMBER TYPE and CACHED NUMBER LABEL ????

2010-11-25 Thread Mark Murphy
Because contacts can be deleted. On Thu, Nov 25, 2010 at 6:25 AM, Pink sivareddy.j...@gmail.com wrote: Hi,   Android native Contact application maitaining different data bases for Contacts and CallLog.   Contact data base is having entire information about Contact.   CallLog has

Re: [android-developers] Slider bar

2010-11-25 Thread Mark Murphy
Use android.widget.SeekBar On Thu, Nov 25, 2010 at 6:00 AM, pramod.deore deore.pramo...@gmail.com wrote: I want to draw slider bar(gauge) how to draw that? As I search but I didn't got the solution. Thanks -- You received this message because you are subscribed to the Google Groups Android

[android-developers] Re: Why does android native contact app have CACHED NAME,CACHED NUMBER TYPE and CACHED NUMBER LABEL ????

2010-11-25 Thread Pink
Thanks for ur replay. What i understood is, If we have contact with name 'tmp'. We made some calls to 'tmp'. So our call log data base has information about 'tmp'. After some time if i delete 'tmp' contact. Still call log needs to display 'tmp' as display name. If that is the case. Even there

[android-developers] Re: How to use one application GUI code as jar file from other appliaction?

2010-11-25 Thread Pink
Thanks for your replay. On Nov 25, 6:32 pm, Mark Murphy mmur...@commonsware.com wrote: On Thu, Nov 25, 2010 at 6:28 AM, Pink sivareddy.j...@gmail.com wrote: How can i achieve this?

[android-developers] Facebook Publish Error In Anroid Application

2010-11-25 Thread rokson
HI Friends, I implemented facebook connect in android using facebook-android-sdk. Most of the times I am getting error while i am publishing. Less number of times publish is working fine. Publish story window is opening good with What's on your mind text box. When i am clicking on the publish

[android-developers] Market is completely out of order !!

2010-11-25 Thread Yahel
No news from the Android team(one-man team most probably : ) about the market being completely screwed and unusable : - Half my app do not appear anymore in the list - Delete links under the screenshots don't work anymore - Even though there is a highres icon present and showing, saving sends

Re: [android-developers] Re: Why does android native contact app have CACHED NAME,CACHED NUMBER TYPE and CACHED NUMBER LABEL ????

2010-11-25 Thread Mark Murphy
On Thu, Nov 25, 2010 at 8:44 AM, Pink sivareddy.j...@gmail.com wrote: What i understood is, If we have contact with name 'tmp'. We made some calls to 'tmp'. So our call log data base has information about 'tmp'. After some time if i delete 'tmp' contact. Still call log needs to display 'tmp'

[android-developers] Re: Eclipse Reading Android Code as Java

2010-11-25 Thread Alex
Have you tried Fix Properties in Android Tools? On Nov 23, 5:30 pm, Chase chasie...@gmail.com wrote: I just inherited a project at my workplace and I am having trouble having Eclipse act as an Adroid editor rather than a Java editor. Pretty much everything is under lined and I can't seem to

[android-developers] How to read non-english fonts and display in app ?

2010-11-25 Thread Jaz
I am trying to read a raw text file with a non-english font and display the contents in a TextView. However, while reading I donot see the actual characters on the app. It displays special characters ... Code being used is below .. // find the view TextView tv =

[android-developers] Re: Feature Graphic, High Resolution Application Icon and Promotional Video.

2010-11-25 Thread String
On Nov 25, 10:44 am, Adam Hammer adamhamm...@gmail.com wrote: 3) No unpublished apps Funny, my unpublished apps are still showing. Not all of my published ones are, though. Methinks it's just flaky. String -- You received this message because you are subscribed to the Google Groups Android

[android-developers] Re: Google Maps API

2010-11-25 Thread pedr0
Thanks so much! I have some question about the layout component that you use in that program: 1) balloon_inner_layout, balloon_overlay_bg_selector are Android/ Google standard components or are components which you have developed personally? Ops!Only one question! On 25 Nov, 14:17, Mark

Re: [android-developers] Re: Google Maps API

2010-11-25 Thread Mark Murphy
Neither. I did not write that code, and there are no balloons in the Google Maps SDK add-on. On Thu, Nov 25, 2010 at 9:40 AM, pedr0 pulsarpie...@gmail.com wrote: Thanks so much! I have some question about the layout component that you use in that program: 1) balloon_inner_layout,

[android-developers] Re: Market is completely out of order !!

2010-11-25 Thread Sarwar Erfan
May be Google is not paying him well? :D On Nov 25, 7:55 pm, Yahel kaye...@gmail.com wrote: No news from the Android team(one-man team most probably : ) about the market being completely screwed and unusable : - Half my app do not appear anymore in the list - Delete links under the

[android-developers] Trouble with loud speaker off on Galaxy S

2010-11-25 Thread draf...@gmail.com
Has anyone else experienced this on the Samsung Galaxy S? When I use the folowing to turn the Loudspeaker on it works fine: audioManager.setSpeakerphoneOn(true); But when I try the opposite to turn it off: audioManager.setSpeakerphoneOn(false); The Loudspeaker stays on and audio is played via

[android-developers] Localization: no compression... huge APK...

2010-11-25 Thread Pent
I want to provide translations of my app in minimally 6 languages. I was horrified to discover that there's apparently no compression of the XML strings in res/values-xx. When I add another language (values- fr) with total file size of the XML files around 200K, it adds around 200K to the APK.

[android-developers] Passing object via intent

2010-11-25 Thread pedr0
Hi at all, I read some tutorial about the object of this topic (Passing object via intent) there tutorial said that there are two way: 1) My object must implement Parcelable Interface 2) I have to move my object static, for share data between activities. I have to share an ArrayListmyType and

Re: [android-developers] Passing object via intent

2010-11-25 Thread Kostya Vasilyev
If the process is killed, then everything is gone, including your static object. You can put a list of parcelables into an intent extra: http://developer.android.com/reference/android/content/Intent.html#putParcelableArrayListExtra(java.lang.String, java.util.ArrayList? extends

Re: [android-developers] Re: Market is completely out of order !!

2010-11-25 Thread Rob Franz
Any idea when this might be fixed? I can confirm the same problems for me - half of my listings are gone. I know it's Thanksgiving and all but this affects a lot of people, apparently. On Thu, Nov 25, 2010 at 9:15 AM, Sarwar Erfan erfanonl...@gmail.com wrote: May be Google is not paying him

[android-developers] Re: Passing object via intent

2010-11-25 Thread pedr0
But when you say process you are talking about the activity? I think yes but I ask for confirm. On 25 Nov, 17:06, Kostya Vasilyev kmans...@gmail.com wrote: If the process is killed, then everything is gone, including your static object. You can put a list of parcelables into an intent extra:

[android-developers] OpenGL on multiple threads with sharegroups

2010-11-25 Thread Phil Endecott
Dear All, I'm porting some iPhone OpenGL code that uses a separate thread for OpenGL texture loading. To do this, I create a new OpenGL context in the same sharegroup as the main rendering context, and then the textures loaded in one context are available to the other. I've not seen any

Re: [android-developers] Re: Passing object via intent

2010-11-25 Thread Kostya Vasilyev
25.11.2010 19:55, Mark Murphy пишет: On Thu, Nov 25, 2010 at 11:42 AM, pedr0pulsarpie...@gmail.com wrote: But when you say process you are talking about the activity? No, by process, he means process: http://developer.android.com/guide/topics/fundamentals.html#procthread Right :) --

Re: [android-developers] Re: Passing object via intent

2010-11-25 Thread Mark Murphy
On Thu, Nov 25, 2010 at 11:42 AM, pedr0 pulsarpie...@gmail.com wrote: But when you say process you are talking about the activity? No, by process, he means process: http://developer.android.com/guide/topics/fundamentals.html#procthread -- Mark Murphy (a Commons Guy) http://commonsware.com |

[android-developers] Re: Market is completely out of order !!

2010-11-25 Thread niko20
UGH THIS IS BULLSH*T, on a holiday, we want to upload new versions to get lots of new business, and the market is screwed up again! -niko On Nov 25, 10:07 am, Rob Franz rob.fr...@gmail.com wrote: Any idea when this might be fixed?  I can confirm the same problems for me - half of my listings

Re: [android-developers] Re: Market is completely out of order !!

2010-11-25 Thread Rob Franz
It appears that someone is doing something on Google's end - I can see most (but not all) of my apps in the Market. So it appears they're trying to rectify the issue. On Thu, Nov 25, 2010 at 11:13 AM, niko20 nikolatesl...@yahoo.com wrote: UGH THIS IS BULLSH*T, on a holiday, we want to upload

[android-developers] Re: Feature Graphic, High Resolution Application Icon and Promotional Video.

2010-11-25 Thread blindfold
Right, in my case too the uploaded feature graphic and hi-res icon keep vanishing some time after a successful upload. Looks like someone misconfigured the Monkey tool to write software rather than test software. On Nov 25, 11:10 am, sblantipodi perini.dav...@dpsoftware.org wrote: Hi, as

Re: [android-developers] Trouble with loud speaker off on Galaxy S

2010-11-25 Thread David Fisher
Hi, Which OS version there is on your samsung Galaxy S? I have 2 of them, one with froyo and one with Eclair OS. On the Froyo, the setspeakerphone is a bit of a trouble. On the 2.1 it works fine. On Thu, Nov 25, 2010 at 3:36 PM, draf...@gmail.com draf...@gmail.comwrote: Has anyone else

[android-developers] Licensing on multiple devices

2010-11-25 Thread jb
Hi, I have a general licensing question. If a user buys my app, can he install it on multiple android devices that he owns or is it limited to 1 license 1 device. Thanks, jb -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this

[android-developers] Text entry in landscape needs improvement

2010-11-25 Thread sirdan
I'm trying to use the built-in search UI provided by Android to provide search in my landscape-mode app. I find the UI to be clumsy and makes the user lose context by obscuring the entire screen when the entry field and keyboard appear. Is there a way that the text entry part of the search screen

[android-developers] Re: Licensing on multiple devices

2010-11-25 Thread webmonkey
http://market.android.com/support/bin/answer.py?hl=enanswer=113410 On Nov 25, 7:01 pm, jb cona...@gmail.com wrote: Hi, I have a general licensing question. If a user buys my app, can he install it on multiple android devices that he owns or is it limited to 1 license 1 device. Thanks,

[android-developers] Re: button on screen that controls page sliding

2010-11-25 Thread timecatcher3
Hi TreKing, I want to use the ViewFlipper or ViewSwitcher with animation but want to control the sliding like the sliding drawer button does for the Android App Menu? On Nov 23, 6:15 pm, TreKing treking...@gmail.com wrote: On Sat, Nov 20, 2010 at 4:51 PM, timecatcher3

Re: [android-developers] Re: button on screen that controls page sliding

2010-11-25 Thread Mark Murphy
On Thu, Nov 25, 2010 at 3:08 PM, timecatcher3 timecatch...@gmail.com wrote: I want to use the ViewFlipper or ViewSwitcher with animation but want to control the sliding like the sliding drawer button does for the Android App Menu? Neither ViewFlipper nor ViewSwitcher are designed for that

Re: [android-developers] Re: button on screen that controls page sliding

2010-11-25 Thread TreKing
On Thu, Nov 25, 2010 at 2:08 PM, timecatcher3 timecatch...@gmail.comwrote: I want to use the ViewFlipper or ViewSwitcher with animation but want to control the sliding like the sliding drawer button does for the Android App Menu? On Tue, Nov 23, 2010 at 5:15 PM, TreKing treking...@gmail.com

Re: [android-developers] Re: Android Market Console Pagination

2010-11-25 Thread TreKing
On Wed, Nov 24, 2010 at 10:34 PM, Adam Hammer adamhamm...@gmail.com wrote: Especially since basic pagination is something a first year student should be able to do. You're assuming the people behind the Android Market website have this much experience.

Re: [android-developers] GPSProvdier is enabled or not

2010-11-25 Thread TreKing
On Wed, Nov 24, 2010 at 12:21 AM, cool.manish mannishga...@gmail.comwrote: My query is if manager.isProviderEnabled( LocationManager.GPS_PROVIDER ) gives me false then will requestLocationUpdates not work. or even if GPS is not enabled on my cell requestLocationUpdates will automatically

Re: [android-developers] can we create magnifier in android

2010-11-25 Thread TreKing
On Wed, Nov 24, 2010 at 2:30 AM, Atik atik0...@gmail.com wrote: can we create magnifier in android to read the text on some surface like newspaper etc. i need to save the zoom level for that perticluar appl ..is it possible in android.. Without fully understanding what you're asking or what

Re: [android-developers] Help needed for Context object: GPS implementation

2010-11-25 Thread TreKing
On Wed, Nov 24, 2010 at 3:02 AM, cool.manish mannishga...@gmail.com wrote: Can I start my GPS listener from one activity and can fetch coordinate in some other activity? You can start it in one activity then *pass* the information you get to another activity, if that's what you mean.

Re: [android-developers] when i connect facebook through android after sign in ....

2010-11-25 Thread TreKing
On Wed, Nov 24, 2010 at 1:31 AM, blackpuma786 blackpuma786 blackpuma...@gmail.com wrote: please help me You'll have to provide a lot more information if you expect to get help. - TreKing

Re: [android-developers] How to put text below the image of the item in a mapview? (googlemap view)

2010-11-25 Thread TreKing
On Thu, Nov 25, 2010 at 6:00 AM, Pableras elpablosa...@gmail.com wrote: how can i do it? Override the draw (or onDraw, whichever it is) for you ItemizedOverlay subclass, iterate over your list of items, calculate the screen position from the geo-coordinates, and use the Canvas given to you to

Re: [android-developers] Facebook Publish Error In Anroid Application

2010-11-25 Thread TreKing
On Thu, Nov 25, 2010 at 7:54 AM, rokson kiranrepa...@gmail.com wrote: How can i fix this error? If anybody knows please let me know. You should probably try facebook api specific forums for this type of question.

Re: [android-developers] Passing object via intent

2010-11-25 Thread TreKing
On Thu, Nov 25, 2010 at 9:55 AM, pedr0 pulsarpie...@gmail.com wrote: I read some tutorial about the object of this topic (Passing object via intent) there tutorial said that there are two way: 1) My object must implement Parcelable Interface 2) I have to move my object static, for share

Re: [android-developers] Re: Market is completely out of order !!

2010-11-25 Thread TreKing
No one from the Market team reads this group. If you have issues, this is your best option: http://www.google.com/support/androidmarket/bin/request.py?contact_type=publisher - TreKing

Re: [android-developers] Feature Graphic, High Resolution Application Icon and Promotional Video.

2010-11-25 Thread TreKing
On Thu, Nov 25, 2010 at 4:10 AM, sblantipodi perini.dav...@dpsoftware.orgwrote: Is there someone who know when we can finally upload this file without having to re-upload and re-upload it? Do you know also what URL should we use for Promotional Video? Is it good a youtube url or they need a

[android-developers] SMS from laptop

2010-11-25 Thread XiaoXiong Weng
Hi, I was wondering if it's safe to use the http protocol to retrieve the message(SMS) to the phone and send it. I currently have the simple SMS outbound working. I'm planning to use $_POST in php give a unique id to the sender and retrieve the message through

Re: [android-developers] Accessing Video Thumbnail

2010-11-25 Thread Julius Spencer
Hi, I got this working in the end using the advice here: http://www.mail-archive.com/android-developers@googlegroups.com/msg24164.html Part of the problem was that I was looking for the wrong media type or more correctly, I was telling the scanner it was of a different mime type so it wasn't

[android-developers] Re: Android SDK for Android

2010-11-25 Thread Adam Hammer
It would be a interesting project. It would be awesome to be able to do full android development from android. Someone should get to bootstrapping this one. On Nov 25, 5:30 am, Mark Murphy mmur...@commonsware.com wrote: No, not as you are describing it. For starters, the Sun Java compiler does

[android-developers] unable to load listview from aSync Task, see the code

2010-11-25 Thread Atik
Hi i m trying to load the list view from websrvice.. i m getting the output in list when i m doing it alone but now in aSync task its giving me error.. see the class file below package com.example; import java.io.IOException; import java.util.ArrayList; import org.apache.http.ParseException;

[android-developers] ACTION_BATTERY_CHANGED

2010-11-25 Thread Diego Queiroz
Hi all, I have no phones to test right now an the emulator keeps sending me this broadcast. Just to know: When this broadcast is sent? when the level of the battery changes? ty in advance =) -- *Diego Queiroz* -- You received this message because you are subscribed to the Google Groups

[android-developers] Re: Graphic rendering issues on simple components

2010-11-25 Thread niko20
Hi, this can happen if your app targets api 1.6 but has the anyDensity set to false - in that case Android will scale any graphic, and make it look like crap on devices with other resolutions. I just found this out in one of my apps, but fixed it by setting anyDensity to true and modding my code.

[android-developers] OnKeyListener not working on virtual keyboard

2010-11-25 Thread bobetko
I don't understand why this peace of code is not working. OnlyDelete and Return keys are detected. Listener doesn't fire for any other key. My device is Nexus One. I tried to override activity's OnKeyDown method and that's even worse. The only detected button was hardware back button. I am

[android-developers] Re: how to publish paid app from INDIA

2010-11-25 Thread Eric Wong (hdmp4.com)
Safe or not depends if you trust the other party (e.g. me) or not. Same with any other business transactions. You have to work out the risk yourself. Cheers Eric On Nov 25, 5:33 pm, Atik atik0...@gmail.com wrote: bro but how is it ??? means is it safe??? hope u got my point..can u tell me

Re: [android-developers] ACTION_BATTERY_CHANGED

2010-11-25 Thread TreKing
On Thu, Nov 25, 2010 at 8:44 PM, Diego Queiroz dibo...@gmail.com wrote: When this broadcast is sent? when the level of the battery changes? Yes http://tinyurl.com/33d2bel - TreKing

Re: [android-developers] How to read non-english fonts and display in app ?

2010-11-25 Thread Frank Weiss
If I'm not mistaken, the Dalvik VM uses UCS-16 internally, just like the Java VM. The question is probably what encoding does the file use, UTF-8? Is the InputStreamReader using the correct encoding? -- You received this message because you are subscribed to the Google Groups Android Developers

  1   2   >