[android-developers] Re: Published app not showing up on HTC Evo or Droid Incredible

2010-06-07 Thread Alberto
No, neither are running Froyo. The Evo I just picked up on Friday when it came out and haven't messed with the OS. Reading other threads here it seems most developers have given up on using copy protection altogether which is what I'm planning. It would be nice if someone from Google would

[android-developers] Passing Bitmap to Another Activity

2010-06-07 Thread mike
hi guys, i have a Bitmap image and i want to forward the bitmap to another activity. i have two activities Activity A and Activity B this is how i started the Activity B startActivityForResult(new Intent(Activity A.this, Activity B.class), 120); in activity B private void

[android-developers] Re: GPS/LocationManager does not give a fix in my app

2010-06-07 Thread Vinay S
Hi, Why don't you log this info and see.. On Status changed, it gives 3 values 1. Out of service 2. Temp not available 3. Available.. Just see what is the response it is giving.. If it is out of service, then you will not get the fix.. If it is Temp not avail - then try moving your phone to

Re: [android-developers] Tab Widget Text Color

2010-06-07 Thread Sasikumar.S
Thanks ... Its working fine now. On Sat, Jun 5, 2010 at 8:32 PM, Mark Murphy mmur...@commonsware.com wrote: Sasikumar.S wrote: Hi, In my application i'm using tab widget. how can we set the text color and font size to a single tab ?.. Any Suggestion ? Try

[android-developers] Text to speech unfunctional

2010-06-07 Thread Uander
Hi All , we have ported android 2.1 on one of our custom board . I was checking Text to speech functionality on it . I click Settings-Text to Speech . ..it gives n new screen All options other than Install voice data is greyed out . When I click on install voice data . it says The application

[android-developers] Re: Augmented Reality framework to display geoloc point

2010-06-07 Thread SREEHARI
Try using MIXARE or LAYAR application. Regards, SREEHARI -- 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] Re: How to get the point from click the google map

2010-06-07 Thread SREEHARI
Hi, Pls check this link http://mobiforge.com/developing/story/using-google-maps-android Regards, SREEHARI -- 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] How to decode a qr code image

2010-06-07 Thread grace
Hi, I am using Google Zxing QR code library for Android to scan the qrcodes and get the result.. now i don't want to use the camera to scan.. i want to scan a qr code that is stored as a image resource in try app.. can some body guide me how to do it.. any kind of example or documentation on how

[android-developers] Re: Problem when turning the phone

2010-06-07 Thread Jeremy
If you don't want the os to handle a configuration change (like a screen rotation), you can use the android:configChanges= tag in the manifest file to specify what config changes should be handled manually: activity android:name=SomeActivity android:label=@string/app_name

Re: [android-developers] Re: Close alertdialog.builder from an external button

2010-06-07 Thread Lamia Hannoun
Hi! Thx i tried the first method and it worked perfectly :) Thank u 2010/6/6 Lance Nanek lna...@gmail.com The create method of the builder creates and returns a new dialog each time you call it. So when you do that you are creating a second dialog that hasn't been shown, then calling dismiss

Re: [android-developers] refresh gallery after saving photo in android

2010-06-07 Thread nayana urs
hey even am working with photo editor application for android am able to edit images, add text to it but am not able to save it back to gallery can u please help me with your code with regards Nayana On Mon, Jun 7, 2010 at 10:49 AM, Andy Triboletti andy.tribole...@gmail.comwrote: Hi, I

[android-developers] App disappears from the Market after upgrade

2010-06-07 Thread Yuvi
Hi everyone! Yesterday something strange happened to my app after uploading an upgrade to the Market. First of all, my app is free, has the 'supports-screen' tag and has no 'copy-protection'. The last upgrade I did was on June, 2nd, and the app was visible on the market of my HTC Hero (Android

[android-developers] Re: android.permission.MOUNT_UNMOUNT_FILESYSTEMS problem / questions

2010-06-07 Thread FrankG
Sorry, I have no idea about your specific problem. Just a question and maybe hint : It sounds for me, that you will move your data between host and phone via usb mass storage , right? You will need to take care in the future in which usb mode your are .. this can be pictbridge, MTP or others as

Re: [android-developers] App disappears from the Market after upgrade

2010-06-07 Thread Sean Hodges
I can confirm the app is available on my Nexus One and the G1. It's also visible on the Android Market according to Cyrket: http://www.cyrket.com/p/android/net.yuvalsharon.android.netsms/ If it has only disappeared on your phone, perhaps you need to turn the sync setting on so the Android Market

[android-developers] Re: code for capturing screenshot of android device

2010-06-07 Thread Sudheendra
Hi max , thanks for reply and sorry for replying u so late :) I tried all the approaches in above code , but i didnt get the desired result . While debuging i can see that the view area is always null .. Is there some other approach to do this On Apr 28, 11:22 pm, Max Gilead

