[android-developers] TabHost problem

2009-02-11 Thread Neo
How to set the image icon and text horizontal in the tab page ? How to set the tab page background not tabhost ? i read the source of android , not provide function, i want extends the tabhost, but the IndicatorStrategy interface of modify icon and text , is private please help me !

[android-developers] ExpandableListAdapter problem

2009-02-11 Thread Neo
In my code , i used the ExpandableListAdapter. In the getChildView(), i want my child item have two textview in it. So i create a RelativeLayout viewGroup. i debug it but it crash. problem if return the RelativeLayout be crash. if i return a TextView no problem, may be can't return ViewGroup

[android-developers] Re: What's in raw data from PictureCallback of camera?

2009-02-11 Thread blindfold
Hi David, I am inclined to deprecate that API entirely and replace it with hooks for native signal processing. Can you please elaborate on that? First of all I am using the existing APIs in my app and don't like the idea of things breaking through deprecation of the camera APIs that are in

[android-developers] Re: is there a way to read the screen text

2009-02-11 Thread blindfold
Text from your own app or any running app? I think much effort has been spent on preventing that one Android app can steal information from another running app unless both were designed to communicate with each other. You also cannot capture the screen bitmap for instance. For screen-reader-like

[android-developers] Re: Service permission and AndroidManifest.xml errors

2009-02-11 Thread Ulrich Scheller
I was having the same error message and didnt know what to do about it at first. The mistake was that I was extending the ListActivity, not just an Activity. On Feb 10, 2:04 pm, Android sunil.mahar...@lntinfotech.com wrote: Hi, Ihavecreated two .apk as client and server. My client Acticity

[android-developers] What will cause SQLiteQueryBuilder.query infinite loop?

2009-02-11 Thread yukinoba
to dear all Android developers, I'm dealing with database operation on Android recently. However, there has a problem troubles me that the query method in SQLiteQueryBuilder infinitely loops and has no return. The operation code is like below: // CODE section --//

[android-developers] Re: How to get current page content of WebView

2009-02-11 Thread Tony
I want to implement following scenario: 1. Browsing the web (using webkit.WebView) 2. After a page has finished loading, parse the content of web page. 3. if there are something wanted in the page content, then launch an new activity; otherwise continue to browse web. So I need to get web page

[android-developers] layout issue......??

2009-02-11 Thread Munish
Hi all I want to make a screen such that all time the data coming through database need to be fixed in pre-designed pattern, i mean i have designed a layout(the code is given below)and in this layout i want to fix the data that i getting from database and the data to be added in view should be

[android-developers] API Diff Report Link returns 404 for Upgrading to SDK 1.1

2009-02-11 Thread Chander Pechetty
The Link on APIDiff Report on upgrading to SDK 1.1 returns 404 http://developer.android.com/sdk/1.1_r1/upgrading.html --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group,

[android-developers] Re: Automatic upgrade

2009-02-11 Thread Al Sutton
To answer that definitively someone would need to reveal some of the inner workings of the markets update system. Al http://andappstore.com/ plusminus stoeps...@gmx.de wrote: Hi, any ideas if Veecheck will interfere with the Android-Market-Updater? Best Regards, plusminus On Feb 3, 12:13 

[android-developers] Re: Multimedia buffering

2009-02-11 Thread AliBaba
I am still unable to play videos from rtsp server. I have initialised path variable in API Demo with rtsp://bfug.rtsp-youtube.l.google.com/ CkgLENy73wIaPwl9ka7Qc5R-0hMYDSANFEIJbXYtZ29vZ2xlSARSB3JlbGF0ZWRaDkNsaWNrVGh1bWJuYWlsYOXNzeO3wMKYfAw=/ 0/0/0/video.3gp. But still it is not playing this

[android-developers] Re: Is VideoView Broken?

2009-02-11 Thread Dave Sparks
You can't play a resource file using VideoView by passing a pathname. The file doesn't exist; it's just a binary blob inside the APK file. If you create a content provider, you could pass a URI to setVideo(). I'm not entirely sure that will work because the video file might be compressed inside

[android-developers] Re: object serialization ???

