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

2010-05-24 Thread Andy Savage
In the interests of keeping things together here is the linkfor my thread I started in the developers thread just a few days ago related to this. I will file a bug request sometime soon unless anybody else can

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

2010-05-24 Thread debelyoo
Hi Andy, Good to see that the problem is not only specific to my environment :) And I hope we could find a solution, or at least one Android engineer will take a look at this post. I still stuck on it... I tried on Android 1.6 (G1) and Android 2.1 (HTC Desire). Both do not work. I'm currently lo

[android-developers] Re: Did anyone try Paypal in-apps Library?

2010-05-24 Thread Zsolt Vasvari
When I saw that PayPal decided to release the doc as a PDF document as opposed to Javadoc, it really turned me off. On May 25, 7:54 am, Chi Kit Leung wrote: > Hi all, > Did anyone try Paypal in-apps Library? Moreover, if any apps has this > feature, it will against the policy in Android Market Po

[android-developers] Re: Exchange

2010-05-24 Thread Kumar Bibek
The mail app that comes with the emulator might not be public or open source. I haven't had a look at the source, but yes, if it is open source then you wil definitey find it. Thanks and Regards, Kumar Bibek On May 25, 2:25 am, Baloodevil wrote: > I know Android 2.2 has Microsoft Exchange capabi

Re: [android-developers] Re: Application Crash Reporting made easy - needs testers

2010-05-24 Thread Kevin Gaudin
Hi, Just to let you know that I just published acra-2.0.3 with the addition of a handleSilentException(Throwable) method to force a silent reporting even if the application is configured in Toast or Notification reporting mode. Kevin On Fri, May 21, 2010 at 3:48 PM, Justin Edwards wrote: > Tha

Re: [android-developers] An SDK without Java

2010-05-24 Thread Michael MacDonald
On 05/20/10 11:44, Matt Joyce wrote: > Are there any plans to produce an SDK that's Java free? > > I'd really like to develop for my phone, but the current SDK prevents > me from doing so in good conscience. I am curious if I should just > write my apps for another platform or if I should hold out

[android-developers] Re: Export Signed Application Package... not working

2010-05-24 Thread yves...@gmail.com
I uninstalled Eclipse and reinstalled the same one, added my projects back and it started working again. Strange. the version is 3.4.2 On May 24, 1:04 pm, Xavier Ducrohet wrote: > Which version of Eclipse? > > I'm not seeing it at all. > > > > On Sun, May 23, 2010 at 7:17 PM, yves...@gmail.com w

[android-developers] Janky Custom Cursor Adapter

2010-05-24 Thread GodsMoon
I have a Custom Cursor Adapter. It shows a list of installed applications with an icon, name and checkbox on each line item. I cache the list of applications in a database for faster retrieve and to store the state of the checkbox. However, I can't store the application icon in the db because sqlit

[android-developers] VP8 Video Codec

2010-05-24 Thread Andy Savage
Hi there, I am wondering if there is any timeframe for VP8 to be included into Android? Is it possible for me to build and use it myself using NDK to decode/encode video? Kind regards, Andy Savage -- "The greatest challenge to any thinker is stating the problem in a way that will allow a solut

[android-developers] Re: Unwanted state changes of CheckBoxes in ListView

2010-05-24 Thread Paul
This has to do with the fact that ListView recycles views. View Romain Guy's Google I/O talk about ListView when it comes out. It is really good and explains exactly why you're seeing this happen. On Apr 30, 10:20 am, David wrote: > Hey, > > I am facing a very mysterious Problem. I am using a L

[android-developers] Tvout with Android Phones

2010-05-24 Thread Dilip Dilip
Hi All, Is there any Android phone with Tvout? can someone give me the list. I know HTC incredible supports Tvout on USB port for which we need to buy USB to composite adaptor. Is there any Android phones which supports tvout on 3.5mm Jack. Thanks and Regards, Dileep. -- You received this me

[android-developers] Set Call Forward

2010-05-24 Thread Gameboy
Present I want to set call forward in my application rather in calling settings of phone, but seems I can not find public api or intent to use. Anyone knows that? BTW, I search source code of android, there are similar code used by android, however it needs to invoke internal class Phone: package

[android-developers] Re: How to detect Bluetooth headset key press

