[android-developers] Re: Google Maps Broadcast Event for audible navigation instructions start and stop?

2009-12-14 Thread blindfold
+1. I am interested in this functionality too, to mute my app when Google Maps Navigation is talking. On Dec 14, 8:52 pm, skyhigh wrote: > I have an application which is playing audio.  I have some customers > that use this application while driving and who also use the Google > Maps application

[android-developers] Writing indented XML

2009-12-14 Thread Armond Avanes
Hi Folks, Anyone knows how I can write indented XML using XmlSerializer or any other XML specific API? Regards, Armond -- 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.c

[android-developers] Aldiko View

2009-12-14 Thread Sukitha Udugamasooriya
hi, Does anybody know what is the View used in the Aldiko epub reader. Is it a WebView used to displaythe chapter content? -- 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@googlegroup

[android-developers] Re: IllegalStateException: not connected to MediaScannerService?

2009-12-14 Thread blindfold
Today I received yet another instance of this crash problem, again on a Droid with Android 2.01: java.lang.IllegalStateException: not connected to MediaScannerService at android.media.MediaScannerConnection.scanFile (MediaScannerConnection.java:148) at blah.blah.blah.onMediaScannerConnected(Unknow

Re: [android-developers] Re: help needed with project: preview image on a opengl texture

2009-12-14 Thread 李務誠
On Sat, Dec 12, 2009 at 6:28 AM, tdom...@googlemail.com < tdom...@googlemail.com> wrote: > couldn't fully test if it works. > but why do I have to call this method, what does it acutally do? > > I though it was needed if you want to directly let the camera draw on > an surface, like here: > > http

Re: [android-developers] Re: Disable spinner item?

2009-12-14 Thread Romain Guy
I just linked to it. ListAdapter.isEnabled(int). On Mon, Dec 14, 2009 at 10:49 PM, rexowner wrote: > Thank you for your reply. > > None of the 2 Class methods or 8 inherited methods on the page cited > appear to have > anything to do with disabling items in the list.  None of the > subclasses > a

[android-developers] Anybody know the number of Android user that can buy app against those who cant?

2009-12-14 Thread RobGThai
While Android seems to be raging recently, however not all users are able to buy application through Market (Thanks Google and their limited policy). I just don't know why should I developing an app for a platform that doesn't really convinced me that it will make me some profit. At the very least

[android-developers] Re: Disable spinner item?

2009-12-14 Thread rexowner
Thank you for your reply. None of the 2 Class methods or 8 inherited methods on the page cited appear to have anything to do with disabling items in the list. None of the subclasses appear to have a way to do this either. Maybe I am dense, but it is not at all clear how to do this. On Dec 13, 2

[android-developers] Re: GLSurfaceView.Renderer render rate

2009-12-14 Thread Robert Green
If you're using the render-continuously mode, she'll go as fast as she can go. 60FPS if you're doing easy HW-accel 2D or very basic 3D. I've never seen over 60FPS. It's probably vsynced to that. I like to use a shared object called the World to pass between my logic thread and renderer thread.

[android-developers] Re: Facebook login fail

2009-12-14 Thread Krishna Shetty
The permission is already added in my manifest file. Still I am facing the same issue. Please tell me whether 'FBRocket' library is working for any one. thanks, Krishna On Dec 14, 11:10 pm, Eric Hackborn EH wrote: > > I am creating a Facebook application on Android > > I trying to use Facebook

[android-developers] Re: Socket - Network connect drops after 15 minutes

2009-12-14 Thread Edward Falk
Can I ask why you're keeping a connection open for 15 minutes? That must be killing the battery. -- 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 t

[android-developers] Re: Simple Call App - Uri?

2009-12-14 Thread AJ
I am trying to make a very very simple app as a beginner but it does not work. The app just has a text bar and a button. Somehow, the call button does not start a call. Help please. package com.tests.helloandroid; import android.app.Activity; import android.content.Intent; import android.net.Uri;

[android-developers] Re: Copy protection bug statuses

2009-12-14 Thread rflexor
I'd like to switch off copy protection for my app, too. I think I have successfully managed to reproduce this issue on an 1.5 emulator _just_once_. What I saw from the logcat was that the process couldn't access the preferences and the database because it ran under a different UID than the UID tha

[android-developers] Simple Call App - Uri?

2009-12-14 Thread AJ
package com.tests.helloandroid; import android.app.Activity; import android.content.Intent; import android.net.Uri; import android.os.Bundle; import android.view.KeyEvent; import android.view.View; import android.widget.Button; import android.widget.EditText; import android.widget.LinearLayout; pub

[android-developers] Re: frame buffer data in android

2009-12-14 Thread Niraj
Hi, I am collecting framebuffer data directly from /dev/graphics/fb0. This way works properly while working with android emulator. I am using C code for this purpose, as I didn't get any functionality in java to read framebuffer directly. And I am using JNI to call this C function in Android. If

[android-developers] Re: Audio options for music app - should I use JET?

2009-12-14 Thread akitto
Check out Google up search for Google up and media on YouTube, its an hour long, the first 30 mins is rubbish but its worth checking out for your question. On Dec 15, 4:29 am, k_day wrote: > I am currently working on a music app and am starting to think about > how audio playback should work.  At

[android-developers] Audio options for music app - should I use JET?

2009-12-14 Thread k_day
I am currently working on a music app and am starting to think about how audio playback should work. At any given point in time, a user is able to play multiple notes from multiple instruments. My initial thought was to use JET, but I am thinking it may be too limited given that I also would like

[android-developers] Re: GK:How to Kill all Activity at a time ?

2009-12-14 Thread Jack Ganesh
Hi.., i used the following : void onClick(){ android.os.Process.killProcess(android.os.Process.myPid()) System.exit(0); } but still its coming back to the previous activity. Any other try ? ? Cheers, Ganesh >> Hi Ganesh,there are two ways android.os.Proce

[android-developers] Re: Socket - Network connect drops after 15 minutes

2009-12-14 Thread GC
Sounds like wifi is going to sleep. Go to wifi settings, hit menu, tell the wifi to never go to sleep. Understand the battery implications. On Dec 14, 8:52 pm, Ron wrote: > An additional clue I just caught on DDMS just before the first > connection failure: > > 12-14 19:00:23.164: VERBOSE/WifiMo

[android-developers] Re: integration testing with content provider

2009-12-14 Thread tenacious
I've presented how I worked out a solution to this problem at my blog: http://tenacious33.wordpress.com/2009/12/15/android-functional-testing-with-mockcontexts/ -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send e

[android-developers] Re: GLSurfaceView.Renderer render rate

2009-12-14 Thread Jeremiah Sellars
I suppose I should add... that my background is homebrew for Nintendo DS and coding in C. The game loop would generally just include a call to wait for the screen's vertical blank and that was ~1/60th of a second. It couldn't be relied upon totally for timing, but as long as you weren't running rea

[android-developers] Import existing project into workspace - Can't see Android Library in Java Build Path

2009-12-14 Thread Miguel Paraz
Hi, In Eclipse, when I "Import an existing into workspace" (from a Mercurial repository, if it matters), I don't have the "Android Library" in the Java Build Path. Instead, I get "Unable to get system library for the project." The .classpath file does have: and the other projects in the

Re: [android-developers] Re: How to add a third-party jar into apk?

2009-12-14 Thread bear tung
but javax.xml.transform is already included in xmlsec-1.4.3.jar which is not work. T_T On Tue, Dec 15, 2009 at 6:25 AM, jotobjects wrote: > The problem here is that javax.xml.transform is not part of the > Android platform so you will not be able to use this jar file with > your Android app. >

[android-developers] Re: AudioTrack

2009-12-14 Thread Business Talk
I was just testing the capabilities at this stage. I wanted to see if it can be done at all. There are many applications I can think of that require such capability. On Dec 14, 4:00 pm, niko20 wrote: > You create two AudioTrack instances, then in each you pass a playback > listener object, I don'

[android-developers] Re: Socket - Network connect drops after 15 minutes

2009-12-14 Thread Ron
An additional clue I just caught on DDMS just before the first connection failure: 12-14 19:00:23.164: VERBOSE/WifiMonitor(60): Event [CTRL-EVENT- DISCONNECTED - Disconnect event - remove keys] 12-14 19:00:23.164: VERBOSE/WifiMonitor(60): Event [CTRL-EVENT-STATE- CHANGE id=-1 state=8] In looking

[android-developers] Re: How to submit device driver into Android kernel source code?

2009-12-14 Thread bluestar
Thanks Mark, I will go to [android-platform] Google Group to ask now. Thanks On 12月14日, 下午5時33分, Mark Murphy wrote: > bluestar wrote: > > Does anyone submit source code into Android code? > > Is there limitation to someone that sumbit? > > How to do this procedure? > > > Hope to tell more in deta

Re: [android-developers] checkbox and icons in listview

2009-12-14 Thread Jose Gomez
Hey I just wrote something like this I couldn't find any examples either but I can give you some pointers. Declare your List View Layout http://schemas.android.com/apk/res/android"; android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical"> Declar

[android-developers] Re: How to handle simultaneous key press

2009-12-14 Thread onceaweek
Thank you for reply. I'd like to know how to catch previous key press information. Is there any method in KeyEvent class or somewhere ? On 12월15일, 오전1시53분, Nightwolf wrote: > You should try it. > At least combinations like "w+a+space" work. I haven't try with > special keys though. > My app tha

[android-developers] How can I receive WAP Push with custom MIME Type?

2009-12-14 Thread RainBow
Hello, I am trying to write a simple code that will receive a WAP Push message on my device. However, when I send a wap message with a custom mime-type, I get the following error (taken from logcat logs): Received PDU. Unknown Content-Type = XYZ where XYZ = my custom MIME-typed message Looking

[android-developers] checkbox and icons in listview

2009-12-14 Thread Abhi
Hi, I am looking to create a custom ListView with 6 fixed items in the list. Each list row comprising of the checkbox, image icon and a single line of text. I have read couple of tutorials but none of them seem to be that well explanatory. Could someone please guide me to a sample code? That would

Re: [android-developers] Re: Getting magnetic field results as degrees

2009-12-14 Thread Mark Murphy
Jeffrey wrote: > It seems like google should mention somewhere > that you need to use trig to get degree's from the compass... That's because you don't. http://github.com/commonsguy/cw-advandroid/tree/master/Sensor/Compass/ Or, to quote from the docs: "Sensor.TYPE_ORIENTATION: All values are a

[android-developers] Re: Getting magnetic field results as degrees

2009-12-14 Thread Jeffrey
I got it working, the phone will only need to be lying flat, so that made it a lot easier. It seems like google should mention somewhere that you need to use trig to get degree's from the compass... That doesn't quite seem like general knowledge. Though I had a problem with the activity force closi

[android-developers] Re: hi how i can record the phone call

2009-12-14 Thread Eric Wong (hdmp4.com)
read this http://code.google.com/p/android/issues/detail?id=2117 On Dec 14, 6:21 pm, tuku wrote: > actually i want to record the in coming and out going phone calls > can i do that if yes can u provide me some sample code > > bye takecare -- You received this message because you are subscribed

[android-developers] Reminder: IRC office hours tomorrow

2009-12-14 Thread Megha Joshi
Hi Everyone, Just a quick reminder that our IRC office hour session is taking place tomorrow morning, 9:00-10:00 a.m. PST. Please join us with your technical questions at: irc://irc.freenode.net#android-dev Thanks, Megha -- You received this message becau

[android-developers] GLSurfaceView.Renderer render rate

2009-12-14 Thread Jeremiah Sellars
Hello everyone, Continuing to tackle a game project, I've learned tons and have tons more to learn. >From what I've picked up, a "proper" game would have at least 3 threads. The main activity thread which would likely double as the UI thread, the GL Renderer thread which is setup automatically wi

Re: [android-developers] Creating databases

2009-12-14 Thread Mark Murphy
Neilz wrote: > I've made a few apps now, which use an SQLite database, no problems. > In my latest app, I want two tables, and I just realised that every > example I can find only creates one table. > > So, is this a limitation? Must I use only one table? Assuming I can > use two, how do I go abou

[android-developers] Creating databases

2009-12-14 Thread Neilz
I've made a few apps now, which use an SQLite database, no problems. In my latest app, I want two tables, and I just realised that every example I can find only creates one table. So, is this a limitation? Must I use only one table? Assuming I can use two, how do I go about changing my create scri

[android-developers] Google Voice Search has API?

2009-12-14 Thread VY
Hi: I am interested in using the Google voice search capability as an API. I tried looking for it but cannot find it. Is this voice search capability not available to developers? thanks --Vincent -- You received this message because you are subscribed to the Google Groups "Android Developers"

[android-developers] How to prevent or avoid java/lang/IllegalStateException when dealing with Cursors?

2009-12-14 Thread Agus
I often get this message in ddms, even though I have deactivated a cursor. 12-14 15:36:17.310: INFO/dalvikvm(5874): Ljava/lang/IllegalStateException;: Finalizing cursor android.database.sqlite.sqlitecur...@43807508 on null that has not been deactivated or closed Any ideas on how to solve this? -

Re: [android-developers] Androi ASE

2009-12-14 Thread Mark Murphy
intbt wrote: > ASE will not install on my G1, I assume it is because I am running 1.5 > and it requires 2.0. > > I can get ASE to run on the Eclipse emulator when it is running 2.0 > (not 1.5 or 1.6). > > Is this correct and where is this described as a requirement for ASE? You might consider as

[android-developers] Androi ASE

2009-12-14 Thread intbt
ASE will not install on my G1, I assume it is because I am running 1.5 and it requires 2.0. I can get ASE to run on the Eclipse emulator when it is running 2.0 (not 1.5 or 1.6). Is this correct and where is this described as a requirement for ASE? (As an aside, the G1 downloads for 1.6 at HTC/de

[android-developers] Accessing built-in AAC decoder

2009-12-14 Thread ls02
I need to access built-in AAC decoder to decode raw AAC frames. How can I do this either from NDK code or from Java code? -- 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.c

[android-developers] Re: [Android 2.0] Contacts FAQ?

2009-12-14 Thread Mo
Hi Rachel, This is a very informative and helpful blag. I really helped me in with questions I had about 2.0 API changes for Contacts. One thing I am still not able to resolve is "How to get all the email address for a contact" As you mentioned in your explaination that "ContactsContract.CommonDat

[android-developers] Re: PopupWindow with GridView - Trouble with inflating view

2009-12-14 Thread k_day
I am still unable to capture the OnItemClick event from my GridView that is in the PopupWindow. Can anybody help me with this? On Dec 4, 12:48 am, k_day wrote: > I ended up finding the problem.  I was using the ImageAdapter code > form the Hello, Gallery example.  That contained a line of code >

[android-developers] Re: JDBC Driver for SQLiteDatabase

2009-12-14 Thread jotobjects
JDBC drivers are never used directly by JDBC applications. In a JDBC application you reference the URI name of the driver in DriverManager.getConnection(). That is the only time you ever see the driver and you never actually call a method on the driver itself in a JDBC application. This has nothi

[android-developers] Re: How to add a third-party jar into apk?

2009-12-14 Thread jotobjects
The problem here is that javax.xml.transform is not part of the Android platform so you will not be able to use this jar file with your Android app. All you have to do to use a third-party jar with Android is to drop the jar file into your project lib directory. However if the jar has dependencies

[android-developers] Re: Hardware/Carrier Compatibility Group

2009-12-14 Thread Maps.Huge.Info (Maps API Guru)
Probably too early for you yet but I solved this problem by recruiting a beta test team from my users. On the last page of help text, I asked for beta testers and about 30 (a couple new every day) responded so far with a desire to assist in testing the app. They have a variety of devices and OS's s

[android-developers] Hardware/Carrier Compatibility Group

2009-12-14 Thread polyclefsoftware
I don't know about most of you, but as an indie developer I'm faced with the growing need to: 1) Test visibility of my app on various hardware/carrier combinations 2) Test basic functionality on various hardware/carrier configurations You would think it would be a wise investment for manufacturer