[android-developers] Injecting keyEvent without user interface

2010-06-07 Thread Sudheendra
Hi , I am not able to find a way to insert key events, i found some article related to it which uses IWindowManger class but it is not working on Android 2.1 virtual device . Please update me with API i have to use to inject keyevents in my application. Thanks -- You received this message

Re: [android-developers] Re: How to get the point from click the google map

2010-06-07 Thread zhou haitao
Thanks a lot! I have solved this problem.I define a overlay,and override the onTap method in the overlay. On Mon, Jun 7, 2010 at 2:42 PM, SREEHARI sreehari.madhusooda...@wipro.comwrote: Hi, Pls check this link http://mobiforge.com/developing/story/using-google-maps-android Regards,

Re: [android-developers] Re: Display Widget inside activity?

2010-06-07 Thread Kostya Vasilyev
Tommy, Another suggestion: I guess you are already using a service, so update code using RemoteViews is already isolated in one place. You could implement your own subclass of RemoteViews, override various methods for changing views, and instead directly update views in your activity. Or

[android-developers] How to add shadow for text drawn on google map

2010-06-07 Thread SREEHARI
Hi all, In my map application I am using overlay items and texts. I need shadows for both. For overlayitems I am able to display shadows. How to show shadow for the text drawn? Thanks in advance. Regards, SREEHARI. -- You received this message because you are subscribed to the Google Groups

[android-developers] Handle GONE in RelativeLayout

2010-06-07 Thread Klaus Kartou
Hi, I´m having some trouble figuring out how to handle views that are GONE in a RelativeLayout. I have a ListView that is aligned below a View using android:layout_below=@id/view. However, the view can be toggled and is sometimes GONE. At the moment when I toggle the GONE state on the view I add

[android-developers] Re: Playing live stream (RTP) in MediaPlayer

2010-06-07 Thread Jez
I'm confused by RTSP streaming - I've been trying to stream a LIVE video to Android (2.1) and not sure from the discussion here and previous posts that I've seen if Android can actually receive and play a LIVE video stream? I don't need any control of the video at all so just need to stream it.

[android-developers] Re: Text to speech unfunctional

2010-06-07 Thread Uander
Does this link would be indirection for my issue ? http://andappstore.com/AndroidApplications/apps/210486 its asking for language installer apk to be loadedd in /sdcard/* location . what steps are required basically to enable TTS ? and how can one make use of it ? Thanks : Uander On Mon, Jun

Re: [android-developers] Can't grok Activity life cycle.

2010-06-07 Thread Mark Murphy
Leigh McRae wrote: Looks like it says both :) Still whether it's before onPause() or onStop() doesn't matter much. To capture that state before the activity is killed, you can implement an ||onSaveInstanceState()

[android-developers] Re: Multitasking on Android - Why So Incredibly Bad?

2010-06-07 Thread mort
From what I got so far, it seems like the browser tries to save the entire page contents, which might cause troubles - either because it's too slow (1/5s time limit) or because there's not enough free space on the internal flash. Maybe it'd be a solution to save the state in steps. First the URLs,

[android-developers] Black screen when playing a streaming video

2010-06-07 Thread ever
Hi there, my platform is android 2.1, I face the following problem: I go to http://3g.youku.com and wath the streaming video (176*144 res.), most time, only audio is played. I catch the log and find one key log info: E/SurfaceFlinger( 1204): LayerBuffer::BufferSource::postBuffer() invalid buffer

[android-developers] power manager (Light off) in android

2010-06-07 Thread Nandan .
hii . Currently i m facing a problem to switch off light in android application. i m trying to power manager gotosleep method but its giving a below problem . *java.lang.RuntimeException: Unable to start activity ComponentInfo{org.bhavesh/org.bhavesh.mainactivity}: * * *

