Web Images Videos Maps News Shopping Gmail more »
Recently Visited Groups | Help | Sign in
Google Groups Home
Android bug reports...
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  25 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
cbazza  
View profile  
(3 users)  More options Nov 23 2007, 12:37 pm
From: cbazza <cba...@poliplus.com>
Date: Fri, 23 Nov 2007 09:37:31 -0800 (PST)
Local: Fri, Nov 23 2007 12:37 pm
Subject: Android bug reports...
While creating ME4Android I came across some problems
with Android that I would like to report back to Google.

** 1 **
Provide a way to read any file from resource folder using
its original filename. This would basically provide a
similar facility as is available on JavaME. Maybe implement
Class.getResourceAsStream in such a way to read files from
/res/files with Strings and not integer ids.

** 2 **
Android.view.View should also have a rect specific way
to postInvalidate. Right now you can only postInvalidate
the whole screen. Better yet, get rid of postInvalidate
completely and provide a proper implementation of invalidate
that would work regardless of which thread it is called
from. Just like JavaME.

** 3 **
Provide a way *not* to combine View.invalidates together
because union of a small top rectangle with a small bottom
rectangle forces a large rectangle into the screen and
that is slow. Games (and other) apps update small rects in
different areas so it is best not to combine (do a union)
of these rects.

** 4 **
Provide a way for the app to request all pending invalidates
to be processed immediately. Like what is available on JavaME
with serviceRepaints. Basically the code following serviceRepaints
can be guaranteed that the canvas bitmap would be up to date
so getPixels/setPixels would be synchronized properly. Without
this it is a nightmare to figure out on a multi-threaded app
when things are ready for visual processing or not.

** 5 **
Remove the few (6) Javax.microedition (JavaME) classes from
android.jar. Basically provide a complete implementation of
JavaME, or don't provide anything at all.

** 6 **
Android.graphics.Bitmap.getPixels should return colors in
argb, it returns them in abgr.


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Herval Freire  
View profile  
(1 user)  More options Nov 23 2007, 1:50 pm
From: "Herval Freire" <hervalfre...@gmail.com>
Date: Fri, 23 Nov 2007 15:50:02 -0300
Local: Fri, Nov 23 2007 1:50 pm
Subject: Re: [android-developers] Android bug reports...

Dude, the bug #6 is killing me since day one!!!!

Wow..

On Nov 23, 2007 2:37 PM, cbazza <cba...@poliplus.com> wrote:


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
cbazza  
View profile  
(2 users)  More options Nov 24 2007, 5:39 pm
From: cbazza <cba...@poliplus.com>
Date: Sat, 24 Nov 2007 14:39:36 -0800 (PST)
Local: Sat, Nov 24 2007 5:39 pm
Subject: Re: Android bug reports...
Forgot to mention this one

** 7 **
There is something wrong when creating "png" Bitmaps
with android.graphics.BitmapFactory.decodeByteArray(byte[] imageData,
int offset, int length)
The image looses detail and looks terrible. I have a pile of these to
pass on that look great on PC, Blackberries and Cellphones but
terrible on Android (Best Buy logo for example).

Carlos.


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
cbazza  
View profile  
(2 users)  More options Nov 26 2007, 10:33 am
From: cbazza <cba...@poliplus.com>
Date: Mon, 26 Nov 2007 07:33:39 -0800 (PST)
Local: Mon, Nov 26 2007 10:33 am
Subject: Re: Android bug reports...
another one...

** 8 **
android.graphics.Bitmap.setPixels should have a version that accepts
"processAlpha". Right now the alpha value is ignored.

Carlos.

On Nov 24, 5:39 pm, cbazza <cba...@poliplus.com> wrote:


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
rtreffer  
View profile  
(1 user)  More options Nov 26 2007, 11:50 am
From: rtreffer <rtref...@googlemail.com>
Date: Mon, 26 Nov 2007 08:50:31 -0800 (PST)
Local: Mon, Nov 26 2007 11:50 am
Subject: Re: Android bug reports...
** 9 **
Android is limited to "-qemu -net nic -net user" networking on eth0.
This limits the default android network device. E.g.
- ICMP is not possible (most noteworth: ICMP/Echo, better known as
"ping")
- Opening priviledged ports (<1024)
As well as most "advanced" networking options.
It is possible to open a second device, but it's impossible to change
eth0 due to some hardcoded assumptions in adb initialization.

    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Dan Morrill  