[android-developers] PCM Data - Frame Count

2009-12-14 Thread Business Talk
I am using the length of my PCM data buffer to calculate the number of frames; depending if its mono or stereo or 8bit or 16bit. For example, if it is a mono/8bit then the number of frames is the length of the buffer. if it is stereo/16bit the number of frames is the length / 4. The problem is th

[android-developers] ExpandableListView change background for child items

2009-12-14 Thread droidin.net
I'm using ExpandableListView in my app and one of the complains is that when expanded it's hard to visually distinguish where the child item ends and next group item begins. So I would like to change background of the child list item to the different shade. Brutal attempts that I've made so far wer

[android-developers] TTS over bluetooth

2009-12-14 Thread Declan Shanaghy
Using Android 2.0 SDK. Is it possible to direct the TTS engine's output to a connected BT headset? I've tried with KEY_PARAM_STREAM set to all of the available stream types but the speech is still output by the speaker on the phone. Any guidance or suggestions welcome. Thanks, Declan -- "A

[android-developers] TextView ems, sp, typeface attributes

2009-12-14 Thread jotobjects
I'm using android:ems or android:minEms to fix the minimum width of a set of buttons so they are all the same width. Are there better ways to accomplish that objective? This works but there are some mysteries regarding ems. The ems attribute works correctly with the normal typeface, but typeface