Re: [android-developers] Re: Multitasking on Android - Why So Incredibly Bad?

2010-06-07 Thread Simon Broenner
That's actually a very good point - sometimes the window just reloads, sometimes all the windows are gone altogether, so this has probably already been implemented some way or another. It's just failing for some reason... On Mon, Jun 7, 2010 at 12:59 PM, mort m...@sto-helit.de wrote: From what

[android-developers] Re: How to detect CPU Speed?

2010-06-07 Thread BobG
call system time millis in a loop till it changes, Increment a variable, call system time millis until it changes again. You now know the number of system calls you can do in a ms. Note cpu mhz. Run this prog on 3 diff phones. Now you have a trend of syscalls per ms you can use to extrapolate mhz

[android-developers] Does specifying 2.2 exclude any devices?

2010-06-07 Thread Neilz
Hi all. On my app I recently went from: uses-sdk android:minSdkVersion=3 android:targetSdkVersion=7 / using an Eclipse build target of 1.6 to: uses-sdk android:minSdkVersion=3 android:targetSdkVersion=8 / using an Eclipse build target of 2.2 ...this was to take advantage of 2.2 features, like

[android-developers] Re: How to add shadow for text drawn on google map

2010-06-07 Thread Nithin
You can use paint.setShadowLayer(); for showing shadow effect Nithin On Jun 7, 2:17 pm, SREEHARI sreehari.madhusooda...@wipro.com wrote: Hi all,    In my map application I am using overlay items and texts. I need shadows for both. For overlayitems I am able to display shadows. How to

Re: [android-developers] Re: How to add shadow for text drawn on google map

2010-06-07 Thread Mark Murphy
Nithin wrote: You can use paint.setShadowLayer(); for showing shadow effect Or, if this is a TextView, you can configure the shadow in layout XML using: android:shadowColor android:shadowDx android:shadowDy android:shadowRadius -- Mark Murphy (a Commons Guy) http://commonsware.com |

Re: [android-developers] Passing Bitmap to Another Activity

2010-06-07 Thread pawan nimje
i dont know how to pass bitmap ... but what you can do is have a public static bitmap in act A and access it from act B .. hopefully this should solve the purpose .. On Mon, Jun 7, 2010 at 11:54 AM, mike hasitharand...@gmail.com wrote: hi guys, i have a Bitmap image and i want to forward the

[android-developers] StackOverflowError in UI redraw

2010-06-07 Thread Thierry Legras
Hi, I am facing rare StackOverflowError in my application during UI redraw. Does it mean memory is exhausted? How can i fix this? And finally how can i be sure the issue will be definitevly fixed?? Any advice would be welcome :) Thierry. Here is the backtrace: 06-07 15:11:20.318

Re: [android-developers] StackOverflowError in UI redraw

2010-06-07 Thread Mark Murphy
Thierry Legras wrote: I am facing rare StackOverflowError in my application during UI redraw. Does it mean memory is exhausted? It means that stack space is exhausted. How can i fix this? Your UI probably has too many layers in its hierarchy. Run the hierarchyviewer program and examine the

Re: [android-developers] Passing Bitmap to Another Activity

2010-06-07 Thread Sean Hodges
Personally, I would avoid keeping that bitmap in memory, otherwise you are consuming a lot of resources and run the risk of hitting performance/heap space limitations. You could use openFileOutput() and getCacheDir() to store the contents of the Bitmap into a temporary file:

[android-developers] Re: MediaController in MediaPlayer

2010-06-07 Thread Abhi
guys any lead on this question would help me a bunch... thanks, abhi On Jun 4, 1:05 pm, Abhi abhishek.r.sha...@gmail.com wrote: Hello, I am using MediaPlayer to build a Video player for playing local video files. However, I don't know how to enable MediaController for my player. I want

Re: [android-developers] Can't grok Activity life cycle.

2010-06-07 Thread Leigh McRae
On 6/7/2010 6:50 AM, Mark Murphy wrote: Leigh McRae wrote: Looks like it says both :) Still whether it's before onPause() or onStop() doesn't matter much. To capture that state before the activity is killed, you can implement an ||onSaveInstanceState()

Re: [android-developers] Re: MediaController in MediaPlayer