View profile  
(1 user)  More options Nov 26 2007, 1:38 pm
From: "Dan Morrill" <morri...@google.com>
Date: Mon, 26 Nov 2007 10:38:32 -0800
Local: Mon, Nov 26 2007 1:38 pm
Subject: Re: [android-developers] Re: Android bug reports...

Everyone -- thanks, this is awesome.  Keep these reports coming, please!

We will get these logged.

- Dan

On Nov 26, 2007 8:50 AM, rtreffer <rtref...@googlemail.com> wrote:


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Hong  
View profile  
(1 user)  More options Nov 26 2007, 2:13 pm
From: Hong <lordh...@gmail.com>
Date: Mon, 26 Nov 2007 14:13:16 -0500
Local: Mon, Nov 26 2007 2:13 pm
Subject: Re: [android-developers] Re: Android bug reports...
is there a dedicated email/forum for bug reporting?

sending bug reports in group discussion seems odd... and often than
not overlooked/ignored.

thanks.


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Henry Addo  
View profile  
(1 user)  More options Nov 26 2007, 2:17 pm
From: "Henry Addo" <add...@gmail.com>
Date: Mon, 26 Nov 2007 19:17:31 +0000
Local: Mon, Nov 26 2007 2:17 pm
Subject: Re: [android-developers] Re: Android bug reports...
I agree. We should get a bug tracker.

On Nov 26, 2007 7:13 PM, Hong <lordh...@gmail.com> wrote:

> is there a dedicated email/forum for bug reporting?

> sending bug reports in group discussion seems odd... and often than
> not overlooked/ignored.

> thanks.

--
http://www.addhen.org/blog

    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
gaz  
View profile  
 More options Nov 26 2007, 6:50 pm
From: gaz <billy00the00...@yahoo.com>
Date: Mon, 26 Nov 2007 15:50:59 -0800 (PST)
Local: Mon, Nov 26 2007 6:50 pm
Subject: Re: Android bug reports...
Dan, you can't be serious. How do you track bugs and all the
information that gets attached to it, using a groupware interface?
You need to setup a public bugzilla, and you need to dedicate one or
more headcounts in handling it (not only from an IT POV, that's pretty
trivial, but from a bug screening POV - remove junk entries, mark
duplicates, route bugs to proper developer groups, etc...).

On Nov 26, 10:38 am, "Dan Morrill" <morri...@google.com> wrote:


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Dan Morrill  
View profile  
(2 users)  More options Nov 27 2007, 12:31 am
From: "Dan Morrill" <morri...@google.com>
Date: Mon, 26 Nov 2007 21:31:04 -0800
Local: Tues, Nov 27 2007 12:31 am
Subject: Re: [android-developers] Re: Android bug reports...

Unfortunately there is currently no externally-accessible issue-tracking
system.

We are considering how we might implement such a system, but we don't have
an answer yet.  The biggest snag is simply keeping our internal issue
tracker in sync with an external one.  So, it's a process problem, rather
than a technical problem.

- Dan

On Nov 26, 2007 11:13 AM, Hong <lordh...@gmail.com> wrote:


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
walterc  
View profile  
 More options Nov 27 2007, 1:05 am
From: walterc <weih...@gmail.com>
Date: Mon, 26 Nov 2007 22:05:43 -0800 (PST)
Local: Tues, Nov 27 2007 1:05 am
Subject: Re: Android bug reports...
** 10 **
LinearLayout does not relayout after changing its child view from
setVisibility(View.GONE) to setVisibility(View.VISIBLE)

** 11 **
in View
why "public void setKeyListener(OnKeyListener l)"
when "public void setOnClickListener(OnClickListener l)"?
why not "public void setOnKeyListener(OnKeyListener l)"?

in LinearLayout
why "protected void layOutHorizontal()"
when everything else is "layout" or "Layout"?

in layout xml files
why some attributes have "_" and some are camel-cased?

#11 above is just my personal gripe but don't you guys do code review?

walter


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Ivan Čukić  
View profile  
 More options Nov 27 2007, 7:53 am
From: "Ivan Čukić" <ivan.cu...@gmail.com>
Date: Tue, 27 Nov 2007 04:53:52 -0800 (PST)
Local: Tues, Nov 27 2007 7:53 am
Subject: Re: Android bug reports...
To copy here from two separate threads - for reference purposes.

** 12 **
SQLite3 cursors don't have the update support:

Cursor c = database.query("SELECT * FROM Developers", null);

c.supportsUpdates() returns false.

** 13 **
Annotation API exist but annotations are not implemented.

When trying to do a
  Object o = new Object();
  o.getClass().getAnnotations();

It raises an exception:
"native method not implemented"
Backtrace:
  java.lang.Class.getDeclaredAnnotations(Native Method)
  java.lang.Class.getAnnotations(Class.java:202)


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
neil  
View profile  
 More options Nov 27 2007, 8:38 am
From: neil <neil.yo...@freenet.de>
Date: Tue, 27 Nov 2007 05:38:55 -0800 (PST)
Local: Tues, Nov 27 2007 8:38 am
Subject: Re: Android bug reports...
** 14 **
No more than 764 threads possible as described here
http://groups.google.de/group/android-developers/browse_thread/thread...

On 27 Nov., 13:53, "Ivan Čukić" <ivan.cu...@gmail.com> wrote:


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Hong  
View profile  
 More options Nov 27 2007, 10:43 am
From: Hong <lordh...@gmail.com>
Date: Tue, 27 Nov 2007 10:43:57 -0500
Local: Tues, Nov 27 2007 10:43 am
Subject: Re: [android-developers] Re: Android bug reports...
you can just setup a bugzilla somewhere on your network, just need a
standalone web server ($400 desktop will do), can even run off over
DSL line if for security reason u dont want it to be part of google
network/datacenter, and that's it.  we can keep submitting bugs and
you review it once in awhile... seems there's more corporate red-tapes
to me than anything technically-challenge :)

    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
gaz  
View profile  
(2 users)  More options Nov 27 2007, 12:59 pm
From: gaz <billy00the00...@yahoo.com>
Date: Tue, 27 Nov 2007 09:59:12 -0800 (PST)
Local: Tues, Nov 27 2007 12:59 pm
Subject: Re: Android bug reports...
How can ppl check the bug database to see eventual resolutions? Or
feed more information to the bug? Or how can the developer ask the bug
reporter for more details and yet this remain logged?
The internal and external problem would have been magically solved
from day one, if this were to be an open source project from the
beginning.

On Nov 26, 9:31 pm, "Dan Morrill" <morri...@google.com> wrote:


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
glorgster@gmail.com  
View profile  
(1 user)  More options Nov 28 2007, 1:01 am
From: "glorgs...@gmail.com" <glorgs...@gmail.com>
Date: Tue, 27 Nov 2007 22:01:33 -0800 (PST)
Local: Wed, Nov 28 2007 1:01 am
Subject: Re: Android bug reports...
I've created small Wiki section for known bugs (don't like bugzilla,
but may be will set up something else later). So, if anybody else
help, "known bugs" section will be always up to date. Anyway I'll be
updating it on base of this maillist and android-internals for my
personal purposes.

Of course it's clumsy solution (and only useful a little bit for
developers, not googlers), but till we have no official bug tracker -
may be useful.

here this section: http://wiki.droiddocs.net/Known_bugs

PS:
Bugs are divided in three subsections by me, may be not correctly, so
edit it yourself, or kick me.

---
Best regards,
Alexey

On Nov 28, 3:59 am, gaz <billy00the00...@yahoo.com> wrote:


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Valerio Schiavoni  
View profile  
(1 user)  More options Nov 28 2007, 6:41 am
From: "Valerio Schiavoni" <valerio.schiav...@gmail.com>
Date: Wed, 28 Nov 2007 12:41:26 +0100
Local: Wed, Nov 28 2007 6:41 am
Subject: Re: [android-developers] Re: Android bug reports...
I've setup this :

http://code.google.com/p/androidbugs/

where we can track bugs and so on. At least, as long as we don't have
a public tracker, we can use that on.

If this causes problems, I'll suddendly delete the project!

On Nov 28, 2007 7:01 AM, glorgs...@gmail.com <glorgs...@gmail.com> wrote:

--
http://valerioschiavoni.blogspot.com
http://jroller.com/vschiavoni

    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Ben Lau  
View profile  
(1 user)  More options Dec 4 2007, 10:54 pm
From: "Ben Lau" <xben...@gmail.com>
Date: Wed, 5 Dec 2007 11:54:28 +0800
Local: Tues, Dec 4 2007 10:54 pm
Subject: Re: [android-developers] Re: Android bug reports...
I have encountered the same problem. I need to change the ABGR to ARGB
manually. However, the speed is too slow...