[android-developers] Re: Write a file to sdcard...

2009-12-14 Thread Jason Proctor
yer welcome. ideally the runtime would throw a permissions exception so you'd get an idea of what went wrong. file not found can and does mean anything :-) >Ah thanks Jason, that seems to have fixed it, > >Thanks > >On Dec 14, 3:33 pm, Jason Proctor >wrote: >> does your manifest declare WRIT

[android-developers] Re: AudioTrack

2009-12-14 Thread niko20
You create two AudioTrack instances, then in each you pass a playback listener object, I don't see why you can to multiples at once.. -niko On Dec 14, 7:27 am, Business Talk wrote: > Is the AudioTrack fundamentally designed to be a singleton? Methods on > the OnPlaybackPositionUpdateListener rec

[android-developers] Re: Write a file to sdcard...

2009-12-14 Thread Mark Wyszomierski
Ah thanks Jason, that seems to have fixed it, Thanks On Dec 14, 3:33 pm, Jason Proctor wrote: > does your manifest declare WRITE_EXTERNAL_STORAGE permission? > > also please use Environment.getExternalStorageDirectory() instead of > /sdcard directly. on future platforms the location might change

Re: [android-developers] Re: Immediate Need for Multiple Requirements

2009-12-14 Thread maisonobe alexandre
everybody should write a mail back so they'll understand posting here was not a good idea . alex 2009/12/14 Maps.Huge.Info (Maps API Guru) > You may have noticed the original message has been removed but the > quoted text in your replies lives on. I suggest deleting your messages > from this th

