Well I figured out what is was. My fault, of course. I messed up on
one of the texture re-inits and skipped it, causing the bind call to
bind to -1, which apparently crashes OpenGL well :)
The moral of the story - Don't bind to textureId -1. :)
The other moral - debug more before assuming it
I see a generic XML Pull Parser in the public APIs. Is that good
enough?
For example, copying the XML Pull Parser example out of this reference
page, putting it into an Activity subclass, and tweaking the exception
handling and output method seems to work fine for me:
http://developer.android.com
Not too sure about GLSurfaceView (I'm still using EGLContext.getEGL
() ... ).
However, I use the surfaceDestroyed and surfaceCreated methods to flag
a cleanup or reload of the textures. This works ok (Ie: If a phone
call occurs during the game, the user can continue after the call),
however, I h
I did some more searching. The KXML classes are in dalvik/libcore,
and they are not in android.jar, and thus they are not visible to me
as an app developer. Of course they are used internally for various
things.
Is there some way to use classes in libcore? Or are those separated,
and I shouldn
I dont think the baseband firmware is exactly mask programmed, so the
technical challenge is probably conquerable unless the audio really
never passes in reach of that cpu either (even on its way to/from the
bluetooth - that something may usually be done via peripheral to
peripheral dma does not m
On my G1 running standard 1.5.
I'm using an activity with the content view being a GLSurfaceView.
When the activity onPause is called, it calls onPause on the
glsurfaceview
When the activity onResume is called, it calls onResume on the
glsurfaceview
When the renderer's onSurfaceChanged is calle
It's kind-of pointless to request this in the bug, because most of the
current hardware Android runs on simply doesn't support this -- as far as I
know, the standard Qualcomm chipset does all of the phone audio handling in
the baseband, and the application processor running Android has no access to
After looking through the Cupcake source tree, I found that in
projects / platform/frameworks/base.git / tree
[platform/frameworks/base.git] / opengl / java / android / opengl /
It appears as though when I enable DEBUG_CHECK_GL_ERROR, GL gets
wrapped with GLErrorWrapper which extends GLWrapperBas
Specify something like this in your AndroidManifest file:
Create a searchable.xml file in the res/xml folder:
I'm confused by this. I turned on DEBUG_CHECK_GL_ERROR for my
GLSurfaceView to try to figure out why I'm having a problem on pause/
resume/reload everything, and when I turned it on, I got an
UnsupportedOperationException when calling GL11.glGenBuffers() (for
creating Vertex Buffer Objects).
Why
You can't just concatenate multiple video files like that.
On Sat, Sep 12, 2009 at 7:07 AM, JoyLakh wrote:
>
> Dear All,
>
> My intention is to add pause and resume functionality to my video
> recording app, for which on selecting pause I am releasing the
> recorder and on selecting resume I am
Hi,
I also agree with these sentiments, getting the polish compromise
right is one of the hardest & most time consuming parts of this type
of app development. Aspiring to have or development some the skills of
a graphic designer is challenging in itself.
To me its a triple constraint for which yo
I think I got it figured. I just have to do it the way the dev guide
says do it -- create a key in the keystore and apply that to the
application. I'm new to the whole signing thing and using the "Export
Signed Application Package" confused me because there is no keystore
created (at least not one
Doesn't work in what way? It is used all over the system -- for example
this is how ContentResolver returns an InputStream to you from a file: URI:
return new FileInputStream(uri.getPath());
On Sat, Sep 12, 2009 at 5:00 PM, Bill wrote:
>
> Actually this doesn't work.
>
> On Sep 2,
Yes. I noticed that too. Both my screenshots were around 40Kb,
however, when I viewed them they were compressed down to around 20Kb.
I tried compressing one down to 19Kb then uploading it. When I viewed
it, it actually went to 20Kb again.
On Sep 13, 8:43 am, Streets Of Boston wrote:
> Is it
Read and comment here
http://code.google.com/p/android/issues/detail?id=2117
Eric
On Sep 12, 3:21 am, jsdf wrote:
> On Sep 6, 10:05 am, fritzZz wrote:
>
> > I have founded some app that records incoming calls, how do they
> > work?
>
> Are you sure they record incoming calls from both ends?
>
Here is an example:
String[] list = TextUtils.split("a:b:c", ":");
You need to import "android.text.TextUtils" like you said.
--
Jack Ha
Open Source Development Center
·T· · ·Mobile· stick together
The coverage you need at the price you want
The views, opinions and statements in this email
Thank you. That part is starting to sink in after reading it 10
times :)
My next problem/question is this: when I fix some bugs in the app do I
need to re-sign it? I just assumed I did, but when I do "Export Signed
Application Package", give it the password for the keystore (the
keystore location
Actually this doesn't work.
On Sep 2, 11:38 am, Dianne Hackborn wrote:
> I'm sorry, but did you even try looking at the documentation? It's not
> given a tricky name: getPath(). (If you are meaning you have put a relative
> path in, and want to get an absolute one back, well you can't, URI kno
Your app needs to be digitally signed.
If you use Eclipse with the ADT plugin, skip to the Compiling and
signing with Eclipse ADT section. Otherwise, follow the instructions
to export an unsigned .apk and then sign it with jarsigner.
--
Jack Ha
Open Source Development Center
·T· · ·Mobile· stick
Is it just me or does anybody else notice as well that the images
uploaded to ones Android Market's publishing site are heavily
compressed.
When I look at them after they're uploaded, i can clearly see ugly
JPEG-compression artifacts.
Is there a way to make sure that the quality of the images st
Ok, stupid question time: what's the difference being "Export Signed
Application Package" and "Export Unsigned Application Package"? Under
'Signing for Public Release' in the dev guide it says you must:
1. Compile the application in release mode
2. Obtain a suitable private key
3. *Sign* the appl
MarQuel Middleton wrote:
> Im trying to set my application menus up and i cant seem to do it can
> someone help me out i would really appreciate it im real confused!!
Here is a link to the menu documentation:
http://developer.android.com/guide/topics/ui/menus.html
There are many samples availa
More information:
It works if it is the ONLY view on the page, as done by
_surfaceView = new GLSurfaceView(this);
setContentView(_surfaceView);
However, if I make it part of the app framework, it fails as described
above in this discussion:
setContentView(R.layout.main);
_surfaceView = (GLSurfa
I take it back! Now it works (but my app doesn't - it has a big
difference - see the discussion at
http://groups.google.com/group/android-developers/browse_thread/thread/b1b97aa8e18e6b04.
Go figure. I'd delete the thread if I could :-(
On Sep 12, 3:08 pm, SChaser wrote:
> I am having trouble wit
Im trying to set my application menus up and i cant seem to do it can
someone help me out i would really appreciate it im real confused!! I
just want to be able to press my exit button and it close the app or
something of that nature.
package com.example.menu;
import android.app.Activity;
impor
I am having trouble with the example for use of GLSurfaceView (see
http://developer.android.com/guide/samples/ApiDemos/src/com/example/android/apis/graphics/GLSurfaceViewActivity.html
).
I created a normal Android project in the Eclipse IDE, added the
GLSurfaceViewActivity class and related from
Thank You!!
On Sep 12, 3:01 pm, Mark Murphy wrote:
> MarQuel Middleton wrote:
> > Hey im a new developer ans im having trouble with button functions i
> > have a menu created but how do i give them functions so when there
> > pressed they can actually do something?
>
> If you implemented an opti
I noticed this error too. None of m installed apps have ever told me
that a new version was in the Market. I always got a notice from the
Android Market.
On Aug 31, 7:13 am, Jason Van Anden wrote:
> A developer's time is a terrible thing to waste.
>
> This really ought to be revised.
>
> :(
>
>
On Sep 12, 9:27 am, David Minor wrote:
> What do you mean by "stops working"?
>
When the application becomes visible again, everything is okay except
that the GLSurfaceVIew is invisible. It's normal red background
doesn't show, and none of the graphics objects are visible. Even so,
the TouchLi
MarQuel Middleton wrote:
> Hey im a new developer ans im having trouble with button functions i
> have a menu created but how do i give them functions so when there
> pressed they can actually do something?
If you implemented an options menu, override onOptionItemSelected() in
your activity.
If
Hey im a new developer ans im having trouble with button functions i
have a menu created but how do i give them functions so when there
pressed they can actually do something?
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Not taking away from app functionality or presentation... inside
vehicles you'll probably find that the earth magnetic field is
disturbed to a degree that the compass readings are off for about any
combination of device and vehicle. The ongoing proliferation of
vehicles with electric propulsion sy
dashman wrote:
> i'd like to buy the HTC Magic for my dev phone - i don't want the
> physical sliding keyboard.
>
> with the HTC magic work as the dev phone.
You can test SDK applications using an HTC Magic.
> does HTC provide updated android updates for it.
Please contact your mobile provider
i'd like to buy the HTC Magic for my dev phone - i don't want the
physical sliding keyboard.
with the HTC magic work as the dev phone.
does HTC provide updated android updates for it.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to
Same here. I had problems until I put orientation in the
configuration changes field of the manifest for the 3D activity. My
app is also landscape.
On Sep 12, 11:27 am, David Minor wrote:
> What do you mean by "stops working"?
>
> I had a problem with coming back from sleeping where my app was
Assuming you are referring to the MapView, the maximum zoom in level
is 21 and the minimum is 1.
--
Jack Ha
Open Source Development Center
・T・ ・ ・Mobile・ stick together
The coverage you need at the price you want
The views, opinions and statements in this email are those of
the author solely in
Try notifyDataSetChanged(). notifyDataSetInvalidated() will cause the
entire content of ListView to disappear.
--
Jack Ha
Open Source Development Center
・T・ ・ ・Mobile・ stick together
The coverage you need at the price you want
The views, opinions and statements in this email are those of
the aut
No, it is generally up to the IME to decide what it needs to do; you
certainly can't guarantee that it won't go fullscreen, because it just may
need to do so it have enough space to interact with the user.
One thing you will want to do is use flagNoExtractUi to tell it that full
extract mode is not
Ok, never mind. So the Google APIs are still on the 1.5 platform, The
android 1.6 public SDK does not have the Google APIs 1.6. I am
guessing that is my compile issue.. hrrm..
Any other thoughts?
Chris.
--~--~-~--~~~---~--~~
You received this message because you a
I downloaded the 1.6SDK. Unfortunately my includes are not working for
com.google.*
in particular import com.google.android.maps.GeoPoint;
Chris.
On Sep 12, 3:55 am, Al Sutton wrote:
> My guess is that they're running one of Cynogens Donut ROMs that hes'
> made available. There's a fair amount
北京的职位
2009/9/10 xii stan
> 在深圳可以吗?
> 本人熟悉java. c++ 开发10年经验。
>
>
> 2009/9/9 何斌斌
>
> hi,
>> 如何联系,
>> 本人的msn:hbbs...@hotmail.com
>> 从事android开发:1.5 年
>>
>> 2009/9/8 IDA
>>
>> 职位描述:
>>> 从事Android或OMS平台手机终端应用的开发。
>>>
>>> 职位要求:
>>> 1、计算机及相关专业本科以上学历;
>>> 2、良好的Java技术功底;
>>> 3、熟悉Android系统架构及相关技术,1年以上实际
Um. Why don't you do your development on a version of Android that is
actually in use? 0.9 Beta, as the name implies would be BEFORE 1.0. It's
not even compatible with 1.0. And the input method feature wasn't added
until 1.5.
And beyond that, IInputMethod is not part of the SDK; the API for
app
Sid wrote:
> - Can I use the myTouch 3G to test apps that I develop using Eclipse?
Yes.
> - Can I use the myTouch 3G device itself as an app development
> platform?
Yes.
Quoting from the page you linked to:
"While developers can use regular consumer devices purchased at retail
to test and use
You can develop on any phone that comes with Market. That is one of the
requirements for being able to ship Market.
On Sat, Sep 12, 2009 at 7:12 AM, Sid wrote:
>
> I just ordered a myTouch 3G from T-Mobile (it will come locked). My
> main motivation is to do Android Development on this phone. I
I don't know, it is owned by the Google maps people.
On Sat, Sep 12, 2009 at 10:27 AM, Arno den Hond wrote:
>
> So are there any plans on making this API public?
> My app would like to use the display names and locations of latitude
> buddies.
>
>
> On Sep 10, 1:27 am, Dianne Hackborn wrote:
> >
hi,
only repeat vertically,u can use BitmapDrawable.setTileModeX(int TileMode);
2009/8/19 Klaus Kartou
> Hi!
> Is there a way to specify that a drawable should only be repeated
> vertically and then stretched horizontally?
> At the momemt I use the following which repeates the drawable both in t
i am developing file browser to my media player UI
i have written in my OnItemClickListener()
in that i called the method like adapter.notifyDataSetInvalidated()
method
but it is not working
please help me
to refresh my list.based on onItemClickListener() method
please help me
thanks in advanc
Please can I have the numerical value of the zoom capacity in
android.i.e maximum amount of zoom that can be made.
Thanks in advance
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post
There's a closely related article on screen orientations (handling
screen rotation) on the MB200 (CLIQ) that you might also find useful.
You can find it at
http://developer.motorola.com/docstools/library/Handle_Screen_Rotation/
Cheers, Lisa
On Sep 11, 2:27 pm, Carl Whalley wrote:
> Ok, sorry
I just ordered a myTouch 3G from T-Mobile (it will come locked). My
main motivation is to do Android Development on this phone. I just
read on the Android Development Site
http://developer.android.com/guide/developing/device.html
that one can develop Android apps on the "Developer Phone" or the
C
It's probably about time we introduced our app to the world, here
goes...
Application: AugSatNav
Category: Travel
Description: AugSatNav is the world’s first “true” augmented reality
application to overlay navigation information directly upon a live
video feed of the road ahead.
Extended descript
On Aug 27, 10:54 pm, Ramesh wrote:
> 08-28 11:16:26.785: ERROR/AndroidRuntime(1433): Uncaught handler:
> thread main exiting due to uncaught exception
> 08-28 11:16:26.825: ERROR/AndroidRuntime(1433):
> java.lang.OutOfMemoryError: bitmap size exceeds VM budget
> 08-28 11:16:26.825: ERROR/AndroidR
For the life of me, I cannot figure out how to implement
InputMethodManager. Every time I include it anywhere in my code, the
SDK (Eclipse plug-in) complains it doesn't exist and whether I would
not want to implement a new class, interface, enum, etc. instead.
All I want to do is show the soft ke
Dear All,
My intention is to add pause and resume functionality to my video
recording app, for which on selecting pause I am releasing the
recorder and on selecting resume I am starting a new recorder and
writing to a new file. After selecting stop I want to add all these
individual files and sto
So are there any plans on making this API public?
My app would like to use the display names and locations of latitude
buddies.
On Sep 10, 1:27 am, Dianne Hackborn wrote:
> This is not a public API. Any attempts you make at using it will break in
> the future.
>
> On Wed, Sep 9, 2009 at 3:54 P
I will check out the SDK and see if I can reproduce. This was the
LogCat of the error : Essentially I was trying to extend a map
overlay, and draw the location circle on the screen.
09-12 00:50:35.825: ERROR/AndroidRuntime(5769): Uncaught handler:
thread
main exiting due to uncaught exception
09-
What do you mean by "stops working"?
I had a problem with coming back from sleeping where my app was
unresponsive, which went away when I handled orientation config
changes myself. Since my app was in landscape, there was an
orientation change coming back from sleep and something in
GLSurfaceView
I store my application config data in preferences:
http://developer.android.com/guide/topics/data/data-storage.html#pref
And have a singleton class to read and write (aka wrap) them. That way
it is also maintained even if the application is killed.
On Sep 11, 8:21 pm, Tom Gibara wrote:
> I hesit
What does your code look like?
On Sat, Sep 12, 2009 at 6:41 AM, manigault wrote:
>
> Hi,
> I have the following issue i have an application that uses
> android.media.MediaPlayer and got this exception:
>
> 09-12 16:21:05.921: ERROR/AndroidRuntime(9890): Uncaught handler:
> thread main exiting d
On Sep 11, 9:52 am, Dianne Hackborn wrote:
> When in landscape, you aren't seeing -any- of your application, the IME is
> running in fullscreen mode and completely covering it (so there is no reason
> to do more work and resize the app to... nothing).
>
There is a flag (forgot what it is at t
On 12 Wrz, 17:03, "http://books.google.com/books?
id=ifqnCAAJ&dq=inauthor:%22Russ+Manning
%22&lr=&as_brr=0&rview=1&source=gbs_book_other_versions_r&cad=2"
wrote:
> On 2 Wrz, 12:39, Bartłomiej Nowak wrote:
>
>
>
> > 2009/9/2 Y2U
>
> > > Hi guys,
>
> > > Im developing an application related
On 2 Wrz, 19:49, Chris Stratton wrote:
> I think that's really a facebook API or facebook application
> development question not an android one, for which you want to consult
> facebook's application developer, API, etc documentation.
>
> In other words:
>
> 1) figure out the generic algorithm
On 2 Wrz, 07:02, Y2U wrote:
> Hi guys,
>
> Im developing an application related to daily horoscopes. I have to
> add a functionality that allows user to post his/her horoscope on his/
> her facebook profile. as far as i know we have to get some permissions
> from the user to post things to thei
On 2 Wrz, 12:39, Bartłomiej Nowak wrote:
> 2009/9/2 Y2U
>
>
>
>
>
> > Hi guys,
>
> > Im developing an application related to daily horoscopes. I have to
> > add a functionality that allows user to post his/her horoscope on his/
> > her facebook profile. as far as i know we have to get some per
On 2 Wrz, 19:49, Chris Stratton wrote:
> I think that's really a facebook API or facebook application
> development question not an android one, for which you want to consult
> facebook's application developer, API, etc documentation.
>
> In other words:
>
> 1) figure out the generic algorithm
Hi Neilz,
regarding adding a Toast message, it is quite straightforward to do.
Mark Murphy gives a great tutorial which shows the details of how to
do this here:
http://www.androidguys.com/2008/09/09/maps-itemizedoverlay-and-you/
Regarding Question 1 specifically, the title and snippet is not the
can some one please tell me how i can implement this method
static String[] split(String text, Pattern pattern)
http://developer.android.com/reference/android/text/TextUtils.html#split(java.lang.String,
java.util.regex.Pattern)
public static String[] split (String text, String expression)
Str
Hai Sir,
I am developing an application in which i want to insert
image in editext with wrap feature
will any body help me , with some example
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups "Android Devel
Thanks guys for clearing my doubt.
On Fri, Sep 11, 2009 at 5:30 PM, Jason Proctor <
jason.android.li...@gmail.com> wrote:
>
> for me the activity granularity is where
> functionality can be broken down to discrete
> tasks. is this piece of the program standalone?
> does it have defined inputs and
Hey guys, i'm quite interested in knowing this too. Let me know if
you have any further info on the topic.
cheers
Theo
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group,
i had the line in the manifest in the wrong place. thanks for the
help.
On Sep 11, 7:30 pm, Mark Murphy wrote:
> Boozel wrote:
> > I know this is probably a really stupid question but have tried for
> > ages and searched but cant get it to work. I'm trying to create anew
> >screenwhen an item in
Hi,
I have the following issue i have an application that uses
android.media.MediaPlayer and got this exception:
09-12 16:21:05.921: ERROR/AndroidRuntime(9890): Uncaught handler:
thread main exiting due to uncaught exception
09-12 16:21:06.101: ERROR/AndroidRuntime(9890):
java.lang.IllegalStateEx
I have a basic setRepeating alarm to update my widget. Currently the
repeat is set when the user makes the widget and when the user boots
the device. It seems that during the course of the day the
AlarmManager will just decide to stop updating.
Also, what is the best way to re-set an alarm after
Hi,
The UI surface Pixel Format inside surface flinger is RGBA_, Can this
be changed to ARGB_.
Currently my hardware supports ARGB_ pixel format.
Is it possible that the surface flinger is made to give UI surfaces in the
ARGB_ pixel format whcih my hardware supports?
Thanks an
> Do we as developers have to tell the user (via pop up at app start or
> eula or so) if an app is using analytics functionalities, like
> Flurry's or Admob's?
If you are distributing through the Android Market, the Android Market
terms and conditions you agreed to has language describing the
req
There should be a similar call for CDMA..
http://android.git.kernel.org/?p=platform/frameworks/base.git;a=blob;f=telephony/java/android/telephony/cdma/CdmaCellLocation.java;h=7cf8a9a66b0a41533c919a31a7647ea6bd2d9016;hb=c883b143ba2b8bfe2f2033d00dee9ff733f1b59c
Class is CdmaCellLocation.java
You
Before calling the function getColumnData(), you should be calling
startManagingCursor(), so that the cursor is initialized.
That should solve your problem,
Dexter.
On Sep 11, 9:14 am, "wahib.t...@gmail.com"
wrote:
> I am a newbie to android programming. I want to search the name of
> contact
Hi,
Do we as developers have to tell the user (via pop up at app start or
eula or so) if an app is using analytics functionalities, like
Flurry's or Admob's? And if yes, how do you let the users know or are
there official regulations? Are there text templates were I can choose
from?
Best Regards,
Thanks Roman, very helpful. Actually, it turns out that the dynamic
method is what I need after all.
best wishes,
Anna
On Sep 12, 3:24 am, "Roman ( T-Mobile USA)" wrote:
> What do you mean with "user's country"?
>
> Static methods:
> - You could use the phone number which is assigned to you. Th
Hi,
I really didn't get you what you want to say. Please be specific and
let us know what error do you get and when actually does it occur.
What are you trying to do? If you want to listen for the message then
you can do that using Broadcast Receiver and registering that receiver
in AndroidManfes
> Will the GsmCellLocation give me the proper result in CDMA network. If
> my application uses GsmCellLocation, then will I be able to get CellId
> and Lac value? If not then how to get those values on CDMA network.
Until a version of Android ships with documented CDMA support, there is no
good w
Hi,
Will the GsmCellLocation give me the proper result in CDMA network. If
my application uses GsmCellLocation, then will I be able to get CellId
and Lac value? If not then how to get those values on CDMA network.
Regards
Sunil
--~--~-~--~~~---~--~~
You received
Neat idea. I fenced back in school, actually, and wouldn't mind
helping. I'll send you an email.
On Sep 11, 1:33 am, jonthebear wrote:
> ive installed the sdk and have no idea what to do, so could you either
> give me step by stpp instructions or better yet make the following app
> for me.
>
> i
can you not use marquee attribute of TextView if you want to scroll
text inside textview?
regards
On Sep 11, 10:33 am, "m|ch" wrote:
> I want to enable scrolling for textview.
> I set vertical scrollbar which appears but scrolling doesn't work.
> Why?
>
> I am not using ScrollView because Home
A bit late, but here some details about my app... ;-)
Application: Personalytics
Category: Productivity
Desc: Personalytics is a tool for Android that allows the collection
of personal events (i.e. calls and SMS) and their related positions
with a non-invasive approach. Once synchronized (free
My guess is that they're running one of Cynogens Donut ROMs that hes'
made available. There's a fair amount of talk about performance
improvements and he is pointing at devs for some issues (a main one
being problems with widgets and rotation).
If you want to use the open-source repo donut SDK to
87 matches
Mail list logo