2009-02-11 Thread Marco Schmitz
thank you all :) you were right: the only solution is to remove my class from beeing an inner class. thanks a lot. greetings, darolla 2009/2/11 Mattaku Betsujin mattaku.betsu...@gmail.com: The problem is you're trying to serialize an inner class of SerialisiereAndroidActivity, which is not

[android-developers] Accelerometer frequency

2009-02-11 Thread ashu
Hey, I wanted to get the frequency of accelerometer output. How many readings can I get per second? And to what precision do I get? Thanks --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group.

[android-developers] Re: Automatic upgrade

2009-02-11 Thread Tom Gibara
I think it's pretty unlikely that the veecheck library could interfere. The market is backed by a remote database of published applications, and (I assume) a local database of previously installed applications. I guess that the market will identify the availability of application updates by

[android-developers] Re: Multimedia buffering

2009-02-11 Thread Harishkumar V
Alibaba, I am also facing the same error. in the MediaPlayerDemo_Video.java file given in the api demos, i gave the url stream path as rtsp:// bfug.rtsp-youtube.l.google.com/CkYLENy73wIaPQkcSEPa1Fc6nRMYDSANFEIJbXYtZ29vZ2xlSARSBWluZGV4Wg5DbGlja1RodW1ibmFpbGCqqamFtdjqsQkM/0/0/0/video.3gp then

[android-developers] Re: Reg playing youtube video in android

2009-02-11 Thread Harishkumar V
Dear All, playing youtube video from m.youtube.com from browser does not work in the emulator, it loads but does not play the video, but will this work i try the same in the device. Thanks and Regards, HarishKumar On Tue, Feb 10, 2009 at 5:52 PM, Harishkumar V harishpres...@gmail.comwrote:

[android-developers] Re: How to get current page content of WebView

2009-02-11 Thread Mike Hearn
You could use the CacheManager to do this. But I think there's not a more direct API currently - it'd be nice if WebView provided direct access to the DOM but that's quite a complex binding to do. --~--~-~--~~~---~--~~ You received this message because you are

[android-developers] Re: Views

2009-02-11 Thread Bobbie
Ok, so I'm having trouble with this. What I'm trying to do is design a web-based chat interface using 2 webviews (one for the message display and one to send messages). I have the code for everything ready and it works, I just need to figure out the whole layout thing. Here is the code I have:

[android-developers] Re: Multimedia buffering

2009-02-11 Thread AliBaba
Yes Harish, I am also wondering why it is not playing streaming video even though We are using the standard code of API Demo. I found below link of video streaming application, but from this link also source code has been removed. ttp://davanum.wordpress.com/2007/12/29/android-videomusic-player-

[android-developers] In Client-Server APK, during Client APK compilation it is giving errors:

2009-02-11 Thread Android
Hi... I have created two different APK as Client and Server. First i ran the Server apk it has one service and it was in running state. Then i started the Client apk which uses the IPC and AIDL to commucate with Server, but during compilation of Client apk it was giving the below errors, has any

[android-developers] Re: Automatic upgrade

2009-02-11 Thread Al Sutton
I can see the potential for a problem if developers publish Market and non-Market versions of their apps to comply with Market TCs (e.g. with different billing/licensing code). If the Market updater tries to update any app on the device that it knows exists in Market then it could result in

[android-developers] Equal View heights in LinearLayout

2009-02-11 Thread Chronos
Hello :) I am building a form where the city field has a locate-button besides it. Unfortunately, they do not have the same height by default (and I do not know the height in advance). I would like to have the ImageButton have the same height as the AutoCompleteTextView: LinearLayout

[android-developers] Re: Automatic upgrade

2009-02-11 Thread Tom Gibara
If you restrict yourself to building with eclipse, that's an outstanding problem. Essentially, if you want to maintain an independently installable 'version' of an application, it needs to be published with a different package name by adjusting the manifest. Unfortunately the package for R.java

[android-developers] Re: What's in raw data from PictureCallback of camera?

2009-02-11 Thread blindfold
Thank you David, I feel relieved to hear that. :-) Rather than trying to do all your image processing in Java, wouldn't you prefer to have built-in native signal processing kernels that are optimized for the platform? Yes, of course. One can parameterize and wrap under an API a number of