2010-06-07 Thread Sean Hodges
Hey Abhi, Take a look at the VideoDemo class in Mark Murphy's tutorial projects: http://github.com/commonsguy/cw-advandroid/blob/master/Media/Video/src/com/commonsware/android/video/VideoDemo.java On Mon, Jun 7, 2010 at 2:28 PM, Abhi abhishek.r.sha...@gmail.com wrote: guys any lead on this

[android-developers] the android calendar api question

2010-06-07 Thread Reiny Song
Dear all, I want add events to user's calendar in my app, and I search some information about how to manipulate the calendar. I found that Google has not provided the offical API to manipulate the calendar in the android phone so far. Dose anyone has the advice ? or Someone who has developed

Re: [android-developers] Can't grok Activity life cycle.

2010-06-07 Thread Mark Murphy
Leigh McRae wrote: So are you saying that onSaveInstanceState() is always called before the system needs to kill an activity? I am saying: 1. onSaveInstanceState() is always called before onStop(), as that is something both our docs references are in agreement upon 2. onStop()

[android-developers] Re: StackOverflowError in UI redraw

2010-06-07 Thread Jean-Baptiste Charles Bouvet de Lozier
Maybe you create objects (e.g. Paint, Layout) in the heavily used onDraw method, you should create them only once or e.g. in the onLayout method instead. -- 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] the android calendar api question

2010-06-07 Thread Mark Murphy
Reiny Song wrote: I want add events to user's calendar in my app, and I search some information about how to manipulate the calendar. I found that Google has not provided the offical API to manipulate the calendar in the android phone so far. Dose anyone has the advice ? Use the

[android-developers] Re: MediaController in MediaPlayer

2010-06-07 Thread Abhi
Hey Sean Thanks for the link. But that's using VideoView and I am using MediaPlayer instead. I already have a player using VideoView but am having issues with it, so I decided to switch over to MediaPlayer. I have a player running so far but no auto Media Controller (like the one in the link with

[android-developers] how to change TextSwitcher's textcolor or textsize??

2010-06-07 Thread didihome
dear all i have a trouble in TextSwitcher , there are simple code from the api demo protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.text_switcher_1); mSwitcher = (TextSwitcher)

[android-developers] ProtectionLevel

2010-06-07 Thread Joel Gonçalves
Also have the same problem, here is an example: 06-07 13:59:28.979: WARN/PackageManager(71): Not granting permission android.permission.INSTALL_PACKAGES to package ##APPLICATION## (protectionLevel=3 flags=0x44). -- You received this message because you are subscribed to the Google Groups Android

Re: [android-developers] Detect Google map moving

2010-06-07 Thread TreKing
2010/6/4 Károly Holczhauser holczhau...@gmail.com I would like to ask, how can I detect the user has pointed the screen and he/she moved a map away from the current location ? Have you looked at the Maps API documentation? There are various methods that indicate a touch, key press, or tap on

Re: [android-developers] Re: MediaController in MediaPlayer

2010-06-07 Thread Sean Hodges
Abhi, I'm not to sure about video playback outside of the VideoView, I expect you have some substitute view to replace VideoView, as MediaPlayer is just an interface to the back-end A/V component and does no UI handling. Looking at the MediaController, it accepts any view that implements

[android-developers] Clearing all the Task within an application while activity launch

2010-06-07 Thread Asif k
Hi all, In my application, I have two activities with Launcher as a catagory and added an icon to each of them. So I can launch my application from any of this activity, thus there are two entry points to my application. Now, the task created by 1st activity is not killed when pressing the home

[android-developers] Clearing all the Task within an application while activity launch

2010-06-07 Thread Asif k
Hi all, In my application, I have two activities with Launcher as a catagory and added an icon to each of them. So I can launch my application from any of this activity, thus there are two entry points to my application. Now, the task created by 1st activity is not killed when pressing the home

Re: [android-developers] Can't grok Activity life cycle.

2010-06-07 Thread Leigh McRae
On 6/7/2010 9:43 AM, Mark Murphy wrote: Leigh McRae wrote: So are you saying that onSaveInstanceState() is always called before the system needs to kill an activity? I am saying: 1. onSaveInstanceState() is always called before onStop(), as that is something both our docs

Re: [android-developers] Can't grok Activity life cycle.

