[android-developers] Query about Voice feature

2015-11-30 Thread Shubham Yadav
Hi there, Can anyone tell me this query - Actually i was planning to create an app for Find my phone or Locate my device feature which is NOT like any other app or Android Device Manager to use GMap API and all other to locate exact location but it is like where user can configure his/her voice

[android-developers] Query related with the barcode

2015-01-16 Thread Mukesh Srivastav
Hi There, I need to make use of the USB Barcode scanner which also has the bluetooth with that. so we i need to make use of the bluetooth api's to read the scanned data. Please advise. Thanks, Mukesh -- You received this message because you are subscribed to the Google Groups "Android Develo

[android-developers] query on protect api in VpnService

2012-07-15 Thread Amit
Hi, Can somebody provide insight on how android implements protect(int socket) in vpnservice class? Thanks, Amit -- 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

Re: [android-developers] query for contact

2012-07-13 Thread Asheesh Arya
be specific before asking question !!! -- 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, send email to android-developers+unsubscr...@goo

[android-developers] query for contact

2012-07-13 Thread xinwei lim
I have a question for querying contacts. I have the following code // Run query Uri uri = ContactsContract.CommonDataKinds.Phone.CONTENT_URI; String[] projection = new String[] { PhoneLookup._ID, PhoneLookup.DISPLAY_NAME, ContactsContract.CommonDataKinds.Phone.NUMBE

[android-developers] Query about file storage in android

2012-07-10 Thread Sandeep Venkat
I had an image which has been downloaded from the server and it is stored in internal memory.Now,I want this image to be as folder to store other downloaded files into it dynamically.. Is it possible to store the downloaded files into image? can we use an image as folder ? -- Thanks&Regards *S

Re: [android-developers] Query about downloading file

2012-07-01 Thread Sandeep Venkat
thank you asheeh -- 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, send email to android-developers+unsubscr...@googlegroups.com For more

Re: [android-developers] Query about downloading file

2012-07-01 Thread asheesh arya
just go through this link http://getablogger.blogspot.in/2008/01/android-download-image-from-server-and.html -- 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 unsubsc

[android-developers] Query about downloading file

2012-07-01 Thread Sandeep Venkat
I am beginner to android development..Please could anyone send me the source link or any sample code to download the images or any file from internet and save them in my local db using sqlite -- Thanks&Regards *Sandeep MNVVB* * * -- You received this message because you are subscribed to the G

Re: [android-developers] Query regarding unbounded service

2012-06-02 Thread Uberall, Android
Hi, This is P B Lal from Pune, I would like to suggest you that create a class by extending Thread in which you should create two button , one for start and other for stop. Always create object of that class and put it in the Linear Layout , in this manner you will not get any issue flag namin

Re: [android-developers] Query regarding unbounded service

2012-06-02 Thread David Olsson
http://www.catb.org/~esr/faqs/smart-questions.html Send different intents to the service? That adds which groups and which button? But I have no idea of what you are after. On Sat, Jun 2, 2012 at 8:32 AM, Bhavin wrote: > Dear Sir, > > in my application,i have 24 Buttons [12 group of Two [12 * 2

[android-developers] Query regarding unbounded service

2012-06-01 Thread Bhavin
Dear Sir, in my application,i have 24 Buttons [12 group of Two [12 * 2], 1 for SET & Other for Reset]. - [Group 1] I am having requirem

Re: [android-developers] query

2012-03-15 Thread Justin Anderson
http://lmgtfy.com/?q=android+sip+demo Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Thu, Mar 15, 2012 at 1:00 AM, pranab sahoo wrote: > Hi developers, > > Hope you all are doing well. > > I used intent to open a dial screen. > My code is > >

[android-developers] query

2012-03-15 Thread pranab sahoo
Hi developers, Hope you all are doing well. I used intent to open a dial screen. My code is Intent FirstIntent=new Intent(Intent.ACTION_DIAL); startActivity(FirstIntent); Now dial pad scrren came. When I dialled a number a GSM no. get called.I want to perform a