[android-developers] Alarm Clock Broadcasts?

2009-02-11 Thread bklik
Does the Alarm Clock broadcast any intents? I would like to be able to have my application automatically launch after a person's alarm clock goes off, and they press dismiss (rather than sleep). I assume that would require a receiver looking for a broadcast of some kind. Brenton

[android-developers] how to get the first frame of a video file ?

2009-02-11 Thread trust_chen chen
how to get the first frame of a video file ? Are there such APIs in OPENCORE? Thanks ! --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

[android-developers] Re: Building internal code into SDK

2009-02-11 Thread Mark Murphy
NFSpeedypur wrote: I am developing code for a new android project, on custom hardware, and I want to build a testing SDK. You will probably have better luck getting answers over on one of the lists aimed at firmware development: http://source.android.com/discuss -- Mark Murphy (a Commons

[android-developers] Re: Launching Activity from Overlay onTap

2009-02-11 Thread jgostylo
This works for me just fine.  I want to launch the browser on a URL that's associated with where they tapped: container.startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse(uri))); Works fine.  So the problem must be with finding your activity.  -T Thanks Tim! Your words helped me push

[android-developers] how to count time in android

2009-02-11 Thread jj
how to count time in android, e.g player start the game how t count time from start game to end game, I am what r classes to set time and count. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers

[android-developers] Understanding issue with RemoteService example in Android ApiDemos

2009-02-11 Thread Android
Hi , I have few understanding issues regarding the Remote service, could you plz help me out. I have gone through the RemoteService example in Android ApiDemos, but i am not getting which file to run for Client site and which one at Server site. These are the list of files used for

[android-developers] Re: I am getting NullPointer exception for my app when switching from potrait mode to landscape mode and vice versa

2009-02-11 Thread Mark Murphy
manoj wrote: Hi friends, I have written a small example which displays the photos from the server. Its working fine when the device is in one of the mode (landscape of potrait ). But if I switch to landscape to potrait or potrait to landscape while downloading the photos from the

[android-developers] Re: ListView set default checked state

2009-02-11 Thread bharath kumar
I am also facing the same problem Steve can u please tell us how u resolve the problem..as u said in ur previous post. Its urgent... Regards Bharat. On Fri, Nov 21, 2008 at 10:11 AM, songs coca.c...@gmail.com wrote: I ended up fixing this by moving my initialization loop from onCreate

[android-developers] Recording Audio with MediaRecorder on G1

2009-02-11 Thread michael
Hi, I've written a little program (see below) to record audio using MediaRecorder. While everything works fine in the emulator (SDK1r2), the program does not work on the real phone (HTC G1). On the phone, after pressing the start button, the audio file is created, but no content is written to it

[android-developers] Re: how to get the first frame of a video file ?

2009-02-11 Thread Freepine
Opencore has a frame and metadata utility, and there is also an API as android.media.MediaMetadataRetriever.captureFrame() in Java layer, but it might not be available in public SDK. On Wed, Feb 11, 2009 at 8:49 PM, trust_chen chen trustc...@gmail.comwrote: how to get the first frame of a video

[android-developers] Re: Should cursors used in autocomplete adapters be managed or not?

2009-02-11 Thread Spiros
Thanks for the quick response! That's what I also thought, but then I get these exceptions. I glanced at the Android sources, and here is what I *think* is going on if I use managed cursors: - Cursor returned by FilterQueryProvider#runQuery() is passed on to SimpleQueryAdapter#changeCursor() -

[android-developers] Get keycode of letter

2009-02-11 Thread Al
Hi, is there any method to let you get the keycode for a keyboard letter. E.g. public int getKeyCode(char letter) {...}? I had a look but can't find it and I can't find a way to make Autocomplete start filtering from predefined input in the box, so I'm emulating key inputs to make it do this.

[android-developers] Re: Error on AndroidManifest.xml..

2009-02-11 Thread Chronos
I have the same problem on my current project: Code that is perfectly valid reports the above error. I first thought it to be some kind of eclipse integration bug - but if you state, you have this problem on a remote machine (which you probably do not run eclipse on), I am pretty sure this is a

[android-developers] Keep Screen On Change Orientation