Re: [android-developers] Write a file to sdcard...

2009-12-14 Thread Jason Proctor
does your manifest declare WRITE_EXTERNAL_STORAGE permission? also please use Environment.getExternalStorageDirectory() instead of /sdcard directly. on future platforms the location might change. >Hi, > >I'm trying to create a file on the sd card. Using this: > > OutputStream out = new FileO

[android-developers] Write a file to sdcard...

2009-12-14 Thread Mark Wyszomierski
Hi, I'm trying to create a file on the sd card. Using this: OutputStream out = new FileOutputStream("/sdcard/tmp.jpg"); but that throws a FileNotFoundException. Isn't OutputStream supposed to create the file, if not found on disk? I'm looking to write image data there. This is on a 1.6 emulat

Re: [android-developers] Rotate TextView to x degrees

2009-12-14 Thread Hong
Bitmap rotation with Matrix works. You can also try define a path and canvas.drawTextOnPath On Mon, Dec 14, 2009 at 10:45 AM, Albert wrote: > Hello there! Is there an easy way to rotate a text to some degree as > with bitmaps?? > > Matrix matrix = new Matrix(); >matrix.postRotate(15); >

[android-developers] Re: Google Maps Broadcast Event for audible navigation instructions start and stop?

2009-12-14 Thread justinh
Unless it is here then it is unsupported and you shouldn't use it anyway: http://developer.android.com/reference/android/content/Intent.html Of course, there is nothing from any of the Google apps listed there. Not sure about just general audio. On Dec 14, 2:52 pm, skyhigh wrote: > I have an ap