[android-developers] Query regards InApp product unamanged item.

2012-02-29 Thread raveesh L
I have implemented in-app in my application. the scenario is like this. Once user click the buy button we are giving 5 mp3 songs to user. If the user played all the 5 songs his plan will be over and again the user needs to click buy button to buy 5 more songs. My question is, i created an in-app pr

[android-developers] Query on LoaderManager/CursorLoader behaviour

2012-02-25 Thread Sudeep Sharma
Hi, I have a query with respect to list fragment which uses loader manager callbacks and cursor loader. When onLoadFinished is called with cursor, and if i pass this cursor to some background service which uses the information in cursor. While the background service is running and if i des

Re: [android-developers] Query

2012-02-23 Thread TreKing
On Thu, Feb 23, 2012 at 4:35 AM, Alpesh Bandodkar < alpesh.bandod...@gmail.com> wrote: > I am doing an app on FLickr Animation.My application should show animation > of Flickr Photos.How do i do it. > Write code to do what you described. If you want a better, more detailed answer than that, you'r

[android-developers] Query

2012-02-23 Thread Alpesh Bandodkar
I am doing an app on FLickr Animation.My application should show animation of Flickr Photos.How do i do it. -- 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 unsubscr

Re: [android-developers] query CallLog.Calls using Date Range

2012-01-12 Thread basant mohamed
could you tell me how to convert the time to Unix time if u please On Thu, Jan 12, 2012 at 2:40 PM, Mark Murphy wrote: > You would need to convert those dates into Unix time values > (milliseconds since the epoch), and use them in a query to constrain > the values of the DATE column in CallLog.Ca

Re: [android-developers] query CallLog.Calls using Date Range

2012-01-12 Thread Mark Murphy
You would need to convert those dates into Unix time values (milliseconds since the epoch), and use them in a query to constrain the values of the DATE column in CallLog.Calls. On Thu, Jan 12, 2012 at 7:31 AM, basant mohamed wrote: > I’m a beginner android developer and I’m working on application

[android-developers] query CallLog.Calls using Date Range

2012-01-12 Thread basant mohamed
I’m a beginner android developer and I’m working on application that require to select from CallLog.Calls the calls between two dates range and it require that if I select from date 01-01-2012 to date 01-01-2012 it will return all calls at this date “01-01-2012” I just want to help me and tell me

[android-developers] Query for you developers

2012-01-11 Thread AppyGoLuckyMe
Hi there. I have recently been looking in to app developers as I now have an interest in the industry. I can also see that apps are becoming evermore popular inspiring me to further investigate. I basically have a few questions before fully delving into the industry which I was hoping anyone on her

Re: [android-developers] Query

2011-12-16 Thread Meghal Adesra
@James Black thanks for help... -- Regards Meghal Adesra -- 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, send email to and

Re: [android-developers] Query

2011-12-14 Thread James Black
Designing a database is going to be something that you need to do, but you can look at what data needs to be accessible, then differentiate between what can be saved, and what can be derived. For example, if you have an access log, then you can derive how many people came in during a particular da

Re: [android-developers] Query