2009-02-11 Thread naxtek
Hi - After some help with this. I am making an Android app which is currently coming along nicely - I've hit upon a couple of stumbling blocks. 1) How do I stop the screen from going dim/off and the phone locking while the application is running? 2) Can I force the phone to enter landscape

[android-developers] Re: Using the Accelerometer

2009-02-11 Thread srajpal
SurfaceView that implements a SensorListener has an onSensorChanged here is the full code, I tested it out and works great http://www.anddev.org/2d_tutorial-t3120.html On Feb 10, 7:00 pm, naxtek gnax...@gmail.com wrote: Hi everyone, I'm a software engineering student and I've just bought

[android-developers] Best practises to have more than one version of an app in the market?

2009-02-11 Thread Mariano Kamp
Hi, any idea how to go about having a free version of an application in the market and a paid version also? Is it advisable to use the same package name? Different package names would mean code changes just for the sake of the name. Using the same package name, if at all allowed by the

[android-developers] Re: HELP! View layout issue

2009-02-11 Thread Ludwig
android:layout_weight is your friend here.This is a simple example with two views each occupying half the screen: ?xml version=1.0 encoding=utf-8? LinearLayout xmlns:android=http://schemas.android.com/apk/res/android; android:orientation=vertical android:layout_width=fill_parent

[android-developers] Re: Equal View heights in LinearLayout

2009-02-11 Thread Romain Guy
It's pretty easy. Either keep your LinearLayout and give one view a height of wrap_content and the other one a height of fill_parent. You can also switch to RelativeLayout and align the second view to the top *and* bottom of the first view. On Wed, Feb 11, 2009 at 4:04 AM, Chronos

[android-developers] Re: how to count time in android

2009-02-11 Thread Sundog
I used the standarad Java classes, works fine. On Feb 11, 6:29 am, jj jagtap...@gmail.com wrote: how to count time in android, e.g player start the game how t count time from start game to end game, I am what r classes to set time and count.

[android-developers] MediaRecorder Sound Quality?

2009-02-11 Thread g1bb
Hello, Is anyone else experiencing poor playback quality on files recorded with MediaRecorder? Is there a way to improve this? Thanks! --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To

[android-developers] Install Failed because of Insufficient storage? I got plenty, what gives?

2009-02-11 Thread indiegamer
I tried to install my 10 MB program (which I successfully installed yesterday) on my Dev Phone. I used the command: adb install (product name) It comes back with this error: Failure [INSTALL_FAILED_INSUFFICIENT_STORAGE] I removed the original program from the Settings, I have PLENTY of storage

[android-developers] GPS accuracy problems

2009-02-11 Thread Anna PS
Hi, I'm writing a mapping application. In simple terms, it sends some info about the user's current location to a server when the user clicks on a button. I need the location to be absolutely correct, and when I first started to implement LocationListener, I found that it often wasn't. So I've

[android-developers] Need help in understanding android 's code

2009-02-11 Thread Meryl Silverburgh
Hi, When I create a button, it has a grey round rectangle and an orange background when it has focus. Can you please tell me where is the code which draws that? I looked at the method of onDraw() of View and button, i dont' see that is drawing that. And in the TextView, I don't it is drawing

[android-developers] Re: Voice Recognition like in Voice Search? (STT)

2009-02-11 Thread Markus Junginger
Future APIs are one thing, using Intents to access existing functionality is another, imho. Voice search is already here, so the question for me is if there are Intents to start the voice recognition Activity and work on with the results. Thank Intents and loose coupling. :) For my purpose voice

[android-developers] Re: Keep Screen On Change Orientation

2009-02-11 Thread Dianne Hackborn
There is a flag in WindowManager.LayoutParams you can set to keep the screen on. (Please do NOT use the lower-level PowerManager class for this.) Use android:screenOrientation on the activity in your manifest to force a particular orientation mode. On Wed, Feb 11, 2009 at 8:18 AM, naxtek

[android-developers] Apple Why G1 Has No 3.5mm Headphone Input?

2009-02-11 Thread Michael Martin
We all know about Apple asking Google to not include multi-touch but according to an Apple employee they also asked not to include the 3.5mm input due to an interesting patent. http://www.googleandblog.com/why-no-g1-35mm-headphone-jack/3750/ --~--~-~--~~~---~--~~