[android-developers] Re: How to add a third-party jar into apk?

2009-12-14 Thread Jey Michael
I think this will be addressed by my fix: https://review.source.android.com/#change,12625 Looks like the above is not merged into the source tree yet. -J e y On Mon, Dec 14, 2009 at 1:02 AM, bear tung wrote: > for example, xml-security project.  I used add > xmlsec-1.4.3.jar(http://santuario.ap

[android-developers] Difference between pressing 'Back' button and 'Menu button

2009-12-14 Thread hap 497
Hi, I have an activity on Android with a content view. After I launch my activity, and I launch another activity on top of it. And when click 'Back' Button, my activity looks fine (all the text view and text view values are there). But when I launch my activity, leave the phone idle and have the

[android-developers] Google Maps Broadcast Event for audible navigation instructions start and stop?

2009-12-14 Thread skyhigh
I have an application which is playing audio. I have some customers that use this application while driving and who also use the Google Maps application to get directions to the places where they are driving. They have asked me to change my application to pause my audio while the Google Maps appl

[android-developers] Re: Immediate Need for Multiple Requirements

2009-12-14 Thread Maps.Huge.Info (Maps API Guru)
You may have noticed the original message has been removed but the quoted text in your replies lives on. I suggest deleting your messages from this thread so that it dies quietly. Until then, the payload this spammer released will live on. -John Coryat -- You received this message because you ar