2011-12-14 Thread Lew
Megz wrote: > > > ya but i [sic] posted my query in my first post itself, it mentioned as > below: > > Hello, > I am developing an LBS in android which include two modules one is > the client side and other is the server side, so please can you help > me in making database for it ( means what fie

Re: [android-developers] Query

2011-12-14 Thread Lew
How is it rude to give you the answer that will help you? You asked a question, you got a useful answer, from someone who is not compensated for assisting you other than by your gratitude and the feeling of helping people. And this is the gratitude you show? Who's the rude one? -- Lew On

Re: [android-developers] Query

2011-12-14 Thread Meghal Adesra
ya but i posted my query in my first post itself, it mentioned as below: Hello, I am developing an LBS in android which include two modules one is the client side and other is the server side, so please can you help me in making database for it ( means what fields should i take etc), and should i

Re: [android-developers] Query

2011-12-14 Thread Meghal Adesra
ya i know and i will for that i don't need your advice got it. -- Regards Meghal Adesra -- 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 g

Re: [android-developers] Query

2011-12-07 Thread rich friedel
I'll reply to the OP and not be so nice... Hey OP, your laziness is insulting to me and probably to anyone who has had to teach themselves. You say you know what Google search is and how to use it... then do so, use it!!! -- You received this message because you are subscribed to the Google Gr

Re: [android-developers] Query

2011-12-07 Thread TreKing
On Wed, Dec 7, 2011 at 7:39 AM, Meghal Adesra wrote: > Hey thrs nthing to be such rude okay I actually wasn't trying to be rude, I was offering advice that many people on this list don't seem to follow. You asked for help - I asked how you wanted people to help you. You responded with "I'm

Re: [android-developers] Query

2011-12-07 Thread Meghal Adesra
i know how to use it and thanks okay i dont need any help from people like you On Wed, Dec 7, 2011 at 7:09 PM, Meghal Adesra wrote: > Hey thrs nthing to be such rude okay > > > On Wed, Dec 7, 2011 at 7:03 PM, TreKing wrote: > >> On Wed, Dec 7, 2011 at 6:50 AM, Meghal Adesra wrote: >> >>> I

Re: [android-developers] Query

2011-12-07 Thread Meghal Adesra
Hey thrs nthing to be such rude okay On Wed, Dec 7, 2011 at 7:03 PM, TreKing wrote: > On Wed, Dec 7, 2011 at 6:50 AM, Meghal Adesra wrote: > >> I am still new to the droid development , so i will need some more help >> on many topics , so will you help me . > > > Will you try to help yours

Re: [android-developers] Query

2011-12-07 Thread TreKing
On Wed, Dec 7, 2011 at 6:50 AM, Meghal Adesra wrote: > I am still new to the droid development , so i will need some more help on > many topics , so will you help me . Will you try to help yourself first? Start by reading the documentation and learning to use Google. -

Re: [android-developers] Query

2011-12-07 Thread Meghal Adesra
Hello sir, I am still new to the droid development , so i will need some more help on many topics , so will you help me . On Wed, Nov 30, 2011 at 1:07 AM, TreKing wrote: > On Sun, Nov 27, 2011 at 2:10 PM, Megz wrote: > >> can you help me in making database for it ( means what fields should i

Re: [android-developers] Query

2011-11-29 Thread TreKing
On Sun, Nov 27, 2011 at 2:10 PM, Megz wrote: > can you help me in making database for it ( means what fields should i > take etc), and should i place my database in server side . > Help you how? The answers to these questions depend on your app's purpose and functionality which only you know so

[android-developers] Query

2011-11-28 Thread Megz
Hello, I am developing an LBS in android which include two modules one is the client side and other is the server side, so please can you help me in making database for it ( means what fields should i take etc), and should i place my database in server side .please help me -- You received this

[android-developers] Query Releted To Android SQLiteDatabase

2011-11-28 Thread Aamirkhan pathan
Hi! hi! i have one problem with android sqlite database i have one table which contains one field.StudentFname and that application is working fine with android 2.3.1 and now if i add another field than my application is not working properly.can any one help me who knows database very well, here is

Re: [android-developers] Query

2011-08-11 Thread Nico Balestra
Ahaahah 2011/8/11 Mark Murphy > On Thu, Aug 11, 2011 at 1:17 PM, Kostya Vasilyev > wrote: > > About those gnomes - are they data storage workers, or the media on which > > the data is stored? > > Both. They tattoo each other with very tiny QR codes. Rather ingenious, > really. > > -- > Mark Mur

Re: [android-developers] Query

2011-08-11 Thread Mark Murphy
On Thu, Aug 11, 2011 at 1:17 PM, Kostya Vasilyev wrote: > About those gnomes - are they data storage workers, or the media on which > the data is stored? Both. They tattoo each other with very tiny QR codes. Rather ingenious, really. -- Mark Murphy (a Commons Guy) http://commonsware.com | http:

Re: [android-developers] Query

2011-08-11 Thread Kostya Vasilyev
11.08.2011 21:10, TreKing ?: On Thu, Aug 11, 2011 at 12:34 AM, ISHAN THAPAR mailto:ishanthapar...@gmail.com>> wrote: Can any one tell me how information is stored in android phone? Gnomes. About those gnomes - are they data storage workers, or the media on which the data is stored?

Re: [android-developers] Query

2011-08-11 Thread TreKing
On Thu, Aug 11, 2011 at 12:34 AM, ISHAN THAPAR wrote: > Can any one tell me how information is stored in android phone? Gnomes. - TreKing - Chicag

Re: [android-developers] Query...

2011-08-11 Thread Daniel Drozdzewski
On 11 August 2011 12:01, ISHAN THAPAR wrote: > But can you give me some example with code to unnderstand!!! The question is too vague and we couldn't resist temptation to give equally vague answers. You need to ask something more specific. Try here looking here, it might help: http://www.helloa

Re: [android-developers] Query...

2011-08-11 Thread ISHAN THAPAR
But can you give me some example with code to unnderstand!!! On Thu, Aug 11, 2011 at 3:56 AM, Nico Balestra wrote: > Probably bits > > 2011/8/11 Daniel Drozdzewski >> >> On 11 August 2011 11:43, Ishan wrote: >> > Hello Friends, >> > >> > Can any one tell me how information is stored in android

Re: [android-developers] Query...

2011-08-11 Thread Kostya Vasilyev
Assembled into bytes, no question. @Ishan: http://developer.android.com/guide/topics/data/data-storage.html 11.08.2011 14:56, Nico Balestra ?: Probably bits 2011/8/11 Daniel Drozdzewski > On 11 August 2011 11:43, Ishan mailto:ishanthapar...@gmail

Re: [android-developers] Query...

2011-08-11 Thread Nico Balestra
Probably bits 2011/8/11 Daniel Drozdzewski > On 11 August 2011 11:43, Ishan wrote: > > Hello Friends, > > > > Can any one tell me how information is stored in android phone? > > robustly > > -- > You received this message because you are subscribed to the Google > Groups "Android Developers" gr

Re: [android-developers] Query...

2011-08-11 Thread Daniel Drozdzewski
On 11 August 2011 11:43, Ishan wrote: > Hello Friends, > > Can any one tell me how information is stored in android phone? robustly -- 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@go

[android-developers] Query...

2011-08-11 Thread Ishan
Hello Friends, Can any one tell me how information is stored in android phone? -- 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, send em

[android-developers] Query

2011-08-11 Thread ISHAN THAPAR
Hello Friends, Can any one tell me how information is stored in android phone? -- 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, send em

[android-developers] Query

2011-07-28 Thread saurabh kulkarni
pl.suggest soln to this. My date column has date like:2011-07-25. final Calendar c = Calendar.getInstance(); int myMonth = (c.get(Calendar.MONTH)+1); int myDay = c.get(Calendar.DAY_OF_MONTH); String query = "

Re: [android-developers] Query database

2011-07-21 Thread Kostya Vasilyev
You are not calling getWritableDatabase (a method inherited by your helper class). Hence, the db never gets created. Might be a good idea to separate addEmployee, etc., into another class, so you have more clear separation between opening/creating the database vs. performing data operations with i

Re: [android-developers] Query database

2011-07-21 Thread lbendlin
You're overcomplicating things a little bit. Have a look at the Android sample codes for database handling. First and foremost decide if you really want to create the database on the fly, or maybe you want to go with a prepared database that you then copy to the documents area on first access/w

[android-developers] Query database

2011-07-19 Thread kirti waykole
hello all, I am new in android . I have problem with database. Plz see the below code. database is not creating. Plz help me thanksin advance this is my dBHelper class package com.example.android; import android.content.ContentValues; import android.content.Context; import android.databas

Re: [android-developers] Query Related to Call Log

2011-06-11 Thread Mark Murphy
Query the CallLog content provider. On Sat, Jun 11, 2011 at 9:21 AM, Napster wrote: > I'm planning to develop an application to reduce call expenses for > users. The basic idea is to show their call durations on sorted > contacts. For example, my app should shows a list of phone numbers, > with t

[android-developers] Query Related to Call Log

2011-06-11 Thread Napster
I'm planning to develop an application to reduce call expenses for users. The basic idea is to show their call durations on sorted contacts. For example, my app should shows a list of phone numbers, with the most called (most time duration / most number of times dialled ) at the top of the list. Th

[android-developers] Query on Programming Model in Recorder

2011-05-11 Thread Ganesh
Dear Experts, >From the sources, I observe that the data from Camera is read by the encoder through a PULL model. However, Camera can't generate frames whenever the encoder requires a frame and instead should work on a PUSH model. To ensure the real-time behavior of the system, one would require a

Re: [android-developers] query() + where + 2 content providers. Possible?

2011-05-03 Thread Dianne Hackborn
You can't do queries across content providers. Heck you can't even do it across multiple SQLite databases. 2011/5/3 Gabriel Simões > Hello, > > I´m struggling with a problem where I have to search for information > on a content provider (MediaStore.Audio.Albums) but I need to restrict > my sear

[android-developers] query() + where + 2 content providers. Possible?

2011-05-03 Thread Gabriel Simões
Hello, I´m struggling with a problem where I have to search for information on a content provider (MediaStore.Audio.Albums) but I need to restrict my search based on information on another content provider (MediaStore.Audio.Media). Based on what I´ve read over the internet I should not use raw sql

Re: [android-developers] Query related to WXGA

2011-03-31 Thread Mark Murphy
On Thu, Mar 31, 2011 at 6:09 PM, Manish Garg wrote: > I have a requirement to support WXGA in my android application but I > am not sure what WXGA stands for? http://lmgtfy.com/?q=wxga > From which drawable folder it will take images. Resolution has nothing to do with it. What matters are scree

[android-developers] Query related to WXGA

2011-03-31 Thread Manish Garg
Hi, I have a requirement to support WXGA in my android application but I am not sure what WXGA stands for? From which drawable folder it will take images. Is there something specific which I should take care while supporting my application on WXGA. -- You received this message because you are s

Re: [android-developers] Query in Android Application development

2011-03-11 Thread Justin Anderson
Ummm we aren't going to write your app for you. http://www.catb.org/~esr/faqs/smart-questions.html Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Thu, Mar 10, 2011 at 12:12 AM, Raghav Rajagopalan < traceragha...@gmail.com> wrote: > Hi to all!! > >

[android-developers] Query in Android Application development

2011-03-11 Thread Raghav Rajagopalan
Hi to all!! I am Raghav Rajagopalan from Chennai, India. I am a Android application developer. I am new to this domain. I am working on building a application. I have few queries. I hope you can help me out in solving my issue. My requirements are: 1. I have a Login Screen created. I n

[android-developers] Query in calling SOAP based web service in Android

2011-01-26 Thread Nandlal Viranni
Hi All , I am new to Android . I am developing one application . In which , i need to use SOAP based web service. but i am not able to do this task . I need to pass class object as a argumens while calling web service method . And I am getting error regarding "Serialize" . Now , I change the

Re: [android-developers] Query result of application install

2010-12-15 Thread Mark Murphy
On Wed, Dec 15, 2010 at 2:50 PM, kl4232 wrote: > I'm installing an app as follows... > > Intent intent = new Intent(Intent.ACTION_VIEW); > intent.setDataAndType(Uri.fromFile(myFile), "application/ > vnd.android.package-archive"); > startActivityForResult(intent, INSTALL_COMPLETED); > > And I'd lik

[android-developers] Query result of application install

2010-12-15 Thread kl4232
I'm installing an app as follows... Intent intent = new Intent(Intent.ACTION_VIEW); intent.setDataAndType(Uri.fromFile(myFile), "application/ vnd.android.package-archive"); startActivityForResult(intent, INSTALL_COMPLETED); And I'd like to know whether the user pressed "install" or "cancel" when

[android-developers] query not return the expected result

2010-12-03 Thread pramod.deore
Hi everyone, I have a table (RoomName) who has 3 columns (RoomID, RoomName, RoomSuffix). RoomID is primary field. what I want is if suppose user enter duplicate RomName then that Rooms RoomSuffix value should be increased by 1. Suppose there are following record already RoomIDRoomName

Re: [android-developers] Query Other App Permissions

2010-11-23 Thread Dianne Hackborn
http://developer.android.com/reference/android/content/pm/PackageManager.html#getPackageInfo(java.lang.String, int) With http://developer.android.com/reference/android/content/

Re: [android-developers] Query Other App Permissions

2010-11-23 Thread Brad Gies
Permissions are in PackageManager... not sure exactly what you mean by usage... Sincerely, Brad Gies --- Bistro Bot - Bistro Blurb http://bgies.comhttp://nocrappyapps.com http://bistroblurb.com http://forcethet

[android-developers] Query Other App Permissions

2010-11-23 Thread m88m
Hey Guys! How one Android application can query other applications (permissions and usage)? The 'mylookout' app doing that (without rooting the device!). [check https://www.mylookout.com/premium/ -> Under 'Privacy Dashboard': "View a consolidated list of apps that can access your private informa

Re: [android-developers] Query on Customs Map application

2010-11-19 Thread TreKing
On Mon, Nov 15, 2010 at 12:49 AM, Satya wrote: > 1. If we pull Google MAPS application from an Android phone say Nexus One > and use the same on our target will the map application work? > No. The Google Maps API Add-On (the library you have to link against) != Google Maps App (a stand-alone app

[android-developers] Query on Customs Map application

2010-11-17 Thread Satya
Hi, We have developed a custom Maps application based on froyo 2.2 which works fine on emulator. But the same application fails at the installation stage itself on the target(ARM based hardware). (Getting " Package com.androidbook requires unavailable shared library com.google.android.maps; failin

Re: [android-developers] query sms from smsinbox

2010-11-08 Thread Kumar Bibek
Where are you stuck exactly? You should be setting a listener to the listview which should extract the details of that item which you can display in a Toast. On Mon, Nov 8, 2010 at 7:35 AM, guoliang liang wrote: > hi all, > i have a problem querying out sms message from the smsinbox. currently >

[android-developers] query sms from smsinbox

2010-11-08 Thread guoliang liang
hi all, i have a problem querying out sms message from the smsinbox. currently i able to display the sms messages using a listview. what i trying to do is once the user select the msg from list view and a Toast will display (with the msg content) once selected. pls enlighten me.. thanks -- You re

[android-developers] Query on type of solution

2010-11-04 Thread zizzfusion
Hi all, The app I'm producing requires a database that can store a collection of exhibits and the museums they're at plus a few other things like media urls and visitor comments. Stage 1: A user refines their search for exhibits by all or one specific museum using a Spinner. The user then enters

[android-developers] Query Content Provider from non-Activity class?

2010-11-01 Thread Argus
I have set up the model part of my application similar to the MicroJobsDatabase file in the MicroJobs sample application. As I like how slick the structure is, I wanted to have all of my data in this file, including data queried from content providers. The way the MicroJobsDatabase class works is

[android-developers] Query about SlideShow Implementation.

2010-10-26 Thread BlueDares
HI All, I'm want to implement Dynamic SlideShow of Images similar to Gallery. On Drag, i Should be able to change to next images. I'm looking into Gallary1.java class from APIDemo Example, i think there is no sufficient information in that, so is there any better code example which could help me.

[android-developers] Query about Monkey scripting Option, in updated monkey source code

2010-10-24 Thread pradeep
Hi All, When I was going through monkey source code[MonkeySourceScript.java], came to know that we can also send instrumentation events. I have developed a test application and installed in the android 2.2 emulator, and tried to run it through monkey script. Below is the script I have written an

[android-developers] Query about Monkey Options, in updated monkey source code

2010-10-24 Thread pradeep
Hi All, I have checked the updated monkey source code, I found out few new options, can any body please let me know how to use these options. what is the setup option for what is its purpose. what is the difference between pkg blacklist and whitelist [--pkg-blacklist-file PACKAGE_BLACKLIST_FI

Re: [android-developers] Query audio and video codecs

2010-10-21 Thread Mark Murphy
On Wed, Oct 20, 2010 at 12:52 PM, Simon MacDonald wrote: > This may be a very dumb question but is there anyway to determine > programatically through the API the data that is in the table: > > http://developer.android.com/guide/appendix/media-formats.html Not that I know of -- sorry! -- Mark M

[android-developers] Query audio and video codecs

2010-10-21 Thread Simon MacDonald
Hi all, This may be a very dumb question but is there anyway to determine programatically through the API the data that is in the table: http://developer.android.com/guide/appendix/media-formats.html Thanks... Simon Mac Donald http://hi.im/simonmacdonald -- You received this message because y

[android-developers] Query default email app for registered accounts

2010-10-14 Thread klavin
Can you query the Email app for a list of the email accounts that are registered with it? When you add an account to the combined inbox, say a yahoo account, it does not show up in the Account Manager. I'd like to get a list of these accounts that the Email app is managing and then remove the accou

[android-developers] Query about ClickListeners

2010-10-01 Thread LazyGarfield
Hi Everyone! I have got around 15 buttons in my activity. I just wanted to know that what would be a better approach to implement their ClickListeners. Should I write a single ClickListener and use Switch case or I should write it individually fr each button? I got confused between these two bec

[android-developers] Query contacts based on unformatted Phone numbers

2010-09-13 Thread Samuh
We are getting a set of telephone numbers(pure numbers with no formatting) from a remote web service. We need to display them in a list. But before that we have to query the contacts database and show "display name" of the contact instead of the phone number if there is a match. Question : 1. When

[android-developers] Query regarding MMS in android emulator

2010-08-23 Thread Leeza
I am learning android myself and i stuck with one problem. I am trying to send MMS from one emulator to another emulator.(I got success in sending SMS between emulator) According to Android 1.0 SDK, Release 1-- http://developer.android.com/sdk/RELEASENOTES.html -- it says it is not possible

[android-developers] Query regarding Intent.get & Extras.

2010-08-11 Thread sukumar bhashyam
hi, Please help me in clarifying below query #1. Any Data( Bundle) passed into Intent.putExtras is going to create a new copy of Bundle instance or its going to have reference to the Bundle passed?. #2 Same query with get, Any call made to Intent.getExtras is going to new Instance of Bundle

Re: [android-developers] Query Google Maps

2010-07-26 Thread TreKing
On Mon, Jul 26, 2010 at 1:55 AM, KG wrote: > Does anyone have any ideas on how to do this? May not be the "best" way, but you have your query and you the page it gives you, which has links for the other pages with the remaining results. So parse the first page then follow the links to the next

[android-developers] Query Google Maps

2010-07-25 Thread KG
Hi Everyone, I'd like to make an app that requires access to all (or many) search results of a maps query. For example, given the query http://www.google.com/maps?q=hotel&mrt=yp&radius=1&sll=32.503478,-84.948322 the app would have the names/locations of the 49 results. Does anyone have any ide

[android-developers] Query sent SMS from content provider

2010-07-22 Thread Psyhclo
Hello, when I send an SMS on my emulator, it goes to the content provider: content: //sms/sent right? So I want to get these SMS's sent, which are in the content provider. But I do not know how to do this. I know I should have the query () method and then call it in the place where I want to sear

[android-developers] Query sent SMS in content provider

2010-07-22 Thread Psyhclo
Hello, when I send an SMS on my emulator, it goes to the content provider: content: //sms/sent right? So I want to get these SMS's sent, which are in the content provider. But I do not know how to do this. I know I should have the query () method and then call it in the place where I want to sear

[android-developers] Query sent SMS fro

2010-07-22 Thread Psyhclo
Hello, when I send an SMS on my emulator, it goes to the content provider: content: / / sms / sit right? So I want to get these SMS's sent from the content provider. But I do not know how to do this. I know I should have the query () method and then call it in the place where I want to search. I

[android-developers] Query SMS by Message Body

2010-06-29 Thread Chandana Napagoda
Hi all, I need to query SMS message by message body. As example If i need to find the all messages which has "HELLO" in There message body. Is this possible. I'm relay appreciate your comments. Regards, Chandana -- You received this message because you are subscribed to the Google Groups "Andr

[android-developers] query button on phone

2010-04-29 Thread tstanly
hi all, I want to change the behavior of query button on phone, so I find the "keyevent": http://developer.android.com/intl/zh-TW/reference/android/view/KeyEvent.html but can't find the query key? is possiable to change behavior of query button from application code? thanks -- You received t

Re: [android-developers] Query 1:

2010-03-24 Thread TreKing
Answer 1: This is terribly title post. If you want people to respond and take you seriously, put some thought into what you title your posts so they're meaningful and make sense. On Tue, Mar 23, 2010 at 7:15 AM, Dinesh Adwani wrote: > Could you please tell me how to use notification code inside >

[android-developers] Query 1:

2010-03-24 Thread Dinesh Adwani
Could you please tell me how to use notification code inside Broadcast Reciever. -- 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, send e

Re: [android-developers] query about the usage of HttpsURLConnection

2010-03-09 Thread Hugo Wang
10 10:26 AM > *To:* android-developers@googlegroups.com > *Subject:* [android-developers] query about the usage of > HttpsURLConnection > > > > Hi all, > > > > I am using HttpsURLConnection to post data to a web server. > > > > Here is the function I wrote t

[android-developers] Query Loop!?

2010-03-09 Thread Ben
I am trying to throw 4 tables into a List and then run a query on each through a loop... this isn't really working... Following code totally freehand as I had to undo the code I wrote because it wouldn't run : //this first line is the one that I would imagine is the linchpin on getting this to wo

RE: [android-developers] query about the usage of HttpsURLConnection

2010-03-09 Thread Trung-Liem Vo
@googlegroups.com [mailto:android-develop...@googlegroups.com] On Behalf Of Hugo Wang Sent: Wednesday, March 10, 2010 10:26 AM To: android-developers@googlegroups.com Subject: [android-developers] query about the usage of HttpsURLConnection Hi all, I am using HttpsURLConnection to post data to a web

[android-developers] query about the usage of HttpsURLConnection

2010-03-09 Thread Hugo Wang
Hi all, I am using HttpsURLConnection to post data to a web server. Here is the function I wrote to get the result. (see the code below) Very strangely, when the function be first called in my program it would very likely return -1; and then I re-call the function after the first call, it would

[android-developers] Query regarding MediaStore

2010-02-25 Thread Android Developer
Hi, I want to use MediaStore content provider. I have a query on the same. Will the database get updated upon boot complete? I observed that the database is empty unless Gallery application/ Music application is launched. Could anyone clarify on the same? Kavitha -- You received this message b

[android-developers] Query the List of Favorite Contacts

2010-02-14 Thread Ali Chousein
Hi, I'm trying to query the list of favorite contacts. I use the line below: Cursor cur = this.getContentResolver().query(People.CONTENT_URI, null, People.STARRED + "=?", new String[] { "1" }, null); However, this doesn't work because NULL data is returned, even though my list of favorite contac

[android-developers] Query related to adding a new flag in the WindowManager (Similar to FLAG_IGNORE_CHEEK_PRESSES)

2010-02-04 Thread rahul
Hi All, I am working on an adding a FLAG similar to FLAG_IGNORE_CHEEK_PRESSES. I have added an entry in the WindowManager.java for my flag and in the Phone application activity incallscreen.java i have added this flag along with FLAG_IGNORE_CHEEK_PRESSES using getWindow().addFlags(WindowManager.La

  1   2   >