[android-developers] Re: Apple Why G1 Has No 3.5mm Headphone Input?

2009-02-11 Thread Al Sutton
I don't think Apple had much to do with the 3.5mm jack decision because Nokias N95 has a 3.5mm jack and has been on sale in the US since 2007, and HTC are well known for not including a 3.5mm jack on their 'phones. If it's true then Android really is going to be an also-ran because it'll be

[android-developers] package isn’t signed correctl y error on customer install - Market problem??

2009-02-11 Thread Jeff
A customer wrote me that his upgrade of my app would not install and gave the following error: package isn’t signed correctly The install worked find for me but I was getting a lot of bad reviews because of this error and I removed the app. How is this possible; you can't upload an app to

[android-developers] Re: Building internal code into SDK

2009-02-11 Thread NFSpeedypur
Mark, Thanks for the quick reply. I will follow this question up with the Firmware side of the discussion boards and see if they have a solution for me. Daivd On Feb 11, 12:02 pm, Mark Murphy mmur...@commonsware.com wrote: NFSpeedypur wrote: Do you know how to build an application against

[android-developers] Re: Building internal code into SDK

2009-02-11 Thread NFSpeedypur
I posted this into the Porting discussion group so I will see if they have any feedback. On Feb 11, 7:16 am, Mark Murphy mmur...@commonsware.com wrote: NFSpeedypur wrote: I am developing code for a new android project, on custom hardware, and I want to build a testing SDK. You will

[android-developers] Re: Apple Why G1 Has No 3.5mm Headphone Input?

2009-02-11 Thread Ivan Soto
As a complete ignorant on patents and stuff like that I wonder: This means nobody ever can make multitouch phones or anything like that? I know the patent works for cellphones/mid but not for computers, since Windows 7 will have multitouch. On Wed, Feb 11, 2009 at 11:05 AM, Al Sutton

[android-developers] Re: Get keycode of letter

2009-02-11 Thread Dianne Hackborn
This is the class used to perform mappings with the key character map: http://code.google.com/android/reference/android/view/KeyCharacterMap.html On Wed, Feb 11, 2009 at 7:46 AM, Al alcapw...@googlemail.com wrote: Hi, is there any method to let you get the keycode for a keyboard letter. E.g.

[android-developers] Re: Apple Why G1 Has No 3.5mm Headphone Input?

2009-02-11 Thread Disconnect
So far google and android employees have publicly -requested- reasonable multitouch implementations. So .. yeah. Fail #1. And as to headphone input, I challenge you to point out a single device -anywhere- that uses headphones for input. Seriously. On Wed, Feb 11, 2009 at 12:24 PM, Michael

[android-developers] Re: GPS accuracy problems

2009-02-11 Thread Ludwig
It is notoriously difficult for GPS chips to get a good fix in built-up areas. 'Seeing the sky' is a bit loose a formulation: ideally a unit has to be able to see five or more satellites and for accuracy purposes they must not be all exactly overhead. Furthermore buildings bounce back the signals

[android-developers] Re: how to count time in android

2009-02-11 Thread Dianne Hackborn
SystemClock.uptimeMillis() is generally what you want to use. On Wed, Feb 11, 2009 at 5:29 AM, jj jagtap...@gmail.com wrote: how to count time in android, e.g player start the game how t count time from start game to end game, I am what r classes to set time and count. -- Dianne

[android-developers] Re: Building internal code into SDK

2009-02-11 Thread Mark Murphy
NFSpeedypur wrote: Do you know how to build an application against the whole android source code instead of just the SDK? Personally? No. I just stick to the SDK for now. Maybe later in 2009 I'll dive into firmware-level Java development. Sorry! -- Mark Murphy (a Commons Guy)

[android-developers] Re: Apple Why G1 Has No 3.5mm Headphone Input?

2009-02-11 Thread Al Sutton
You're missing a key point; It's a US patent. So anyone can make multi-touch 'phones and do whatever they want with them outside the US, it's only when you do something inside the US that you run the risk of getting sued. Al. Ivan Soto wrote: As a complete ignorant on patents and stuff like