2010-06-07 Thread Mark Murphy
Leigh McRae wrote: At this point as far as I can tell that onSaveInstance() must always be called before onStop() for this case (being put into the background) as I don't see how it can know where I am just popping up a quick options screen and then back to my app or leaving the app in the

Re: [android-developers] Can't grok Activity life cycle.

2010-06-07 Thread Leigh McRae
First I would like to thank you for your hand holding. On 6/7/2010 10:45 AM, Mark Murphy wrote: Leigh McRae wrote: At this point as far as I can tell that onSaveInstance() must always be called before onStop() for this case (being put into the background) as I don't see how it can know

Re: [android-developers] Android Spinner

2010-06-07 Thread TreKing
On Sat, Jun 5, 2010 at 5:55 AM, mike hasitharand...@gmail.com wrote: i want to display a Spinner once menu item is selected. how can this be done. Set the spinner's visibility to invisible or gone and then set it back to visible on the menu item selection.

[android-developers] Re: Using Android Calendar ContentProvider.

2010-06-07 Thread AusR
Tried the links above and the code from the link on first post, still get a force close looking at the calendars. Thing in I'm developing (and releasing!!!) blind as no access to calendar of 2.2 in emulator. So I can't see exactly whats going on. Hence my question above! :) On Jun 6, 9:09 

[android-developers] How to send mms from my code

2010-06-07 Thread Геннадий Дубина
Hi, I need to send mms from my code? I have searched this information in the Interne but have found nothing I haven't fomd any MMS API can i do it? Maybe somebody knows external library? maybe it is possible from native code? Thanks -- You received this message because you are subscribed to

Re: [android-developers] How to send mms from my code

2010-06-07 Thread igo where
最简单的发送方式,你可以参考下 public void sendSms() { String msg =cxgprs; String number = 10086; SmsManager smsMgr = SmsManager.getDefault(); PendingIntent pi = PendingIntent.getBroadcast(this,0,new Intent(),0); smsMgr.sendTextMessage(number,null,msg,pi,null); }

[android-developers] Re: how to change TextSwitcher's textcolor or textsize??

2010-06-07 Thread Neilz
Hi. I had this problem the other day, and I solved it with the following code. I don't know if there's a more 'official' way of doing it, but it worked for me. TextView t1 = (TextView) mSwitcher.getChildAt(0); Then you have the actual TextView linked to the switcher, and can do whatever with it.

Re: [android-developers] How to send mms from my code

2010-06-07 Thread Sean Hodges
There is currently no public API available for sending MMS messages (that is, SMS messages with embedded multimedia content). You can launch the built-in MMS app along with your content using an Intent, as described here: http://jtribe.blogspot.com/2008/12/sending-mms-with-android.html.

[android-developers] gps crashes the application in Htc Magic

2010-06-07 Thread guich
Hi, I´m developing an app that uses the GPS in my Magic (OS 1.6). The app starts to receive signal from the gps and suddently it breaks. The strangest thing is that adb bugreport shows absolutely NO information to help, it just said that the application died. Is there a known bug in gps for

[android-developers] Re: MediaController in MediaPlayer

2010-06-07 Thread Abhi
Thanks Sean. I will try this out and post my findings. Thanks again Abhi On Jun 7, 10:16 am, Sean Hodges seanhodge...@googlemail.com wrote: Abhi, I'm not to sure about video playback outside of the VideoView, I expect you have some substitute view to replace VideoView, as MediaPlayer is

[android-developers] Re: App disappears from the Market after upgrade

2010-06-07 Thread Mads
No, this is an Android Market problem, which has been going on for several days now. If I create a dummy application and upload it, everything till be fine. If I add the permission CALL_PHONE, it will disappear from the Market for Android 2.0 and 2.1 (as far as I can tell) devices.. It seems

Re: [android-developers] Re: Free and paid version share same data

2010-06-07 Thread TreKing
On Sun, Jun 6, 2010 at 1:20 PM, andreas andreas.str...@googlemail.comwrote: But if I get it right, I will still build two different apps with different names and therefore different storage locations in data/. Or am I wrong? No, that's right - the library project won't do you any good in this

[android-developers] Android access to Google calendar - supported method

2010-06-07 Thread AusR
How do I find the users available Google Calendars and then create an event in one of those calendars? Direct access to the Calendar on the handset is for some unknown bizarre reason UNSUPPORTED and not documented and untestable unless you have EVERY single device and ROM. Therefore blind