[android-developers] In Android 2.0.1 on Droid, the accelerometer seems to stop working when you turn off screen?

2009-12-14 Thread Artem - WorkSmart Labs
Has anyone else seen this? I just wanted to confirm before filing a report. This used to be (what I thought was) a hardware problem with the G1 at some point, but I thought it was resolved for the Droid. Does anyone have any insights? -- You received this message because you are subscribed to t

[android-developers] Re: Extending the webkit or creating webkit plug in

2009-12-14 Thread Matt Kanninen
You can't extend webkit or the default browser on existing Android devices, but you can create your own Android distribution and alter webkit however you please, then install this new firmware on your own devices or make it available for rooted phones. You can also ship your own application that f

Re: [android-developers] Android >= 1.6: Invalid View object passed to onListItemClick()?

2009-12-14 Thread Romain Guy
>            v.setBackgroundResource(R.color.todo_item_highlighted); Here's your problem. Views are reused by ListView (so if you change the background of item #1, it might be reused as item #4 later), this type of change must be done from the Adapter's getView() method. -- Romain Guy Android fr

[android-developers] List Contact type SIM, Phone, Google

2009-12-14 Thread Nature Boy
Hi there, I'm aiming to develop an application on Android 1.5 that is required at one point to list all contacts and display the type of contact ie SIM, Phone or Google. I can easily list all the contacts by using Cursor curAllContacts = getContentResolver().query(People.CONTENT_URI, null, null, n

[android-developers] Streaming video files endless buffering

2009-12-14 Thread moju
Hello ! I have a problem streaming live video files. When I stream a file say of duration 5 minutes, it stops after streaming 2 to 3 minutes and enters in to endless buffering state. The VideoViews's OnBufferingListener is endlessly executed, however it shows that the buffering is not progressing

Re: [android-developers] Re: Immediate Need for Multiple Requirements

2009-12-14 Thread Jose Gomez
There is no mod in the list that can ban him? Sincerely Jose C Gomez http://www.josecgomez.com On Mon, Dec 14, 2009 at 1:24 PM, Jason Proctor < jason.android.li...@gmail.com> wrote: > i've tried a few times to get this guy to stop posting and it's > pointless. he just blasts away without readin

[android-developers] adding 2d layer to the videoplayer

2009-12-14 Thread qlimax
hi, is possible to add a 2d layer to the default android videoplayer? and in general how? also greedy description of this modding process. or alternatives to do that? thx, bye ! -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to t

[android-developers] Top of ImageSpan images getting cut off?

2009-12-14 Thread Eldad
I'm trying to use ImageSpan to add icons to a textview (small graphics, symbols like emoticons, not much taller than normal letters) and whenever I have icons on the top line of text they're getting chopped off at the top. Icons on other lines are fine. It's like the textview, when calculating its

[android-developers] Extending the webkit or creating webkit plug in

2009-12-14 Thread javafan
Hi All, Is there a way to extend Webkit on Android? Can we write plug in for webkit in android? Can we do things like creating our own renderer for a particular type of data embaded in the webpage? Can we track user session or modify data stored in the browser cache/memory? Please respond if any

Re: [android-developers] Re: Immediate Need for Multiple Requirements

2009-12-14 Thread Jason Proctor
i've tried a few times to get this guy to stop posting and it's pointless. he just blasts away without reading anything, AFAICS. here's hoping that if enough people mark it as spam it won't get through to the list address, not just individual mailboxes. >Thanks! >Sincerely >Jose C Gomez > >

[android-developers] rename a app's name after it's installed

2009-12-14 Thread Kai
Hi, is it possible to let users rename the app's name as it appears in the app menu? Some users want to make my app appear on a different name of their choice. Thanks, Kai -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this gr

[android-developers] Re: off-center home screen shortcuts on high-res device