[android-developers] Re: How to listen for the end of a call?

2009-02-11 Thread 3aro...@gmail.com
Take a look at the SDK documentation. /docs/reference/android/telephony/ PhoneStateListener.html#onCallStateChanged(int, java.lang.String) After the call finishes, the phone's call state goes to IDLE. --~--~-~--~~~---~--~~ You received this message because you are

[android-developers] Re: It is now MID-Q1, where are the Paid Apps?

2009-02-11 Thread Annkur
I heard they are rolling out paid apps this week ... http://blog.wired.com/gadgets/2009/02/paid-apps-comin.html But I still dont see an option to upload paid apps. Someone please advice On Feb 1, 10:45 pm, Java Developer supp...@cyntacks.com wrote: Dear Google, I believe I have been quite

[android-developers] how to get camera object for double camera

2009-02-11 Thread 霖刘
hi, all i wonder how to get camera object in android, if there are two or more cameras in a telephone? thanks a lot! br --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this

[android-developers] How to port android for at91sam9261EK

2009-02-11 Thread kevin
Dear all, I am a beginner of andriod.I have a demo board:at91sam9261EK.How to port android for at91sam9261EK? I have download the android kernel with git. Thank you very much for any suggestion. --~--~-~--~~~---~--~~ You received this message because you are

[android-developers] How to make the intent only launch one activity when more than one activity are matched?

2009-02-11 Thread Joanna
All, How to make the intent only launch one activity when more than one activity are matched? That means: the Implicit Intents have not specified a component; instead, they must include enough information for the system to determine which of the available components is best to run for that

[android-developers] Some bugs of WebView

2009-02-11 Thread yhfudev
I don't know where to put the bug report of APIs. I use WebView to display some pages in my dictionary software. I met some problems with WebView. 1) could not handle the color values When I use the HTML code: font color=#00FF00/font the WebView could not handle this type of tags. But font

[android-developers] Re: DDM dispatch reg wait timeout

2009-02-11 Thread susanner
i met the same problem when i am following I can't install ApiDemos apps in my IDE because of a signing error according to http://code.google.com/intl/zh-CN/android/kb/troubleshooting.html#apidemosreinstall. I changed the directory to sdk root, and tried to uninstall the preinstalled APIDemo,

[android-developers] MediaPlayer(Streaming LiveTV from LinuxBox)

2009-02-11 Thread Manabu
I am working on the application which plays liveTV stream sent from LinuxBox. I am using ffmpeg and ffserver to send out live feeds via RTSP, but it does not work and mediaPlayer gives me an error message Sorry, this video can not be played. I am passing the URL such as rtsp://IP: 5454/test.mp4.

[android-developers] System log buffer size

2009-02-11 Thread AGA
Hello group, I have the following problem: I'd like to see the system log of two days ago and I cannot. I see only 3 last hours. How can I configure the system log size, location, severity? Thanks in advance for your answer, AGA

[android-developers] Re: DDM dispatch reg wait timeout

2009-02-11 Thread susanner
i met the same problem when i am following I can't install ApiDemos apps in my IDE because of a signing error according to http://code.google.com/intl/zh-CN/android/kb/troubleshooting.html#apidemosreinstall. I changed the directory to sdk root, and tried to uninstall the preinstalled APIDemo,

[android-developers] Re: Accelerometer frequency

2009-02-11 Thread Jubei
Supposedly you pass a 3rd parameter to the sensormanager's registerLister function but It doesnt seem to make any difference. On Feb 11, 7:33 pm, ashu montoo...@gmail.com wrote: Hey, I wanted to get the frequency of accelerometer output.  How many readings can I get per second?  And to what

[android-developers] Re: Logcat View fails with Could not create the view: 1

2009-02-11 Thread Lucid
I am having a same problem in my logcat. I think I am having this problem after screwing the log filter up.. not sure though. Does anyone know how can it be recovered? I can still see logs using adb from command window, but it would be good if I can use logcat from eclipse. Thanks, Alex On

[android-developers] Customize desktop icon

2009-02-11 Thread Joe_Booboo
Hi, I have created several folders (Apps, Games, etc) on my G1 desktop. So my question are: 1) Is there a way of changing the icon of the folders from the dull plain grey one provided ? if so how ? 2) Where are those folders created on the system ? Thank you