2010-05-24 Thread Jeffrey Palm
You can override the onKeyDown method in any activity and check for the KeyEvent.KEYCODE_MEDIA_* key codes. e.g. boolean onKeyDown(int keyCode, KeyEvent event) { AudibleReadyPlayer p; switch (keyCode) { case KeyEvent.KEYCODE_MEDIA_FAST_FORWA

Re: [android-developers] Best Framework

2010-05-24 Thread Chi Kit Leung
There is an exclipse plugin for sdk. So far, I don't think there is any frameworks yet,(I don't think you need one.) On Tue, May 25, 2010 at 12:08 PM, Frank Weiss wrote: > I have no idea what you mean by "best framework for Android". However, > chances are you'll find the answer at developer.and

Re: [android-developers] Best Framework

2010-05-24 Thread Frank Weiss
I have no idea what you mean by "best framework for Android". However, chances are you'll find the answer at developer.android.com On Thu, May 20, 2010 at 9:58 AM, K1 wrote: > hi > I'm new in android ,some body help me on,what is the best framework > for android? > is there any eclipse Plugin? >

Re: [android-developers] How to get the list of all apps installed on the device?

2010-05-24 Thread chris harper
Here is what I use to list all the applications installed. I am trying to find a more efficient way. PackageManager packageManager = getPackageManager(); List packs = packageManager.getInstalledPackages(0); size = packs.size(); for (int i = 0; i < size; i++) {

Re: [android-developers] Re: RTP stream video decoding

2010-05-24 Thread Andy Savage
Thanks for your suggestion. I had considered this. The problem with this approach is that it seems that the MediaPlayer requires anything passed in as a FileDescriptor to be seekable (this is the same problem that prevents me from substituting FileDescriptor for LocalSocket). In this case this mea

[android-developers] Any guidelines for handling the Headset and Bluetooth AVRC buttons in Froyo?

2010-05-24 Thread Stefan
I am trying to figure out what is the correct (new) approach for handling of Intent.ACTION_MEDIA_BUTTON in Froyo. In pre 2.2 days we had to register a BroadcastReceiver (either permanently or at run- time) and the Media Button events would arrive (as long as no other application intercepts them and

[android-developers] Re: Google's global quick search widget missing in Android 2.2

2010-05-24 Thread fungi8210
Same problem here. Where is the global search box in Android 2.2? On 5月21日, 下午9時17分, And-Rider wrote: > I was unable to find the google's search widget on the home screen > neither on the the list of available widgets.If i click menu from the > home screen and if i press search nothing happens. >

[android-developers] How to run the VoiceSearch.apk

2010-05-24 Thread waterblood
Hi All, I just download a VoiceSearch.apk, and put it to my eclair version rootfs of android. It has below exception. Does anything still need to be configed? I/ActivityManager( 2083): Start proc com.google.android.voicesearch for activity com.google.android.voicesearch/.RecognitionActivity: pid

[android-developers] Re: Combining "OR" calls in managedQuery

2010-05-24 Thread brucko
> and so on, in various permutations. > mActivity.managedQuery("content_uri", [id, title, tags], "title LIKE ? > OR tags LIKE ?", [%A% OR %C%, %A% OR %C%], "title ASC") Not familiar with the syntax you are using, but this is how I would try it mActivity.managedQuery("content_uri", //table

Re: [android-developers] APIs to access email accounts or SMS/MMS messages

2010-05-24 Thread sojan P.R.
What you want to do..reading emails and doing something automatically? I think it is not possible from application level. You can listen to an sms port for that..just look some push registery samples. If you only want to show the SMS in your application ...i think it is better to open the installe

Re: [android-developers] APIs to access email accounts or SMS/MMS messages

2010-05-24 Thread Mark Murphy
San wrote: > Does anyone know if there is an API available to access all SMS > messages as well as emails in the inbox? There is nothing in the Android SDK for either of these. While there are applications frequently available on Android devices for these functions (SMS, Email, Gmail), device man

[android-developers] APIs to access email accounts or SMS/MMS messages

2010-05-24 Thread San
Hi, Does anyone know if there is an API available to access all SMS messages as well as emails in the inbox? 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@googlegroups.com

[android-developers] Speech Recognition

2010-05-24 Thread minhaz
Hi In my emulator isRecognitionAvailable method from SpeechRecognizer class returns false and also when i run VoiceRecognition.java sample code on API level 8 platform 2.2 i got "Recognizer not present" message. Any idea hints whats going on? If problem is Speech recognition is not available in m

Re: [android-developers] Looking for interns as Android Developers

2010-05-24 Thread Agus
What are the requirements for the position? On Tue, May 25, 2010 at 12:46 AM, Phil Montgomery wrote: > Hi all > > I know I've left my run a bit late for this summer, but if there are > any students looking for intern roles over the summer who want to get > involved in an exciting Android research

Re: [android-developers] Permanent Positions :: Android Developer :: Herndon, VA

2010-05-24 Thread Agus
Do you provide N-Visa for non-American citizen? On Fri, May 21, 2010 at 12:44 PM, Anuj Garg wrote: > Hello, > > Greetings!! > Hope you are doing very well. > One of our clients based out of Herndon, VA has 3 positions for Android > Developers. Below mentioned is the Job Description, Please go th

[android-developers] Did anyone try Paypal in-apps Library?

2010-05-24 Thread Chi Kit Leung
Hi all, Did anyone try Paypal in-apps Library? Moreover, if any apps has this feature, it will against the policy in Android Market Policy, right? In Android Market, the free apps must be right without locking feature, right? -- Regards, Michael Leung http://www.itblogs.info http://www.michaelleun

[android-developers] Re: Adding a ListView to a custom ViewGroup

2010-05-24 Thread John Gaby
Thanks for the help. I followed your advise, and was able to determine my problem. Many thanks. On May 24, 3:47 pm, Mark Murphy wrote: > John Gaby wrote: > > I am trying to create a ListView and add it to a custom ViewGroup. > > Here is my code: > > > public class HelloAndroid extends Activity

[android-developers] Forcing an ImageView to the size of a TableLayout cell

2010-05-24 Thread fba
Hi all, Does anyone know of a way to force an ImageView to take on the dimensions of the TableLayout cell it is being put in to? Specifically, I have a layout that I put together that looks exactly how I want it to look when the app is started. However, when I update the ImageView in the table w

Re: [android-developers] Using the Binder in One of My c++ Application

2010-05-24 Thread David Turner
This is not exposed by the NDK, so there is no official way to do that from applications. What does "sit on the same layer as Bionic Libc layer" means anyway ? On Mon, May 24, 2010 at 1:40 AM, Anoop Pant wrote: > Hi, > I want to understand if i want to user the Binder in my C > application(

Re: [android-developers] An SDK without Java

2010-05-24 Thread David Turner
On Thu, May 20, 2010 at 8:44 AM, Matt Joyce wrote: > Are there any plans to produce an SDK that's Java free? > > I guarantee you that there are no plans to do that. Why fix something that is not broken ? > I'd really like to develop for my phone, but the current SDK prevents > me from doing so

Re: [android-developers] Adding a ListView to a custom ViewGroup

2010-05-24 Thread Mark Murphy
John Gaby wrote: > I am trying to create a ListView and add it to a custom ViewGroup. > Here is my code: > > public class HelloAndroid extends Activity > { > private static final String[] PHOTOS_NAMES = new String[] { > "Lyon", > "Livermore", > "Tahoe Pier", > "

Re: [android-developers] Re: Application Crash Reporting made easy - needs testers

2010-05-24 Thread Kevin Gaudin
Hello Garen, You should be able to make your existing Application class extend org.acra.CrashReportingApplication in replacement of extending Application. Just make sure to call super.onCreate() at the beginning of your own existing onCreate() override, and add other needed methods like getFormId(

[android-developers] Adding a ListView to a custom ViewGroup

2010-05-24 Thread John Gaby
I am trying to create a ListView and add it to a custom ViewGroup. Here is my code: public class HelloAndroid extends Activity { private static final String[] PHOTOS_NAMES = new String[] { "Lyon", "Livermore", "Tahoe Pier", "Lake Tahoe", "Grand Canyon",

Re: [android-developers] No resource found error

2010-05-24 Thread Xavier Ducrohet
What Mark said. We've noticed it this morning in a tutorial and we just fixed it. On Mon, May 24, 2010 at 2:59 PM, Mark Murphy wrote: > Ventana wrote: >> Hello, >> I got "no resource found that matches the given name(at 'id' with >> value @id+/textview')" >> >> my main.xml file looks like this:

RE: [android-developers] Problem flushing text to screen.

2010-05-24 Thread Ted Neward
Welcome to the wonderful world of multithreading. You are doing your login work on the main UI thread, which is thus prevented from being able to show the updates to the screen. You have to find a way to do the login() work on a separate thread. There are several articles about multithreading in

Re: [android-developers] No resource found error

2010-05-24 Thread Mark Murphy
Ventana wrote: > Hello, > I got "no resource found that matches the given name(at 'id' with > value @id+/textview')" > > my main.xml file looks like this: > > > http://schemas.android.com/apk/res/android"; > android:id="@id+/textview" > android:layout_width="fill_parent" > android:layout_h

[android-developers] No resource found error

2010-05-24 Thread Ventana
Hello, I got "no resource found that matches the given name(at 'id' with value @id+/textview')" my main.xml file looks like this: http://schemas.android.com/apk/res/android"; android:id="@id+/textview" android:layout_width="fill_parent" android:layout_height="fill_parent" android:text="@

[android-developers] Re: RTP stream video decoding

2010-05-24 Thread savanevery
How about writing the RTP stream to a file and playing it from there? On May 24, 2:44 am, Andy Savage wrote: > Hi everyone, > > I need a little bit of help from some experts out there. > > Currently I am developing an application that will stream video using RTP > and SIP. I have this mostly wor

[android-developers] How to install an app programaticaly on Android

2010-05-24 Thread Nando Android
I was hoping to write a service on Android that would list all applications installed as per previous post. Then, It would decide to update automatically some apps and install others. Is there any class on the SDK that has this kind of functionality? That is, can I call some API or code to instal

[android-developers] Exchange

2010-05-24 Thread Baloodevil
I know Android 2.2 has Microsoft Exchange capabilities. I am looking for something different. I would like to create an application that can access a Microsoft Exchange mailbox or calendar. Since 2.2 has added Exchange functionality, I would think I can view the open source somewhere to see how

[android-developers] Re: An SDK without Java

2010-05-24 Thread DonFrench
There is something non-functional about the current SDK? On May 20, 8:44 am, Matt Joyce wrote: > Are there any plans to produce an SDK that's Java free? > > I'd really like to develop for my phone, but the current SDK prevents > me from doing so in good conscience.  I am curious if I should just

[android-developers] Re: Bluetooth question regarding observing a pairing

2010-05-24 Thread DonFrench
Have you looked at the BluetoothChat example? It does what you want. On May 23, 10:03 am, Jake Maui wrote: > Is there a way to observe a bluetooth pairing and then be aware of when the > connection no longer exists?  Basically I want to observe when my phone > connects to another device and what

Re: [android-developers] "porting" a private winmob app? (it is private, only certain people can see it)

2010-05-24 Thread TreKing
On Mon, May 24, 2010 at 3:32 PM, Kenson Martz wrote: > I would like to learn how to make this for myself, my family, and others > who are allowed to view/use the app. > Without more details, this is the best you get: http://developer.android.com/intl/fr/sdk/index.html#quickstart ---

[android-developers] "porting" a private winmob app? (it is private, only certain people can see it)

2010-05-24 Thread Kenson Martz
Hello, I was referred here from android-porting. I have a Windows Mobile app. I would like to learn how to make this for myself, my family, and others who are allowed to view/use the app. I don't have access to the code, I will have to contact the people who made it. I will check this later on my

[android-developers] Re: I learn best by being shown how and why.. visually.

2010-05-24 Thread Indicator Veritatis
You are right. There are many tutorials out there, but few that take advantage of sound pedagogical principles. Motorola does a little better, but their tutorials assume you are developing for one of their phones using their developer kit instead of Google's. That said, I think it is unfortunate t

Re: [android-developers] How to get the list of all apps installed on the device?

2010-05-24 Thread Mark Murphy
Scheidecker wrote: > I would like to know if I could access the internal device DB to fetch > a list of all installed applications, their version, etc? See the PackageManager class. > How can I read the settings on the device as well? See the Settings class. -- Mark Murphy (a Commons Guy) http

[android-developers] How to get the list of all apps installed on the device?

2010-05-24 Thread Scheidecker
Hi all, I would like to know if I could access the internal device DB to fetch a list of all installed applications, their version, etc? How can I read the settings on the device as well? Like email username, server, etc? Thanks, Scheidecker. -- You received this message because you are subsc

[android-developers] Re: Even with Min SDK version, building app against 2.2 breaks 1.5?

2010-05-24 Thread Michael A.
I have people complaining about apk size often enough as it already. Having duplicate resources for mdpi displays is not really a viable solution for graphically heavy apps like games. The solution I followed was to use drawable and drawable-hdpi-v4. Regards, Michael A. On May 24, 9:52 pm, Mark

[android-developers] Re: Even with Min SDK version, building app against 2.2 breaks 1.5?

2010-05-24 Thread Greg Giacovelli
Thanks Xav, Much appreciated, I thought I was crazy :) I have been following the conventions you speak of and that is why I brought it here when I exhausted all the known things that I was doing. I really look forward to the information in the coming weeks. If there is anything more from me that

Re: [android-developers] Extend layout

2010-05-24 Thread Xavier Ducrohet
Use a Library Project: http://developer.android.com/guide/developing/eclipse-adt.html#libraryProject Xav On Thu, May 20, 2010 at 2:02 PM, carrerasrodrigo wrote: > hi! i whant to define layout with the composition of some widgets. > Then i would like reuse this layout in several projects. > Is th

Re: [android-developers] Export Signed Application Package... not working

2010-05-24 Thread Xavier Ducrohet
Which version of Eclipse? I'm not seeing it at all. On Sun, May 23, 2010 at 7:17 PM, yves...@gmail.com wrote: > I am using Windows XP and Eclipse to develop. I updated everything > today, the new sdk, the new adt etc. After that, when I tried to > "export signed application package", nothing hap

Re: [android-developers] Trying to install the latest android SDK

2010-05-24 Thread Xavier Ducrohet
Are you on linux? what JDK do you have? Xav On Fri, May 21, 2010 at 5:49 AM, Tad wrote: > I'm getting the following error: > > Failed to fetch URL > https://dl-ssl.google.com/android/repository/repository.xml, > reason: sun.security.validator.ValidatorException: PKIX path building > failed: sun

Re: [android-developers] Trouble in ArchLinux - No Targets... Period

2010-05-24 Thread Xavier Ducrohet
Well you're missing targets. I see you managed to download the docs and samples, so it's a bit strange that you don't see add-ons. Did you by any chance, added the default repository url as a new site without https? If you did, you shouldn't have. "Add site..." is to add add-on sites only, and th

Re: [android-developers] Re: Even with Min SDK version, building app against 2.2 breaks 1.5?

2010-05-24 Thread Mark Murphy
Xavier Ducrohet wrote: > The short of it: 1.5 does not know about -mdpi -hpdi, so it'll take > the first one it finds which could be the wrong one (which means it'll > get scaled). FWIW, the solution given in that presentation was to have both -mdpi and -mdpi-v3, with duplicate resources. -mdpi-v3

Re: [android-developers] Re: Even with Min SDK version, building app against 2.2 breaks 1.5?

2010-05-24 Thread Xavier Ducrohet
So I'm a bit unsure how this could have worked before, at least properly. That there are some issue with having resource for 1.5 and for 1.6+. There was a talk at IO that talked about this: http://code.google.com/events/io/2010/sessions/casting-wide-net-android-devices.html I encourage you to watc

[android-developers] Re: Even with Min SDK version, building app against 2.2 breaks 1.5?

2010-05-24 Thread Michael A.
Hi Xav, I had / have just had the same problem. The solution that worked for me is precisely the process you describe. Regards, Michael A. On May 24, 9:13 pm, Xavier Ducrohet wrote: > Hi sebastian, > > Let see if I get this straight, you had the following resources: > > drawable-hdpi/ >    f

Re: [android-developers] WebView / HTTPClient shared cookies ?

2010-05-24 Thread Frank Weiss
It's doubtful. Read up on HttpClient. AFAIK, you have to manually manage cookies and they do not persist across sessions. On Thu, May 20, 2010 at 3:55 PM, Arpit Mathur wrote: > An Android app I am building requires web authentication for users to make > data calls. In Adobe AIR and later the iPho

Re: [android-developers] Need Web service sample code for me(Beginner)

2010-05-24 Thread Frank Weiss
If you haven't already a) finished any Android tutorials and b) written a web service for another platform (mobile or desktop), then you're probably taking too big of a a first step. On Thu, May 20, 2010 at 8:33 AM, veeramanikanda...@gmail.com < veeramanikanda...@gmail.com> wrote: > Dear Android

Re: [android-developers] Re: Even with Min SDK version, building app against 2.2 breaks 1.5?

2010-05-24 Thread Xavier Ducrohet
Hi sebastian, Let see if I get this straight, you had the following resources: drawable-hdpi/ foo.png drawable-mdpi/ foo.png you used to build against API 7, but now you are building against API 8, and it started failing to work on 1.5? You moved drawable-mdpi/foo.png into drawable/foo.pn

[android-developers] Re: i am having problems with my view

2010-05-24 Thread Brion Emde
Maybe what you're talking about is something more like this, if you replace my ScrollView with your ListView: http://schemas.android.com/apk/res/ android" android:layout_width="fill_parent" android:layout_height="wrap_content" >

[android-developers] Re: Interdependent Android Projects

2010-05-24 Thread joebowbeer
There is now a Android Library project type in the Eclipse plugin: http://developer.android.com/guide/developing/eclipse-adt.html#libraryProject Library projects are implemented using linked source directories. The apks themselves are not linked: http://groups.google.com/group/android-developer

[android-developers] bmgr not working?

2010-05-24 Thread James Chou
I'm trying to test out the new BackupManager class so I've been trying to play around with the sample. For some reason I cannot get the bmgr tool to work with the BackupRestoreActivity sample application included in Android 2.2. What I tried was I started BackupRestoreActivity, changed the inputs a

[android-developers] Re: Problem while passing aray list to next activity in widget application

2010-05-24 Thread Tommy
Good to hear. Thought you were trying to save state across multiple activities. I was going to give you this link that I wanted to post last time but couldn't find it.http://stackoverflow.com/questions/ 708012/android-how-to-declare-global-variables On May 21, 3:15 am, sunita wrote: > Thank u

[android-developers] Re: Combatting fragmentation

2010-05-24 Thread Moto
In my case I have one class called SupportedFeatures() which allows me to easily choose properly the supported features for a phone. Here is where I do all the hard work to figure out what android version it's running what hardware is available... Just one centralized zone for the little fragment

[android-developers] Re: Combatting fragmentation

2010-05-24 Thread Moto
In my case I have one class called SupportedFeatures() which allows me to easily choose properly the supported features for a phone. Here is where I do all the hard work to figure out what android version it's running what hardware is available... Just one centralized zone for the little fragment

Re: [android-developers] information

2010-05-24 Thread TreKing
On Sun, May 23, 2010 at 11:36 PM, mishra wrote: > I have make a project all thing happen good but voice transfer is not > happen what will be the problem. > You really need to explain what "voice transfer is not happen" means. ---

[android-developers] Re: Android 2.2 cutting off MediaPlayer?

2010-05-24 Thread Moto
Don't have any help on this but I can tell you that the Media Framework has changed completely in Android 2.2... and I already found couple issues in regards to the new media framework :( -Moto On May 21, 6:04 pm, rofl newb creations wrote: > Hello, > > Suddenly, when playing audio using MediaPl

[android-developers] Re: Intents to play video on YouTube App

2010-05-24 Thread Moto
One pointer I can give you is plug your phone to the debugger so that you can see log events, and find an app or something that triggers the YouTube app. See the intents used and that way you could theoretically figure out what intents to use :P -Moto On May 22, 1:35 pm, Yenchi wrote: > Hi

[android-developers] Re: Using findViewById before setContentView

2010-05-24 Thread Luis Santos
Inflate the view from your xml, you can do something like this: LayoutInflater inflator = (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE); myView = inflator.inflate(R.layout.my_view, null); Then you can use myView.findViewById(), and add whatever you want to your View. F

[android-developers] Re: Reading pictures written by camera to SDCARD

2010-05-24 Thread Kumar Bibek
How do you want to access the images? All the images at once? Well, I don't think it's a standard location for the camera images. I think you can use the Content Provider to achieve this, but again I am not very sure. Thanks and Regards, Kumar Bibek On May 24, 10:04 pm, folecr wrote: > I want t

[android-developers] Re: API to enable / disable mobile data

2010-05-24 Thread mot12
There's no API. You do it with a trick: Change the names of the APN access points on the fly. APNDroid is a free widget that works that way. Look for it on the market. And you can find the source code in Google Projects. Martin www.mobitobi.com Gentle Alarm Sleep Now -- You received this message

Re: [android-developers] How to play Flash on Android 2.2 Emulator?

2010-05-24 Thread Mark Murphy
Q-Kevin wrote: > A new feature of Android 2.2 is that supports Flash. That is not true. Flash supports Android 2.2. There's a difference. Android does not ship with Flash. > How to enable Android 2.2 emulator plays Flash? You can't without violating a license agreement. Right now, the Flash be

[android-developers] Re: i am having problems with my view

2010-05-24 Thread Kumar Bibek
In the gravity, try center_horizontal instead of center. Thanks and Regards, Kumar Bibek On May 24, 4:38 am, Eric Murtaugh wrote: > > http://schemas.android.com/apk/res/ > android" >     android:orientation="vertical" >     android:layout_width="fill_parent" >     android:layout_height="fill_pa

Re: [android-developers] Flash and Webview

2010-05-24 Thread Mark Murphy
savage7 wrote: > I just tried to open a flash site in a WebView, the site gives me an > error that flash isn't installed. > > Is the flash player not accessible from the WebView widget? > > Has anyone succeed in that? > > I'm on Froyo and have the flash player installed, on the default > browser

[android-developers] Re: Help! How to custom the style of AlertDialog and menu?

2010-05-24 Thread Kumar Bibek
Extend the AlertDialog class. Set a new layout and customize as per your needs. Thanks and Regards, Kumar Bibek On May 23, 8:18 pm, qibing gong wrote: > Help! How to custom the style of AlertDialog with setItems,  i just > want to change the white back ground. I use theme , but it doen't > work.

[android-developers] Re: Error in 'Hello, World'-XML example...

2010-05-24 Thread Kumar Bibek
You can put this as a bug in the Bug Tracker. Mention it as a documentation change. But I don't see a correction in the link required, that you have mentioned. Thanks and Regards, Kumar Bibek On May 23, 6:44 pm, Qaim Ali Jaffarson wrote: > Link:http://developer.android.com/resources/tutorials/h

[android-developers] Need Compatibility Test Suite code

2010-05-24 Thread pkyerang
Hi All, I tried a lot to get CTS code from site "http:// android.git.kernel.org/?p=platform/cts.git;a=summary". From that site i have followed the instructions which are those mentioned in that site, below you can see. 1.mkdir mydroid 2.cd mydroid 3.repo init -u git://android.git.kernel.org/plat

[android-developers] Re: Define layout at runtime

2010-05-24 Thread Alexander Kipar
RelativeLayout.LayoutParams params= new RelativeLayout.LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.WRAP_CONTENT); params.addRule(RelativeLayout.LEFT_OF, ID_OF_VIEW); On May 22, 2:35 am, carrerasrodrigo wrote: > hi!! > is there a way to define the layout_toLeftOf at runtime?? i can't find

[android-developers] Activity idle timeout for HistoryRecord

2010-05-24 Thread Shubha
Hi Folks, I get Activity idle timeout for HistoryRecord and my application crashes because of that. It is reproducible rarely. so i dont have the specific steps to reproduce. this is what i see in the Log 05-14 15:09:08.410: WARN/ActivityManager(192): Launch timeout has expired, giving up wake

[android-developers] Looking for interns as Android Developers

2010-05-24 Thread Phil Montgomery
Hi all I know I've left my run a bit late for this summer, but if there are any students looking for intern roles over the summer who want to get involved in an exciting Android research project, then I have two positions available in the San Francisco bay area (Pleasanton on the East Bay to be pr

[android-developers] PhoneStateListener

2010-05-24 Thread kgselvam
Hi all, How can detect outgoing call pickup state (Answer Sate) Thanks in advance kg -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group,

[android-developers] Reading pictures written by camera to SDCARD

2010-05-24 Thread folecr
I want to access camera pictures and camera pictures only. I could not find a specification of how the default camera application stores pictures... 1) Is /sdcard/DCIM a standard of any kind? On the Android devices I've used, it looks like the default camera app always writes to this location. Ar

[android-developers] Re: Even with Min SDK version, building app against 2.2 breaks 1.5?

2010-05-24 Thread Boolba Labs
Hi Greg, Steve, I have the same problem either. Before finding this thread I thought that it's somehow connected to the beta release of Eclipse Helios, which I'm currently using. But it seems that the problem is in something else. On May 24, 5:34 pm, Greg Giacovelli wrote: > Steve, Nope sadly

[android-developers] Re: Read local XML file

2010-05-24 Thread Mathias Lin
You could use sax parser to read the xml: http://developer.android.com/reference/org/xml/sax/XMLReader.html A tutorial is here: http://www.anddev.org/parsing_xml_from_the_net_-_using_the_saxparser-t353.html What's the best way to store your data depends on what you want to do with it afterwards.

[android-developers] Re: Tabwidget graphical issues. Showing a thick white line??

2010-05-24 Thread svebee
Did you solve it? I have the same problem... On Apr 21, 8:24 pm, Stephen wrote: > Having just moved to an Android 2.1u1 HTC Desire from an Android 1.5 > HTC Hero, I've noticed that there a weird behaviour from TabWidget in > that it shows a thick white line under the tabs instead of what I > thin

[android-developers] Flash and Webview

2010-05-24 Thread savage7
I just tried to open a flash site in a WebView, the site gives me an error that flash isn't installed. Is the flash player not accessible from the WebView widget? Has anyone succeed in that? I'm on Froyo and have the flash player installed, on the default browser the site works. -- You receive

[android-developers] Advanced UI tutorials

2010-05-24 Thread Andreas Agvard
Me and a collegue at Sony Ericsson has recently started a series of tutorials focusing on Advanced UI. One series on how to implement Zoom into your application, and another on how to make your own 3d list as an AdapterView. The first part of each tutorial series is out now, and the following part

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

2010-05-24 Thread Andy Savage
Hi there, Any answer to this question? It's bugging me too. Jean, can you tell us what version you are testing this on? Have you tried 2.1? Cheers, Andy On May 6, 3:32 pm, debelyoo wrote: > Hi dillirao, > > I don't receive onPrepared callback. > > After requesting the live stream through the SD

[android-developers] open an existing android project eclipse

2010-05-24 Thread GentLeBoY
I downloaded android application source code . But dont know how to open an that android project in eclipse? import doesnt work becoz it says it couldnt find .project file. any solutions? -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To p

[android-developers] Using the Binder in One of My c++ Application

2010-05-24 Thread Anoop Pant
Hi, I want to understand if i want to user the Binder in my C application(daemon). What is the API layer to use Binder in C application(daemon).Both the daemon sits on the same layer as Bionic Libc layer Can somebody help me by giving a sample example in which two process(daemon) written in C

[android-developers] Re: Even with Min SDK version, building app against 2.2 breaks 1.5?

2010-05-24 Thread Sebastian
Have had the same problem after updating my Android SDK to 2.2, but I haven't changed project settings. The project min SDK version is 3 and target version 4. After coping all drawables from drawable-mdpi to drawable folder, clean and rebuild project it worked. Seems like a bug in Android SDK...

[android-developers] EGL initialized failed

2010-05-24 Thread JoJo
Hello Everybody, I used a SurfaceView and EGL to render my 3D contents. When I press BACK and return my activity, the activity's 3D objects become to white. The reason is when the original activity(3D activity) resume, EGL would initialize again. So EGL would initialize and destroy everytime when

Re: [android-developers] SignalStrength

2010-05-24 Thread Toni Menzel
Did you have a look at the doc at http://developer.android.com/reference/android/telephony/PhoneStateListener.html yet ? Not sure, but does not look too hard.. (though haven't used it myself yet) Toni On Mon, May 24, 2010 at 11:37 AM, Miguel Ruiz wrote: > Hi, > I´m trying to delevop an applicati

[android-developers] Any better way to implement the backwards notification from native component to framework

2010-05-24 Thread Hao Feng
Hi, I plan to make some tasks like DEX file optimization be processed by installd on the background asynchronously, thus installd needs to notify the Installer of the result at some uncertain point when the request has been processed. Currently, a socket connection will be established each time wh

[android-developers] How to play Flash on Android 2.2 Emulator?

2010-05-24 Thread Q-Kevin
Hi, I have downloaded Android 2.2 SDK and launched the Emulator. A new feature of Android 2.2 is that supports Flash. Unfortunately, that I can NOT play Flash content when I visit some webpages that include Flash content. It only displays an ICON. How to enable Android 2.2 emulator plays Flash? D

[android-developers] help: Unable to access jarfile lib\archquery.jar

2010-05-24 Thread 36M
I have updated to latest java.. the skd can't be executed. when execute android.bat, it shows below === Unable to access jarfile lib\archquery.jar Unable to access jarfile lib\archquery.jar [INFO] Starting Android SDK and AVD Manager ERROR: SWT folder '' does no

[android-developers] RTP stream video decoding

2010-05-24 Thread Andy Savage
Hi everyone, I need a little bit of help from some experts out there. Currently I am developing an application that will stream video using RTP and SIP. I have this mostly working with audio working fine both ways using Java (and native) codecs. I can stream out video also from the camera to a wi

[android-developers] about google map nearly search

2010-05-24 Thread longdanbin
hi,all as we know,we can search nearby when use google map.recently I want to do something about search which when you can input a number (500meter ~2000meter) you can search within the limit of nearby for using the number.now how can I do to mapping the number to the map? Have any methods?thanks.

  1   2   3   >