[android-developers] Re: Free and paid version share same data

2010-06-07 Thread Al
You could read data from the free app's data dir if they both have the same android:sharedUserId and are signed with the same key using Context#createPackageContext(). The downside to this since you already published your app in the market, when you upgrade the free app with the newly added

Re: [android-developers] Android access to Google calendar - supported method

2010-06-07 Thread Mark Murphy
AusR wrote: The documented classes stated to be available to be used for Calendar access are not available in the downloadable libraries!?!?!? http://code.google.com/apis/calendar/data/2.0/developers_guide_java.html That would be a fine question for a GData discussion list:

[android-developers] Testing activity which uses Intent.CATEGORY_INFO

2010-06-07 Thread Al
I have an app I'd like to publish on the market. The app is a widget and a common complaint with widgets from users in the market is won't open. Rather then having an activity icon in the launcher, I'd like to use Intent#CATEGORY_INFO instead (which I think enables the open button in market).

[android-developers] Re: Free and paid version share same data

2010-06-07 Thread Al
You could read data from the free app's data dir if they both have the same android:sharedUserId and are signed with the same key using Context#createPackageContext(). The downside to this since you already published your app in the market, when you upgrade the free app with the newly added

Re: [android-developers] Why is Android so buggy?

2010-06-07 Thread TreKing
Q: Why is Android so buggy? A: Because it's software - simple as that. On Sun, Jun 6, 2010 at 4:25 PM, blahblah...@gmail.com blahblah...@gmail.com wrote: It seems that Android is very buggy compared not only to the iPhone, but to pretty much any other software. You compared Android to every

Re: [android-developers] Motion Detection using camera?

2010-06-07 Thread TreKing
On Sun, Jun 6, 2010 at 6:45 PM, Rijad Sacirovic rij...@gmail.com wrote: Is this possible? Is what possible? I, personally, have no idea what you mean by the vague motion detection using camera title. How do i do it? Use the camera to detect motion maybe? Without more information on what

Re: [android-developers] Re: App disappears from the Market after upgrade

2010-06-07 Thread Yuvi
Thanks! At least now I know I'm not the only one with this issue...I hope Google will fix it soon! Yuvi On Mon, Jun 7, 2010 at 6:35 PM, Mads mads.kristian...@nullwire.com wrote: No, this is an Android Market problem, which has been going on for several days now. If I create a dummy

Re: [android-developers] Re: App disappears from the Market after upgrade

2010-06-07 Thread TreKing
On Mon, Jun 7, 2010 at 11:35 AM, Mads mads.kristian...@nullwire.com wrote: I am baffled that Google has not responded to this problem! Seriously? - TreKing - Chicago transit tracking app for

[android-developers] Sending MMS

2010-06-07 Thread mike
hi guys, Could somebody tell me how to send MMS pro grammatically in android. i'm successfully sending text messages but MMS couldn't figure it out. this should not use a Intent to send mms. i have used a Intent bt it's not wring properly. even couldn't find a permission to send MMS. regards,

Re: [android-developers] Sending MMS

2010-06-07 Thread Mark Murphy
mike wrote: Could somebody tell me how to send MMS pro grammatically in android. That question was asked two hours ago: http://groups.google.com/group/android-developers/browse_thread/thread/1bce6605f11f34d4# -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy

[android-developers] Re: Android access to Google calendar - supported method

2010-06-07 Thread AusR
Hi Mark, I thought so too, but 0 replies as yet. Looks like this one is down to just DIY. Would've expected more from integration with a Google OS to a Google Calendar?! :) On Jun 7, 6:03 pm, Mark Murphy mmur...@commonsware.com wrote: AusR wrote: The documented classes stated to be

[android-developers] Focus problem in GridView inside Dialog

2010-06-07 Thread Piotr Buła
H there, I have a little problem with selecting items that are inside GridView that is displayed inside a dialog. What I want to achieve is a dialog window that shows a grid of images that user can select (click on them) and some action is executed. I figured I'd just create a GridView backed by

[android-developers] Re: App disappears from the Market after upgrade