[android-developers] System log file size

2009-02-11 Thread AGA
Dear team, I need a system log of the past three days. However I hove only the 3 past hours. How can I change/configure the system log file size/location/name/ severity ? Thanks in advance, AGA --~--~-~--~~~---~--~~ You received this

[android-developers] Re: viewable area

2009-02-11 Thread Matthew LeMieux
This is precisely why I want to know the dimensions of the screen. When I redraw anything I have on the screen, I want to be able to get an accurate size (exactly so that I can dynamically put things in the right place as it changes). The challenge is that the onDraw() method in my custom View

[android-developers] Re: viewable area

2009-02-11 Thread Sarnoth
I agree with Dianne about trying to use what is available to make your application as flexible as possible. But I also get the impression that people are asking these kinds of questions because they want to write games, not standard apps. There can be cases when for purposes of speed or over all

[android-developers] Re: The example code of SoftKeyboard is not work

2009-02-11 Thread Android Groups
Hi, Alger May I know the progress of SoftkeyBoard on your project? I am just starting the development on this task and 'd like to have some hint from you. Do you have any idea to implement a phonetic Input Method on Android? Thanks a lot in advance! BR/Mark On Jan 5, 11:02 pm, Alger, Lin

[android-developers] Re: Some bugs of WebView

2009-02-11 Thread Mark Murphy
yhfudev wrote: I don't know where to put the bug report of APIs. http://b.android.com 1) could not handle the color values When I use the HTML code: font color=#00FF00/font the WebView could not handle this type of tags. But font color=red/font can work well. This bug exist both in

[android-developers] Re: Apple Why G1 Has No 3.5mm Headphone Input?

2009-02-11 Thread Al Sutton
http://europe.nokia.com/A41261457 (input from device keys and the mic is in the little control dongle). Using the 3.5mm jack for audio input is pretty common on Nokias devices. Al. Disconnect wrote: So far google and android employees have publicly -requested- reasonable multitouch

[android-developers] Re: Customize desktop icon

2009-02-11 Thread Romain Guy
1. No. 2. In a private database. Cupcake will move that database so any code that tries to modify it now will break soon. On Wed, Feb 11, 2009 at 3:56 AM, Joe_Booboo cyril.bouhall...@gmail.com wrote: Hi, I have created several folders (Apps, Games, etc) on my G1 desktop. So my question

[android-developers] Webview increasing MAXFILESIZE

2009-02-11 Thread Amilask
Hi all, I am new to android platform. I need to increase the max file size (8096) in webview. In a thread I saw that if i need to increase that limit, I need to implement a content provider and use ContentResolver.openContentURI(). But in the API I can't even find the method openContentURI.

[android-developers] how to get camera object for double camera

2009-02-11 Thread Link
hi, all i wonder how to get camera object in android, if there are two or more cameras in a telephone. thanks a lot! best regards! --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post

[android-developers] an error saying DDM dispatch reg wait timeout Can't dispatch DDM chunk occurs when uninstall the preinstalled APIDemo in SDK

2009-02-11 Thread susanner
i met a problem when i am following I can't install ApiDemos apps in my IDE because of a signing error according to http://code.google.com/intl/zh-CN/android/kb/troubleshooting.html#apidemosreinstall. I changed the directory to sdk root as it said, and tried to uninstall the preinstalled

[android-developers] OProfile querries

2009-02-11 Thread click...@gmail.com
Hi, I required information on how to use Oprofile tool in Android. Does the Cupcake version has support for Oprofile. Regards Supriyo --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post

[android-developers] Re: Need help in understanding android 's code

2009-02-11 Thread Romain Guy
These are drawn with PNGs set as the background drawable of the views. On Wed, Feb 11, 2009 at 9:41 AM, Meryl Silverburgh silverburgh.me...@gmail.com wrote: Hi, When I create a button, it has a grey round rectangle and an orange background when it has focus. Can you please tell me where

[android-developers] Re: SD card not detected in Android