On Nov 24, 2007 2:50 AM, Herval Freire <hervalfre...@gmail.com> wrote:


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Ivan Čukić  
View profile  
 More options Dec 5 2007, 2:02 pm
From: "Ivan Čukić" <ivan.cu...@gmail.com>
Date: Wed, 5 Dec 2007 11:02:06 -0800 (PST)
Local: Wed, Dec 5 2007 2:02 pm
Subject: Re: Android bug reports...
** 15 **
No-exception-reported program-terminated when the set(object, value)
method of java.lang.reflect.Field is invoked with null as a value. The
Field in question is a String.

    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
baldmountain  
View profile  
 More options Dec 5 2007, 3:59 pm
From: baldmountain <baldmount...@gmail.com>
Date: Wed, 5 Dec 2007 12:59:02 -0800 (PST)
Local: Wed, Dec 5 2007 3:59 pm
Subject: Re: Android bug reports...
** 16 **

java.util.zip generates some CRC errors on valid zip files. The
truezip Java library decodes the same files on android without error.


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
sergkr  
View profile  
 More options Dec 6 2007, 8:20 am
From: sergkr <serg...@gmail.com>
Date: Thu, 6 Dec 2007 05:20:12 -0800 (PST)
Local: Thurs, Dec 6 2007 8:20 am
Subject: Re: Android bug reports...
From other posts:
ttp://groups.google.com/group/android-developers/browse_thread/thread/c29b2 598c36aae0e/1e5bc719efe6388b?lnk=gst&q=media#1e5bc719efe6388b

** 17 **

I tried the code below and noticed something strange. If you call this
code for a particular event, it plays the mp3 exactly for 9 calls. On
the 10th call the emulator crashes.

** 18 **

Media Player does not play anything from network, neither with http
nor rtsp links. It loads some data in buffer but there is no sound (or
error messages) at all.

On Dec 5, 3:59 pm, baldmountain <baldmount...@gmail.com> wrote:


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
neil  
View profile  
 More options Dec 7 2007, 9:48 am
From: neil <neil.yo...@freenet.de>
Date: Fri, 7 Dec 2007 06:48:58 -0800 (PST)
Local: Fri, Dec 7 2007 9:48 am
Subject: Re: Android bug reports...
** 19 **

At least MapView HTTP requests do not recognize HTTP proxy setup
implanted using

adb shell sqlite3 /data/data/com.google.android.providers.settings/
databases/settings.db "\"INSERT INTO system
VALUES(100,'http_proxy','x.x.x.x:xxxx');\"

As far this behavior is shown with all HttpClientXXX, has to be found
out.

Details: http://groups.google.de/group/android-developers/msg/958faebad24da8e6

Regards

On 6 Dez., 14:20, sergkr <serg...@gmail.com> wrote:


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Tucka  
View profile  
 More options Dec 27 2007, 11:22 am
From: Tucka <tucka...@googlemail.com>
Date: Thu, 27 Dec 2007 08:22:56 -0800 (PST)
Local: Thurs, Dec 27 2007 11:22 am
Subject: Re: Android bug reports...
** 20 **

It should be possible to reference other Eclipse projects with Eclipse

On Dec 7, 3:48 pm, neil <neil.yo...@freenet.de> wrote:


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
José L. Berenguel  
View profile  
 More options Dec 28 2007, 3:06 pm
From: "José L. Berenguel" <jlbereng...@gmail.com>
Date: Fri, 28 Dec 2007 12:06:27 -0800 (PST)
Local: Fri, Dec 28 2007 3:06 pm
Subject: Re: Android bug reports...
** 21 **

From other post:
http://groups.google.com/group/android-developers/browse_thread/threa...

My problem is similar: When using a Database, there is a moment in
which openDatabase() return null (and Database exist).


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
cirion  
View profile  
 More options Dec 29 2007, 4:17 pm
From: cirion <cir...@gmail.com>
Date: Sat, 29 Dec 2007 13:17:47 -0800 (PST)
Local: Sat, Dec 29 2007 4:17 pm
Subject: Re: Android bug reports...
** 22 **

NullPointerException when focus moves to a GridView.

Reported in another post:
http://groups.google.com/group/android-developers/browse_frm/thread/5...


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »

Create a group - Google Groups - Google Home - Terms of Service - Privacy Policy
©2009 Google