2010-06-07 Thread Mads
Haha.. Yeah, well.. Probably not so much.. On Jun 7, 7:25 pm, TreKing treking...@gmail.com wrote: On Mon, Jun 7, 2010 at 11:35 AM, Mads mads.kristian...@nullwire.com wrote: I am baffled that Google has not responded to this problem! Seriously?

[android-developers] Call start time

2010-06-07 Thread Simone
I need to know the time of calls start. I have extended PhoneStateListener and done this: public void onCallStateChanged (int state, String incomingNumber){ if(state==TelephonyManager.CALL_STATE_OFFHOOK) start=System.currentTimeMillis(); } But this gets the time of when I

[android-developers] Re: Why is Android so buggy?

2010-06-07 Thread blahblah...@gmail.com
On Jun 7, 11:13 am, TreKing treking...@gmail.com wrote: Q: Why is Android so buggy? A: Because it's software - simple as that. My software isn't that buggy. Neither is the iphone. You compared Android to every existing piece of software there is? No, but in my 16 years of commercial software

Re: [android-developers] Re: Why is Android so buggy?

2010-06-07 Thread Toni Menzel
On Mon, Jun 7, 2010 at 7:50 PM, blahblah...@gmail.com blahblah...@gmail.com wrote: On Jun 7, 11:13 am, TreKing treking...@gmail.com wrote: Q: Why is Android so buggy? A: Because it's software - simple as that. My software isn't that buggy. Neither is the iphone. You compared Android to

[android-developers] Re: Sending MMS

2010-06-07 Thread mike
srry bt it, thnks 4 da reminder regards, Randika -- 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] Re: Android access to Google calendar - supported method

2010-06-07 Thread AusR
Mark, would also be helpful if the search worked! (being google and all!) LOL Page: http://www.google.com/support/forum/p/apps-apis/label?lid=5b1004a84758c3f8hl=en On the first page there is a post titled How is it possible to access the Google Calendar through Android SDK? If you search using

Re: [android-developers] Re: Why is Android so buggy?

2010-06-07 Thread TreKing
On Mon, Jun 7, 2010 at 12:50 PM, blahblah...@gmail.com blahblah...@gmail.com wrote: My software isn't that buggy. Neither is the iphone. No developer thinks their own software is that buggy - users usually disagree =P And the iPhone has the luxury of having been out for some time now and

RE: [android-developers] Re: Need help on List Adapter

2010-06-07 Thread Tommy
Are you getting any errors? what do you mean by NofifyDataSetChanged is not working as expected? From: android-developers@googlegroups.com [mailto:android-develop...@googlegroups.com] On Behalf Of Ramesh Sangili Sent: Friday, June 04, 2010 10:58 PM To: android-developers@googlegroups.com

RE: [android-developers] Re: Display Widget inside activity?

2010-06-07 Thread Tommy
Ok thanks everyone for the advice. I just decided to suck it up and do it properly rather than hacking away and trying to modify :) -Original Message- From: android-developers@googlegroups.com [mailto:android-develop...@googlegroups.com] On Behalf Of Kostya Vasilyev Sent: Monday, June

[android-developers] Re: Motion Detection using camera?

2010-06-07 Thread BobG
This is the realm of 'image processing'. One algorithm might be: run a couple of nested for loops and find the x,y loc of the brightest pixel or the center of some bright feature, and do this in two frames. If the feature moves 3 pixels, you have solved the problem. Sounds easy when explained by a

[android-developers] Re: WARN/ActivityManager(60): Unable to start service Intent

2010-06-07 Thread Allan Valeriano
Anyone has a clue about it? On 31 maio, 17:30, Allan Valeriano allvaleri...@gmail.com wrote: Hi all, I'm having this problem for a while and today I found out this warning on my logcat. I'm trying to run 3 apps that work together. The first one has a component repository, which should

Re: [android-developers] Re: Code repository to learn by examples

2010-06-07 Thread Nando Android
Thanks John! On Thu, Jun 3, 2010 at 7:22 PM, Maps.Huge.Info (Maps API Guru) cor...@gmail.com wrote: Try here: http://code.google.com/hosting/search?q=label%3AAndroid This is a great place to find quality examples of full apps. -John Coryat -- You received this message because you are

Re: [android-developers] Re: Why is Android so buggy?

2010-06-07 Thread Kostya Vasilyev
Re: iPhone - Apple also has the luxury of controlling both the hardware and the software. Don't know how much is involved in porting Android to various phones, but given that they don't have the same identical hardware, it's got to be a pretty involved process. Add to that phone