2009-02-11 Thread Rizvan S
Let me know any more issue to port , move android fs on sdcard and then boot , this is good options. Thanks Rizavan On Tue, Feb 10, 2009 at 8:42 PM, Rajesh N rajesh.andr...@gmail.com wrote: HI Rizavan, Yup, there is a issue with MMC driver in my kernel tree provided by freescale, I have

[android-developers] byte arrays and cross process content providers

2009-02-11 Thread Al Sutton
I've been fighting this one for a while and I'm seeing no joy, so hopefully someone can help. I have multiple apks; The first gets a data set from a server, The others perform actions on the data. At the moment the first APK get data from a server and exposes a ContentProvider that the other

[android-developers] Re: Best practises to have more than one version of an app in the market?

2009-02-11 Thread Al Sutton
You could always have one APK and use something like http://andappstore.com/AndroidPhoneApplications/licensing.jsp to control whether or not the paid-for features are available. Al. http://andappstore.com/ Mariano Kamp wrote: Hi, any idea how to go about having a free version of an

[android-developers] Re: Upgrading SDK from 1.0 r1 to r2

2009-02-11 Thread Tom
I upgraded from 1.0.r1 to 1.0.r2 with no problem. I've since upgraded to 1.1.r1, again with no problem. First I downloaded the updated SDK, and expanded the zip file. In both cases, in the top-level directory there is a file called documentation.html. Open that and there will be a link to

[android-developers] Java Compatibility problems with getFields method in Android java.lang.Class

2009-02-11 Thread sancane
I'm having some problems porting a Java application to work in Android platform. I detected an incompatibility problem between java sun and Adroid sdk in java.lang.Class. I oberved that: public Field[] getFields() Returns an array containing Field objects describing all fields which are

[android-developers] Re: PreferenceActivity with blur behind?

2009-02-11 Thread Colin
Im also interested in learning how to do this... any ideas? On Dec 21 2008, 7:25 pm, Ralf ralfo...@gmail.com wrote: I'm trying to use a PreferenceActivity with prefs inflated from XML and at the same time I'd like the window to blur whatever was behind (i.e. my previous activity where I

[android-developers] dev phone sensors erratic output

2009-02-11 Thread Jubei
Guys I am getting some really weird data from my sensors on my Dev Phone. I'm converting x,y and heading from the digital compass into short and every 1-2-3 pieces of data from the sensor a completely weird/false one comes up. I have my onSensorChanged() function UDP them across the network and I

[android-developers] Attn Google - How does licensing work in transitioning from a free app to a paid app?

2009-02-11 Thread Robert Green
Here's the scenario: The app is on the market for free. The publisher then decides to make it a pay app and changes the status. I'm assuming you can just do that, but my questions are: 1) Will the publishing console require us to upload a new version if it is to be a pay app, or can we just

[android-developers] Re: Apple Why G1 Has No 3.5mm Headphone Input?

2009-02-11 Thread Juan Hernandez
And as to headphone input, I challenge you to point out a single device -anywhere- that uses headphones for input. Seriously. LOL --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To

[android-developers] Re: How to make the intent only launch one activity when more than one activity are matched?

2009-02-11 Thread Ludwig
You can hard code package and class name in the Intent. From the docs:public Intent(Contextfile:///C:/Software/android/docs/reference/android/content/Context.html packageContext, Classfile:///C:/Software/android/docs/reference/java/lang/Class.html? cls)Create an intent for a specific component.

[android-developers] OpenSSL socket blocking in nativewrite() call

2009-02-11 Thread vbarat
Hello, We are using OpenSSL to connect to our XMPP server (ejabberd) using TLS encryption. We use the Smack library to do so. When sending relatively big XMPP packets (actually VCard avatars) it happens randomly but often that our writer thread is blocked in the native write call:

[android-developers] Flipping from one screen to another

2009-02-11 Thread karthik
i wanted to flip from one screen to another,Can anyone help me how to start with. --~--~-~--~~~---~--~~ 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] Configuring the Dev Phone

2009-02-11 Thread jai
Hello all , I got the Device from USA. Right now i am in India. Trying to setup the Dev phone.I setup the APN settings of my service provider. After giving my user id and password, the device is trying to reach Google server for validation it seems. But the device couldn't communicate with

  1   2   3   >