2009-12-14 Thread kcoury
Hey Dave, I actually took a look at your source because I wanted to get this working on my Droid. It turns out that the issue here is that you're just using the constant value for the dimension instead of using the getDimension() method in the Resources class and getting the actual dimension. You

[android-developers] Soft keyboard won't open on custom view in landscape mode?

2009-12-14 Thread Eric Hackborn EH
I've been experimenting with the IMM and it's mostly straightforward, but for some reason, my custom view that launches the soft keyboard works only in portrait mode. launching it is easy enough: InputMethodManager imm = (InputMethodManager)getContext().getSystemService(Context.INPUT_METH

Re: [android-developers] Facebook login fail

2009-12-14 Thread Eric Hackborn EH
> I am creating a Facebook application on Android > I trying to use Facebook client library called 'FBRocket' in my app > mentioned in below link. > http://wiki.developers.facebook.com/index.php/User:Android > > > But, Facebook login itself is failing. > When I test, it takes very long time to disp

Re: [android-developers] Android >= 1.6: Invalid View object passed to onListItemClick()?

2009-12-14 Thread Eus
HiHo! On Mon, 2009-12-14 at 09:18 -0800, Romain Guy wrote: > Hi, > > It looks like you are doing the wrong thing in your adapter. Are you > locally caching views yourself? AFAIK, no, I am not. I just do very simple stuff using the available APIs without touching fancy stuff like caching. The a

[android-developers] Market access to paid apps on Droid ?

2009-12-14 Thread jarkman
We've had a couple of reports from Droid users that they can see our free trial apps in the Market, but not our paid-for ones. And, as some of them had bought an app on their previous device, they are understandably anxious to get it onto their new device. We know it's not afflicting all Droid us

[android-developers] Re: Call Recording in Andriod ?

2009-12-14 Thread Blake B.
There is an open issue related to this (missing) feature. #2117. If you want to encourage this to take a higher priority, "star" the issue to be notified of changes. The number of people following the issue seems to give some priority to the issue in Google's eyes. http://code.google.com/p/andr

[android-developers] Re: Invoking apps in background when phone starts

2009-12-14 Thread Streets Of Boston
Ah, i just clicked on the link in Mark's answer. I totally agree with his thoughts. On Dec 14, 12:55 pm, Streets Of Boston wrote: > Yes, it can be done. > But be absolutely sure that your application needs it and that there > is no other way. > If your app/service just tries to save a few seconds

[android-developers] Re: Invoking apps in background when phone starts

2009-12-14 Thread Streets Of Boston
Yes, it can be done. But be absolutely sure that your application needs it and that there is no other way. If your app/service just tries to save a few seconds on startup-time when the user (indirectly) activates it, don't do it. In other words, don't add to the phone's start-up time if it's not a

[android-developers] Re: Localization for simplified and traditional chinese

2009-12-14 Thread HeHe
killing your app in DDMS and re-run it should work, too. On Dec 14, 4:50 am, Kit wrote: > Sorry, i just realized that i have to restart the emulator after > changing the locale. > the localization works now. Thanks. > > On 12月14日, 上午10時11分, Kit wrote: > > > > > Hi HeHe, > > > Thanks for your rep

Re: [android-developers] Re: map sdcard to drive letter or directory on windows

2009-12-14 Thread Mark Murphy
sdphil wrote: > oops - sorry, I meant in the simulator. Oh, sorry. Ummm...unless somebody creates a Windows storage driver that maps over adb or something, I doubt that's possible. Though you might poke around the documentation for qemu -- the underlying engine for the emulator -- to see if anythi

[android-developers] Re: sorry cannot play this video!?

2009-12-14 Thread Valentino XM
Hello Ranjeet, thank you for the assist. As I am new to all of this, therefore confused. it would be a bit more advantageous for me if you could add the necessary code line for the ( raw) segment, video data and buffer progamatically? have buffer as frame wise? On Dec 14, 1:49 pm, Ranjeet

[android-developers] Dialog & windowBackground style item

2009-12-14 Thread skink
hi, i'd like to create custom Dialog with custom background Drawable. so i creaded style that defines "windowBackground" item and sets it to "@drawable/dialog_background": @drawable/dialog_background true

[android-developers] Re: map sdcard to drive letter or directory on windows

2009-12-14 Thread sdphil
oops - sorry, I meant in the simulator. On Dec 14, 9:02 am, Mark Murphy wrote: > sdphil wrote: > > is there a way to map the sdcard (/sdcard) to a drive letter or > > directory on a windows box? > > Mount it as a USB drive. You should have an option to do that when you > slide down the notificati

Re: [android-developers] Android >= 1.6: Invalid View object passed to onListItemClick()?

2009-12-14 Thread Romain Guy
Hi, It looks like you are doing the wrong thing in your adapter. Are you locally caching views yourself? On Mon, Dec 14, 2009 at 12:49 AM, Eus wrote: > HiHo! > > This subject originates here: > http://groups.google.com/group/android-beginners/browse_thread/thread/772ff8b97facfab2/9a470dd0b71dbef

Re: [android-developers] Good android book

2009-12-14 Thread TreKing
Do a search for "Android Book(s)" in this group, this is asked all the time. - TreKing - Chicago transit tracking app for Android-powered devices http://sites.google.com/site/rezmobileapps/treking On

Re: [android-developers] map sdcard to drive letter or directory on windows

2009-12-14 Thread Mark Murphy
sdphil wrote: > is there a way to map the sdcard (/sdcard) to a drive letter or > directory on a windows box? Mount it as a USB drive. You should have an option to do that when you slide down the notification drawer with the USB cable attached. -- Mark Murphy (a Commons Guy) http://commonsware.c

[android-developers] map sdcard to drive letter or directory on windows

2009-12-14 Thread sdphil
is there a way to map the sdcard (/sdcard) to a drive letter or directory on a windows box? i can always do "adb pull /sdcard sdcard" but that can take a while if you've got a lot of stuff on there... tia. -- You received this message because you are subscribed to the Google Groups "Android Dev

[android-developers] Re: please help me with opengl exception.

2009-12-14 Thread Nightwolf
It should be allocateDirect instead of allocate. On 14 дек, 02:22, billconan wrote: > hello guys, > > i'm trying to draw a very simple 2D triangle with opengl. but i have > exception "illegal parameters" > > the problematic line is > >         gl.glVertexPointer(3, GL11.GL_FLOAT, 0, mVertexBuffer

[android-developers] Re: How to handle simultaneous key press

2009-12-14 Thread Nightwolf
You should try it. At least combinations like "w+a+space" work. I haven't try with special keys though. My app that needs to handle multiple key presses has boolean array for each action (turn left or right, fire etc.). Corresponding array elements are set in onKeyDown and onKeyUp event handlers.

[android-developers] WebView losing onTouchListener when BuiltinZoomControls are used?

2009-12-14 Thread Patrick
I have a WebView widget that I'm using to display stuff. I have a touch listener set up to get taps from it. I also use the builtin zoom controls (for zooming, of course). If you don't scroll the view, you can tap and the app acts as expected. If you scroll at all, and let the controls go away, you

[android-developers] Re: How to communication with PC client.

2009-12-14 Thread Ron
You say no other connections are available so I don't know who useful this answer would be, but I was able to do this through WiFi and a cheap router. The address of the PC socket is the IP address of the wireless PC port, found through ipconfig. I have a further posting pending about difficulty

[android-developers] Socket - Network connect drops after 15 minutes

2009-12-14 Thread Ron
I am able to connect to a Socket on my PC from my HTC 1 phone, via IP and successfully transfer data in a thread that gets rescheduled every few seconds. The problem is that after 15 minutes or so, the connection drops and my debug traces give me the "Network unreachable". A further clue is that

[android-developers] continuous update of a texture

2009-12-14 Thread space
Hi! In an application I would like to update the contents of a texture in each frame. In short, in each frame I need to render to a Bitmap and then use that Bitmap as a texture in a 3D context. I tried to use the GLUtils.texImage2D(GL10.GL_TEXTURE_2D, 0, image, 0) call, but it seems that it keep

[android-developers] ProgressDialog for download progress

2009-12-14 Thread Yves Glodt
Hi, could someone provide or point to an example on how to download a file by http get, save it to the sd card, and show the download progress in a ProgressDialog? Best regards, yglodt -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To po

[android-developers] Urgent Position for Android Developer | Telecommute

2009-12-14 Thread Navneet Chalana
Hello Friends, Hope you are doing great, I am currently in search of an experienced Android Developer who could doan Android port. If you are available and looking for new projects. Please send resumes to navn...@okayainfo.com or call me at 631-685-1134 X 260 for further discussions. Project Det

  1   2   >