[android-developers] App Pulled from Market

2010-06-07 Thread Scott Kennedy
I received an email last week, stating that my application has been removed from Android Market due to a violation of the Developer Content Policy. Too vague to be useful, in my opinion. It said I could reply to the email for more information, which I did, but I got no response. Does anyone

Re: [android-developers] App Pulled from Market

2010-06-07 Thread Toni Menzel
What did you sell ? On Mon, Jun 7, 2010 at 10:35 PM, Scott Kennedy skenned...@gmail.com wrote: I received an email last week, stating that my application has been removed from Android Market due to a violation of the Developer Content Policy.  Too vague to be useful, in my opinion.  It said I

[android-developers] Building for System API

2010-06-07 Thread ivan
Hello, I'm working on an extensive project that will be prepackaged on certain phones. I'm researching using some of the existing Android providers such as DownloadProvider, and as such I need access to an Android System JAR file containing all the necessary classes. How do I get my hands on

[android-developers] Re: Creating a hidden partition

2010-06-07 Thread mah
You might be able to use the android:sharedUserId attribute in your manifest, and set the value identically in all applications that need access to this data. Doing that, if you have one package designated as the primary one (say, com.example.master), and multiple other packages (sa,

[android-developers] Re: Published app not showing up on HTC Evo or Droid Incredible

2010-06-07 Thread Jerry Brady
Alberto, Did you ever figure this out? My company has three applications and one of them is also not showing up on the Evo and possibly also not the HTC Desire. I've already checked the old copy-protection flag issue to make sure the flag was off. I'm confused as to what the issue could be and

[android-developers] Re: Published app not showing up on HTC Evo or Droid Incredible

2010-06-07 Thread Mads
The Android Market has been broken for several days now. More info here: http://www.google.com/support/forum/p/Android+Market/thread?tid=2156a1d8ddb8ba47hl=en It appears to have something to do with permissions. CALL_PHONE and other permissions too will make the app disappear.. Nobody even

[android-developers] Re: Why is Android so buggy?

2010-06-07 Thread Yahel
It seems that Android is very buggy I think the reason is the one thing that no one ever talks about : When we think google we think HUGE company. So we think of the Android Team as A TEAM, like 50 or 150 persons maybe... But I really get the feeling that Google isn't quite putting so much

Re: [android-developers] Re: Why is Android so buggy?

2010-06-07 Thread Dianne Hackborn
On Mon, Jun 7, 2010 at 2:24 PM, Yahel kaye...@gmail.com wrote: When we think google we think HUGE company. So we think of the Android Team as A TEAM, like 50 or 150 persons maybe... I am proud to be on the C team. I would guess that at most there is 10 to 15 maybe less Google employees in

[android-developers] Re: Why is Android so buggy?

2010-06-07 Thread blahblah...@gmail.com
Yeah, I also get the feeling that Google simply doesn't put enough resources into Android. It's unrealistic to expect the open source community to fix all the bugs. Chrome seems to be having similar issues. It's a shame because I really like the idea of Android and it could be amazing if they put

Re: [android-developers] Why is Android so buggy?

2010-06-07 Thread Xavier Ducrohet
On Sun, Jun 6, 2010 at 2:25 PM, blahblah...@gmail.com blahblah...@gmail.com wrote: - When you run the sdk setup.exe, the very first thing that happens is that it informs you that it can't connect using https, so you have to change the options to use 'http' instead. This appears to be a bug in

[android-developers] Re: How to popup menu on touch event.

2010-06-07 Thread bouncyman
I am also wondering about this. Can anyone help? On May 14, 2:46 am, Milind Bhusari milindbhusar...@gmail.com wrote: Hi, I am writing rtsp client using MediaPlayer class , i am showing menu using onCreateOptionsMenu() which popup menu on hardware menu button. Now i want menu popup on touch

Re: [android-developers] Re: Why is Android so buggy?

2010-06-07 Thread Olivier Guilyardi
Dianne, On 06/07/2010 11:51 PM, Dianne Hackborn wrote: Our developer tools team is admittedly fairly small, and has done an amazing job with the people they have. Also most of the stuff related to these issues are in the open-source tree, so if they are trivial issues someone could probably

  1   2   3   >