[android-developers] Widget Help

2010-01-19 Thread Kumar Bibek
. Is this possible, if yes, how can I achieve this ? Thanks and Regards, Kumar Bibek -- 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

[android-developers] Re: Custom Buttons containing layouts

2010-01-21 Thread Kumar Bibek
You can extend the Button and make your custom Button class, where you can change all the effects. You will get hooks to all the methods. Kumar Bibek On Jan 22, 10:58 am, theSmith chris.smith...@gmail.com wrote: Hey all, I was wondering if it was possible to use a RelativeLayout containing

[android-developers] Re: Clicking individual images in Gridview

2010-01-23 Thread Kumar Bibek
While populating the GridView, you can set an ID or a TAG to individual images. I guess, that will help. Kumar Bibel On Jan 23, 10:03 pm, Aniruddh Bajirao abaji...@gmail.com wrote: I'm trying to have a gridView with images and on clicking each image, I want to be able to uniquely identify the

[android-developers] Re: Getting the Manifest Version Code

2010-01-23 Thread Kumar Bibek
PackageInfo pInfo = null; try { pInfo = getPackageManager().getPackageInfo(com.beanie.test, PackageManager.GET_META_DATA); } catch (NameNotFoundException e) { e.printStackTrace(); } System.out.println(pInfo.versionCode); Kumar Bibek On Jan 24, 8:48 am

[android-developers] Re: AVD - Emulator limitations

2010-01-24 Thread Kumar Bibek
Hey, Of course it can make calls, to other emulators, and it can emulate GPS too Checkout the emulator options in the DDMS perspective to see these options. Kumar Bibek On Jan 22, 10:10 am, Sudhir Nallagangu nallagan...@gmail.com wrote: I am curious on limitations on AVD /Emulators

[android-developers] Re: Get Attributes of a media file.

2010-01-24 Thread Kumar Bibek
You can query the MediaStore content provider to get the details. In the Android docs, search for this, and you will get a lot of information. Kumar Bibek On Jan 25, 9:00 am, Manjunatha M man...@gmail.com wrote: Hi, I have downloaded a media file. (say mp3 file). I need to get the attributes

[android-developers] Re: Edit Text Objects

2010-01-27 Thread Kumar Bibek
There's a property for all the View classes, called, Visibility It has three states, 1. VISIBLE 2. INVISIBLE 3. GONE I think, you are looking for GONE state. Kumar Bibek On Jan 26, 6:11 pm, Uzair uskele...@gmail.com wrote: Hi, ne1 knw how to create the edit text view without help from xml

[android-developers] Re: help for custom spinner..

2010-01-27 Thread Kumar Bibek
available. As requested, I haven't given you any links. Kumar Bibek On Jan 25, 6:48 pm, chiru.. chiru.v...@gmail.com wrote: hi frnz.. pls help to design a custom spinner.I need to use that in my other application.Pls send the complete project for custom spinner.pls.. dont send the links and suggest

[android-developers] Re: Update SQLite Database from other app

2010-01-27 Thread Kumar Bibek
You can surely do it, if you write your ContentProvider specifically for this situation. Have a look at some examples. Kumar Bibek On Jan 26, 11:23 pm, Charlie Collins charlie.coll...@gmail.com wrote: The applications are in different processes, with different permissions (by default, you can

[android-developers] Re: Android market and other languages...

2010-01-27 Thread Kumar Bibek
Hmm, Good question. I guess, you should ask this question on the Android Market forum, but don't hope to get an answer. :) They take ages. I think you will need to support one of the official languages displayed while uploading. I am not sure though. Kumar Bibek On Jan 28, 1:32 am, reyden

[android-developers] Re: Dynamic views removed when switching to landscape

2010-01-27 Thread Kumar Bibek
You will have to write your code in such a way that on change of orientation, you bring up all the views that were present before,. The default behaviour is, the Acitivity is created from the onCreate() method, after the change of orientation. Kumar Bibek On Jan 27, 11:09 pm, TreKing treking

[android-developers] Re: Comparing dates in a sqlite database

2010-01-27 Thread Kumar Bibek
That's a good option and probably the only one if you want to include the date field for filtering/fetching records... Kumar Bibek On Jan 28, 9:47 am, em00guy jwa...@gmail.com wrote: I'm trying to develop a strategy for comparing dates in a sqlite query.Since sqlite has no date type

[android-developers] Re: Highlight Linearlayout

2010-01-29 Thread Kumar Bibek
You can set touch listeners to the LAyout, and change the background color/border on MouseDown and remove it on MouseUp Kumar Bibek On Jan 29, 10:09 am, Sasikumar.S sasikumar.it1...@gmail.com wrote: Hi, When I'm clicking the linear layout it should be highlighted. How to do

[android-developers] Re: In the Gallery from Intent.ACTION_PICK, can I override the longClick?

2010-01-29 Thread Kumar Bibek
I am not sure why you don't get a context menu. I guess, the emulator itself has some actions that can be performed like Share etc.. Please check because, I have been using it regularly... Kumar Bibek On Jan 29, 4:28 am, Arcantos greatarcan...@gmail.com wrote: In my app i let the user select

[android-developers] Re: character chinese or korea

2010-01-30 Thread Kumar Bibek
If you have a chineese/korean keyboard, you can of course do it. Else, copy the chineese/korean text from somewhere, and paste them in the string.xml Kumar Bibek On Jan 30, 9:33 pm, DAVIDT dtole...@gmail.com wrote: Hi All How do can have in my string.xml,  characters chinese or korean

[android-developers] Re: How to call a java script function from android activity

2010-01-31 Thread Kumar Bibek
There are a lot of examples that you can look at... http://android-developers.blogspot.com/2008/09/using-webviews.html Check out the above link and you will get an idea. Kumar Bibek On Feb 1, 9:09 am, Praveen Varma dsrpraveenva...@gmail.com wrote: can u tell me how to call a java script

[android-developers] Re: Particular Tag Parsing

2010-01-31 Thread Kumar Bibek
SAX parsing is done line by line, so there is no way that you can pick up a specific tag if you are SAX parsing. Kumar Bibek On Feb 1, 8:30 am, Sasikumar.S sasikumar.it1...@gmail.com wrote: Hi, How to parse only the particular tag using SAX Parser?.. *sample.xml* * * main type= sub

[android-developers] Re: Builtin layout xml source code?

2010-01-31 Thread Kumar Bibek
Sure, Open your Android SDK folder. There, you will have to dig into the platforms, then your specific sdk, res, layout. Check it out. Kumar Bibek On Jan 31, 8:57 am, scastria scastria...@gmail.com wrote: Anyway to see the source xml for android.R.layout.simple_expandable_list_item_2

[android-developers] Re: Particular Tag Parsing

2010-01-31 Thread Kumar Bibek
for this?.. On Mon, Feb 1, 2010 at 10:16 AM, Kumar Bibek coomar@gmail.com wrote: SAX parsing is done line by line, so there is no way that you can pick up a specific tag if you are SAX parsing. Kumar Bibek On Feb 1, 8:30 am, Sasikumar.S sasikumar.it1...@gmail.com wrote: Hi, How to parse

[android-developers] Re: Particular Tag Parsing

2010-01-31 Thread Kumar Bibek
Well, true, it's not line by line, to be more specific, it's character by character. What I meant was, you can't just pick up specific data from the XML, you will have to go through the whole XML, or till the tag which you want to fetch. Kumar Bibek. On Feb 1, 10:12 am, Sasikumar.S

[android-developers] A scrollable widget

2010-02-01 Thread Kumar Bibek
Hello All, Is it possible to make a Scrollable widget ? I have seen HTC has some widgets which are scrollable, but I am guessing that HTC might have modified the source code to extend the widget framework. Can anyone please confirm? Thanks and Regards, Kumar Bibek -- You received this message

[android-developers] Re: A scrollable widget

2010-02-02 Thread Kumar Bibek
Thanks Romain, Any update when we will be able to see this feature ? This looks cool by the way, and is really useful. Kumar Bibek On Feb 2, 1:01 pm, Romain Guy romain...@android.com wrote: You cannot make scrollable widgets, HTC is not using the regular app widget framework. On Mon, Feb

[android-developers] Re: Young French Dev need help

2010-02-02 Thread Kumar Bibek
Query the SMS content provider for all the info you need about the SMS Search for it, and you will get a few examples. Thanks and Regards Kumar Bibek On Feb 2, 2:36 pm, Rubixcube tristanyoun...@gmail.com wrote: yeah , i've read docs for many times , but i haven't found any thing helping me

[android-developers] We need a Drag and Drop control for Android

2010-02-18 Thread Kumar Bibek
at google must be working on this, but there has been so many releases, and we still don't have any updates about this. Please make it simpler. Thanks and Regards, Kumar Bibek -- You received this message because you are subscribed to the Google Groups Android Developers group. To post

[android-developers] Drag and Drop on WebView

2010-02-23 Thread Kumar Bibek
and Regards, Kumar Bibek -- 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

[android-developers] Re: New Android Project - Create from existing source - Unhandled event loop exception, java.lang.StackOverflowError

2010-02-23 Thread Kumar Bibek
This looks like a memory problem to me. Eclipse does eat up a lot of memory. And if you are short of RAM, and you are doing lots of things, you will hit StackOverflow. On Feb 24, 12:22 am, Matt Kanninen mathias...@gmail.com wrote: This work flow is causing Eclipse to give me: Unhandled event

[android-developers] Re: android.speech.action.RECOGNIZE_SPEECH activity not found

2010-02-23 Thread Kumar Bibek
The emulator doesn't have this Activity. That is why you are getting this exception. On Feb 24, 11:04 am, Sandeep Phansekar sandeep.phanse...@gmail.com wrote: plz explain u r problem with more details -- Regards Sandeep On Tue, Feb 23, 2010 at 8:58 PM, Mukesh kumar mukesh.j...@gmail.com

[android-developers] Re: intercept sms

2010-02-23 Thread Kumar Bibek
You can of course intercept incoming sms. But you cannot disable the notification. Also, you have to do your bit of work within a certain time limit, else your process will be closed. You can also not abort the broadcast. On Feb 24, 9:32 am, nigel wang_...@163.com wrote: requirements: 1.Can

[android-developers] Re: Hang up phone call

2010-02-23 Thread Kumar Bibek
You cannot. On Feb 23, 5:25 pm, Isaac Wagner isaacewag...@gmail.com wrote: I've spend the last couple days looking for a way to hang up a phone cal via the API.  I'm guessing for some security reason that Google does not allow this.  Not being one to give up yet...is there any undocumented

[android-developers] Re: Could I get available package from somewhere?

2010-02-25 Thread Kumar Bibek
Which package are you looking for? On Feb 26, 11:17 am, wangsuya wang.s...@gmail.com wrote: Dear every one      Because I could not get avaible package from Android SDK and AVD manager of eclipse, could I get this avaible packages from somepalce? hope help thanks in advance -- You received

[android-developers] Re: Getting altitude / height / elevation

2009-12-08 Thread Kumar Bibek
and Regards, Kumar Bibek http://tech-droid.blogspot.com On Dec 8, 3:51 pm, Neilz neilhorn...@googlemail.com wrote: Hi, thanks for the reply. Yes, I just found the getAltitude() method of Location. Unfortunately it just seems to return 120.0, and doesn't seem to have the accuracy of getLatitude

[android-developers] Re: How to show menu item automatically?

2009-12-08 Thread Kumar Bibek
Just in your onCreate() or onResume() method, call this. Thanks, Kumar Bibek http://tech-droid.blogspot.com On Dec 8, 3:58 pm, Sasikumar.S sasikumar.it1...@gmail.com wrote: Hi kumar, Thanks for ur reply... how to use that?.. On Tue, Dec 8, 2009 at 4:16 PM, Dexter#39;s Brain coomar

[android-developers] Re: Is there any way to but an Object to transfer between some Activities without Serialization

2009-12-08 Thread Kumar Bibek
NopesIt can't be done with the simplicity you are asking for. The Remote Interface way, or the Parcelable way. Thanks and Regards, Kumar Bibek http://tech-droid.blogspot.com On Dec 8, 4:13 pm, Le Tuan Anh anhlt1...@gmail.com wrote: Normally, I used to apply method Intent.putExtrae(String

[android-developers] Re: Camera - Icon image resource for 'take picture' button?

2009-12-08 Thread Kumar Bibek
...android-sdk-windows-1.5_r2\platforms\android-1.5\data\res\drawable Have a look at this folder. All the image resources are here. Pick your choice. :) Thanks and Regards, Kumar Bibek http://tech-droid.blogspot.com On Dec 8, 9:37 pm, Mark Wyszomierski mar...@gmail.com wrote: Hi, On the G1

[android-developers] Re: How to show a 'Progress View' during a ListView is loading

2009-12-08 Thread Kumar Bibek
ListView has something called setEmptyView. In your xml, just add a progress bar. And set this to the list view as empty view. That should work. Thanks and Regards, Kumar Bibek http://tech-droid.blogspot.com On Dec 8, 6:28 am, n179911 n179...@gmail.com wrote: Hi, In the android market app

[android-developers] Re: How can i stop a thread in a Activity?

2009-12-09 Thread Kumar Bibek
Interrupt the rhead. That's as good as stopping the thread. Thanks, Kumar Bibek http://tech-droid.blogspot.com On Dec 10, 8:41 am, niko20 nikolatesl...@yahoo.com wrote: Stop on threads I believe is deprecated. It probably doesn't do anything. Just use a global flag that the thread can check

[android-developers] Re: About registering/deregistering for gps updates

2009-12-09 Thread Kumar Bibek
There are different kinds of starts a GPS receiver has. Cold start, Warm start and Hot start. Just google about it and you will find your answers. Thanks and Regards, Kumar Bibek http://tech-droid.blogspot.com On Dec 8, 6:57 pm, API Tests testapiacco...@gmail.com wrote: Hi

[android-developers] Re: How can i stop a thread in a Activity?

2009-12-10 Thread Kumar Bibek
You can check this link on Sun site. http://java.sun.com/docs/books/tutorial/essential/concurrency/interrupt.html Thanks and Regards, Kumar Bibek http://tech-droid.blogspot.com On Dec 10, 10:03 am, Kumar Bibek coomar@gmail.com wrote: Interrupt the rhead. That's as good as stopping

[android-developers] Re: The proper way to set a timer in android

2009-12-10 Thread Kumar Bibek
Use the AlarmManager. Refer to the online docs. There are a lot of samples out there. Thanks and Regards, Kumar Bibek http://tech-droid.blogspot.com On Dec 10, 3:34 am, n179911 n179...@gmail.com wrote: Hi, What is the proper way to set a timer in android in order to kick off a task

[android-developers] Re: How to call a view from the view ?

2009-12-10 Thread Kumar Bibek
simple to do, and you can also manage your code this way. But, Since, at runtime you will be creating so many views, you also might need to do some memory management. Thanks and Regards, Kumar Bibek http://tech-droid.blogspot.com On Dec 10, 3:08 pm, Sierra Bravo sb.in...@gmail.com wrote

[android-developers] Re: Defining width for spinners options.

2009-12-10 Thread Kumar Bibek
Copy the underlying layout xml, and change the width. Now use this changed layout for populating your spinner. Thanks, Kumar Bibek http://tech-droid.blogspot.com On Dec 10, 7:23 pm, mmkr manutd...@gmail.com wrote: Hi,      I am using spinners in my application, but when I click the drop

[android-developers] Re: Defining width for spinners options.

2009-12-10 Thread Kumar Bibek
\android-1.5\data\res\layout \simple_spinner_dropdown_item Change the width of the layout, and use this layout in your code, i.e while specifying the layout for your adapter. Thanks and Regards, Kumar Bibek http://tech-droid.blogspot.com On Dec 10, 9:26 pm, murali raju manutd...@gmail.com wrote

[android-developers] Re: setting image as hyperlink

2009-12-10 Thread Kumar Bibek
Hi, If you know how to use the ImageView, and then write a listener for it, this is fairly simple. In the listener, you can create an Intent with data, and launch it, then the browser will open. Google for the keywords in s, and you will find your answer. Thanks and Regards, Kumar Bibek http

[android-developers] Re: Adding, Editing, Deleting entries in Androids call log

2009-12-16 Thread Kumar Bibek
Hi Donal, This is as good as hacking. I guess, adding a new call log should not be possible. However, deleting them should be possible by using the Content Provider. You need to re-read the documentations, or may be look at the source codes. Kumar Bibek http://tech-droid.blogspot.com On Dec 15

[android-developers] Re: Adding, Editing, Deleting entries in Androids call log

2009-12-17 Thread Kumar Bibek
That's new for me. Thanks for sharing your findings. Regards, Kumar Bibek http://tech-droid.blogspot.com On Dec 17, 2:14 pm, Donal Rafferty draf...@gmail.com wrote: For anyone that comes across this it is possible to do using the call log content provider, you simply use the read and write

[android-developers] Re: MapActivity

2009-12-17 Thread Kumar Bibek
Check your AVD configuration if it has Google APIs. Thanks, Kumar Bibek http://tech-droid.blogspot.com On Dec 18, 9:13 am, Sasikumar.S sasikumar.it1...@gmail.com wrote: Hi, shall we use map application in android2.0?.. I tried to install map application in android1.5 , but it is showing

[android-developers] Re: SQLite image storing problem

2009-12-17 Thread Kumar Bibek
to retrieve it from the db. Quite a few things have to be done for this. Thanks, Kumar Bibek http://tech-droid.blogspot.com On Dec 17, 10:45 am, devi devi.n...@gmail.com wrote: Hai developers,               i have the critical situation.i want  to store the image in DB in android. but i don't know

[android-developers] Re: Error using SDK and AVD Manager

2009-12-17 Thread Kumar Bibek
I guess, you are behind a firewall, and thus this url is getting blocked. Try turning off the firewall, and it should work. Use http Thanks, Kumar Bibek http://tech-droid.blogspot.com On Dec 17, 11:20 am, aurilliance aurillia...@gmail.com wrote: I'm trying to get the android SDK set up on my

[android-developers] Re: BaseAdapter doesn't return position correctly

2009-12-17 Thread Kumar Bibek
public Object getItem(int position) { return position; } this is wrong. you should be returning, mImageIds[position]; Thanks, Kumar Bibek http://tech-droid.blogspot.com On Dec 18, 8:36 am, Binh Nguyen nguyenthanhbinh1...@gmail.com wrote: I custom the BaseAdapter to show

[android-developers] Re: BaseAdapter doesn't return position correctly

2009-12-17 Thread Kumar Bibek
I dont understand the purpose of the textview, since you are not returning it. You are just returning the ImageView, what is the TextView and the captions here for? On Dec 18, 9:45 am, Kumar Bibek coomar@gmail.com wrote: public Object getItem(int position) {             return position

[android-developers] Re: button Click event inside custom listview.... Help!

2009-12-17 Thread Kumar Bibek
Yes, you will have to define the listener inside the Custom adapter, in the getView Method, on the button. Thanks, Kumar Bibek http://tech-droid.blogspot.com On Dec 18, 7:47 am, Abhi abhishek.r.sha...@gmail.com wrote: Hi guys, I have my own custom adapter to create a custom listview

[android-developers] Re: button Click event inside custom listview.... Help!

2009-12-17 Thread Kumar Bibek
If you can post an excerpt of your getView method. I can show you Thanks, Kumar Bibek. On Dec 18, 10:02 am, Abhi abhishek.r.sha...@gmail.com wrote: Hi Kumar, Can you show me how to do that? I am not getting the right method to do this. Thanks, Abhishek On Dec 17, 11:49 pm, Kumar

[android-developers] Re: button Click event inside custom listview.... Help!

2009-12-18 Thread Kumar Bibek
button... those click launche a new activity. On 18 déc, 06:48, Kumar Bibek coomar@gmail.com wrote: If you can post an excerpt of your getView method. I can show you Thanks, Kumar Bibek. On Dec 18, 10:02 am, Abhi abhishek.r.sha...@gmail.com wrote: Hi Kumar, Can you show

[android-developers] Re: Custom control or make the views(buttons) inline?

2009-12-21 Thread Kumar Bibek
Have you looked into TabWidget ?? I guess you should be using that. Thanks and Regards, Kumar Bibek http://tech-droid.blogspot.com On Dec 22, 10:29 am, Samuh samuh.va...@gmail.com wrote: I have a requirement to create a control similar to UITabBar in iPhone, which is to be present on every

[android-developers] Re: Error: exception ViewRoot$CalledFromWrongThreadException - How can I solve this?

2009-12-23 Thread Kumar Bibek
You need to have a handler which will be updating the UI after your thread has done processing. Look at the examples. Regards, Kumar Bibek http://tech-droid.blogspot.com On Dec 24, 8:59 am, Nmix nepean...@gmail.com wrote: On Dec 23, 9:23 pm, Martin google-gro...@digle.de wrote: Here

[android-developers] Re: problem with handlers and activity lifecycle

2009-12-23 Thread Kumar Bibek
You should stop the threads before leaving your activity, perhaps in the onStop or onDestroy method, depending on your requirements. Thanks and Regards, Kumar Bibek http://tech-droid.blogspot.com On Dec 23, 9:00 pm, Pedro Veloso pedro.n.vel...@gmail.com wrote: I've 2 activities in my app. One

[android-developers] Re: Installing a Maps app in to an android device

2009-12-23 Thread Kumar Bibek
Check the configuration of your AVD. If you need maps, you should be using the Google API's configured with your AVD. Thanks and Regards, Kumar Bibek http://tech-droid.blogspot.com On Dec 23, 6:36 pm, deepak deepakraor1...@gmail.com wrote: Hi..! I have created a maps app and i want

[android-developers] Re: Get Web URL

2009-12-23 Thread Kumar Bibek
Check the UriUtils.. Thanks and Regards, Kumar Bibek http://tech-droid.blogspot.com On Dec 23, 4:44 pm, Abhinava Srivastava abhinava...@gmail.com wrote: Hi i have created and application which get invoked from the broswer event.. i.e i have a link on browser say abc://www.abhinava.comor abc

[android-developers] Re: dial a call in the background

2009-12-30 Thread Kumar Bibek
Hi Node, I don't think it is possible. And it shoudn't be. Thanks and Regards, Kumar Bibek http://tech-droid.blogspot.com On Dec 30, 6:16 pm, Node jonas.n...@gmail.com wrote: I am developing an application that at one point displays to the user a text field to insert a phone number and a dial

[android-developers] Re: Lat Long Problem in Broadcast Receiver

2010-01-01 Thread Kumar Bibek
Do you have the correct permissions ?? I little bit og Logcat output will help us a lot... :) Thanks and Regards, Kumar Bibek On Jan 1, 9:13 pm, Nishant nish...@saltriver.com wrote: Hello All, I have developed application which runs when SMS is received. At that time I have started thread

[android-developers] Re: Best HTTP Request Method

2010-01-01 Thread Kumar Bibek
I guess, the default Android's way is the best. Of course, you can add more libraries, but then that would be redundant. I hope Google has already taken care of the performance part. Thanks and Regards, Kumar Bibek On Jan 2, 3:15 am, Frank Weiss fewe...@gmail.com wrote: Considering

[android-developers] Re: Transparent Button

2010-01-02 Thread Kumar Bibek
I guess, the best way to do it, is to write your custom button class. This way, you can also change the clicking background, and other funtionalities. Thanks and Regards, Kumar Bibek On Jan 2, 9:33 am, Sasikumar.S sasikumar.it1...@gmail.com wrote: Thank U On Thu, Dec 31, 2009 at 7:56

[android-developers] Re: Where can I get adds for my application?

2010-01-02 Thread Kumar Bibek
Well, Admob is a good choice. Also, you can try Adsense API by google. Thanks and Regards, Kumar Bibek On Dec 31 2009, 7:13 pm, Martin google-gro...@digle.de wrote: Hi! I want to write a game for the Market. So where can I get adds for it to earn some money (a page like admob.com for example

[android-developers] Re: How to parse html with saxparser (or other solution)

2010-01-02 Thread Kumar Bibek
I guess you need to use a special HTML parse. Since, HTML pages are not well-formed and are not XML compliant, using an XML parser will not serve your purpose. Search for any third party libraries. Thanks and Regards, Kumar Bibek On Jan 2, 8:05 pm, tlegras tleg...@gmail.com wrote: Happy new

[android-developers] Re: Service - how to show its progress in Activity

2010-01-02 Thread Kumar Bibek
If the service is coupled to your UI, I think AsyncTask would be a better solution. Look at the examples for the same. But, if the service is completely separate from the UI, then you have to bind to the service, and then check it's progress. Thanks and Regards, Kumar Bibek On Jan 2, 4:54 pm

[android-developers] Re: Service - how to show its progress in Activity

2010-01-02 Thread Kumar Bibek
, Kumar Bibek On Jan 3, 7:32 am, Molee leehc...@gmail.com wrote: I used to implements the progress of downloading sth in a worker thread, and new a thread when u choose the corresponding option in the menu ( overriding onOptionsItemSelected funciton) yet the UI will be frozen once you choose

[android-developers] Re: HttpPost works with Wifi, not with Mobile...

2010-01-03 Thread Kumar Bibek
Post some logcat log so that it will be clearer. Check the reponse status line. That will provide more information. Thanks and Regards, Kumar Bibek http://tech-droid.blogspot.com On Jan 3, 10:52 pm, p1erstef pierre.stef...@gmail.com wrote: Hi all, I'm trying to use HttpPost to send data

[android-developers] Re: get city name by latitude and longitude

2010-01-03 Thread Kumar Bibek
-getfromlocation Thanks and Regards, Kumar Bibek On Jan 3, 9:25 am, star double doublestar...@gmail.com wrote: Hi, all I am making a weather widget now , and there is a problem that how can I get some city name after getting latitude and longitude from google map. because I think we can't get

[android-developers] Re: java.lang.IllegalArgumentException: Receiver not registered: android.widget.ViewFlipper

2010-01-03 Thread Kumar Bibek
out the exact code. Thanks and Regards Kumar Bibek, On Jan 3, 10:19 am, Shane shanemenchi...@gmail.com wrote: I have a ViewFlipper in my app. When my app is running and the phone goes to sleep it works fine. When I wake the phone up and my app then tries to display again, I get the following

[android-developers] Re: Android SqlLite DB?

2010-01-03 Thread Kumar Bibek
can use the local db that you create on the phone Thanks and Regards, Kumar Bibek On Jan 3, 1:57 am, to...@webpro.com to...@webpro.com wrote: Hi, I am new to the Android Development process and I have on question. Is there a way to access a non local sqlLite server or do the db's have

[android-developers] Re: URGENT- Is SQLiteOpenHelper.onUpgrade() called when installing update from Android Market Place?

2010-01-05 Thread Kumar Bibek
Yes Mark is right, Only if you change the databse version, the onUpgrade method will be called. Thanks and Regards, Kumar Bibek. On Jan 6, 8:16 am, Mark Wyszomierski mar...@gmail.com wrote: I think it is as you described - if you left the database version number the same, then onUpgrade

[android-developers] Re: can write youtube api on android?

2010-01-06 Thread Kumar Bibek
You can report it in the Issue List of YouTube. I guess, you are missing out some dependencies for youtube api. You can check the youtube docs to find out more. Thanks and Regards, Kumar Bibek http://tech-droid.blogspot.com On Jan 6, 2:11 pm, tstanly tsai.sta...@gmail.com wrote: hi all, I

[android-developers] Re: No route to host issue, but Browser application works fine

2010-01-06 Thread Kumar Bibek
For connecting to the localhost of your machine, you should not use 127.0.0.1 You can use the IP instead, or Please read up the docs. http://developer.android.com/guide/developing/tools/emulator.html#networkinglimitations Check for the section.Network Address Space Thanks and Regards, Kumar

[android-developers] Re: Labeling points on a map

2010-01-06 Thread Kumar Bibek
The title and snippet seem to be there for this purpose. I tried to find out about that, but nothing was mentioned in the docs. I guess, these haven't been implemented yet. Thanks and Regards, Kumar Bibek On Jan 7, 6:18 am, TreKing treking...@gmail.com wrote: Unfortunately, no, I don't think

[android-developers] Re: Launching another application through the current application

2010-01-06 Thread Kumar Bibek
You can do this, by triggering an implicit intent, provided the target application is designed to listen to such intents. Please read up the docs. http://developer.android.com/guide/topics/intents/intents-filters.html See Intent Resolution topic. Thanks and Regards, Kumar Bibek On Jan 6, 5:29

[android-developers] Re: market doesn't refresh downloads?

2010-01-08 Thread Kumar Bibek
Now it's fine :) On Jan 8, 1:41 am, Greg Donald gdon...@gmail.com wrote: 2010/1/7 Éva Lovrencsics lovi...@gmail.com: My downloads and installs stopped two days ago, and I don't see any changes on the market (developer console). They never stay the same, so I think, market doesn't

[android-developers] Re: Android Submission Guideline

2010-01-08 Thread Kumar Bibek
. No body will stop you from doing that. But of-course, since it's your product, you would have definitely done all the testing that was possible from your side. Thanks and Regards, Kumar Bibek On Jan 8, 12:34 pm, Amit Mhatre mhatre...@gmail.com wrote: Hi Experts, Can you please suggest if there is any

[android-developers] Re: Spreadsheet of current phones vs screensize/skin and density

2010-01-10 Thread Kumar Bibek
Hi, There's a post on Android Blog regarding this. It's not comprehensive, but it gives you an idea. Hope it helps. http://android-developers.blogspot.com/2009/12/knowing-is-half-battle.html Thanks and Regards, Kumar Bibek http://tech-droid.blogspot.com On Jan 11, 9:24 am, OldSkoolMark m

[android-developers] Re: Error int the eclipse when import Gdata jar

2010-01-10 Thread Kumar Bibek
for the relevant dependencies you need to add. Thanks and Regard, Kumar Bibek http://tech-droid.blogspot.com On Jan 11, 7:16 am, tstanly tsai.sta...@gmail.com wrote: hi all, I was developed for youtube application, so I was import so many jar files in the eclipse, but the eclipse always shows

[android-developers] Re: Version Control

2010-01-10 Thread Kumar Bibek
Hi Barry, You can ignore these files/folders. bin directory. .classpath file All the other files/folder are required. Thanks and Regards, Kumar Bibek http://tech-droid.blogspot.com On Jan 11, 1:49 am, barry barry.drinkwa...@gmail.com wrote: When using Eclipse as an IDE, which files/folders

[android-developers] Re: application reset on tilt

2010-01-10 Thread Kumar Bibek
This is the designed behaviour. If you don't want this feature, you will need to manually disable this. Google for On Rotation Changed Android and you will find your answer. Thanks and Regards, Kumar Bibek http://tech-droid.blogspot.com On Jan 10, 1:02 pm, schnie greg.neihei...@gmail.com wrote

[android-developers] Re: corporate calendar testing needed -help?

2010-01-11 Thread Kumar Bibek
Hey Andrew. Microsoft online has a 30 day evaluation for Exchange 2007 server. You can register there and get upto 20 accounts with all functions free for 30 days. Thanks and Regards, Kumar Bibek http://tech-droid.blogspot.com On Jan 11, 4:40 pm, andrew android andygoldm...@gmail.com wrote

[android-developers] Re: Pop-up without using Toast.

2010-01-11 Thread Kumar Bibek
Use Dialogs... Kumar Bibek http://tech-droid.blogspot.com On Jan 11, 9:35 pm, Klaus Kartou kar...@gmail.com wrote: Hi! I have a service that runs in the background. I´d like to be able to show a message to the user when there is an incomming call. Atm i´m using a Toast, because as far

[android-developers] Re: Using document object

2010-01-11 Thread Kumar Bibek
Do you get anything in the log cat? If there is some exception, log it. Kumar Bibek http://tech-droid.blogspot.com On Jan 12, 2:56 am, nikhil nik...@gmail.com wrote: After the * step it doesnot debug further it skips to next method and loads the view On Jan 11, 2:09 pm, TreKing treking

[android-developers] Re: Calling .net webservice from app?

2010-01-11 Thread Kumar Bibek
If you know the request/response structure, you can create you own requests without using kSoap. The apache Http Client that comes bundled with Android will provide you with everything. Kumar Bibek http://tech-droid.blogspot.com On Jan 12, 1:48 am, Kevin Duffey andjar...@gmail.com wrote

[android-developers] Re: gallery

2010-01-11 Thread Kumar Bibek
Well, I haven't tried it out, but I guess, you need to use the scrollTo or scrollBy method. But creating a complete sync is a difficult task, I guess. Kumar Bibek http://tech-droid.blogspot.com On Jan 11, 4:29 pm, tina lincon tina.theresalin...@wipro.com wrote: Hi, I got 1 doubt

[android-developers] Re: ERROR/AndroidRuntime(703): java.lang.VerifyError

2010-01-11 Thread Kumar Bibek
Some dependencies are missing. Check your library docs to see what other jars you need to include. You can get a clue from you logcat output. It will mention the Classname that it cannot find. Kumar Bibek http://tech-droid.blogspot.com On Jan 11, 2:17 pm, angushir...@googlemail.com angushir

[android-developers] Re: can write youtube api on android?

2010-01-11 Thread Kumar Bibek
Yes, A Java project will work. Android is a stripped down version of JDK. So, in Android, there are a few classes removed on which Youtube API depends. I guess, the awt package, java.awt.datatransfer is missing on Android, and Youtube API uses this class in it's code. Kumar Bibek http://tech

[android-developers] Re: can write youtube api on android?

2010-01-11 Thread Kumar Bibek
Hey, As far as I can remeber, you need to add the following the dependencies. gdata-media.jar mail.jar activation.jar google.collect.jar Kumar Bibek http://tech-droid.blogspot.com On Jan 8, 7:09 am, tstanly tsai.sta...@gmail.com wrote: thanks for your reply, however, I try the same code

[android-developers] Re: Strange action from a webview

2010-01-12 Thread Kumar Bibek
Have you used Linkify ??? Kumar Bibek http://tech-droid.blogspot.com On Jan 12, 6:41 pm, Maps.Huge.Info (Maps API Guru) cor...@gmail.com wrote: I have an app that uses a webview that displays address information in a list format. Occasionally, when scrolling through the data, one

[android-developers] Re: Eclipse compile error

2010-01-12 Thread Kumar Bibek
This is an eclipse problem. Try increasing the memory eclipse. Kumar Bibek http://tech-droid.blogspot.com On Jan 12, 10:43 am, skan95 ska...@hanmail.net wrote: Dear all. I am facing compile error for native Camera package in Eclipse IDE. SDK version is level 7. [2010-01-12 14:25:13 - Dex

[android-developers] Re: Using document object

2010-01-12 Thread Kumar Bibek
Can you share your URL? Is it a local URL, or a public one? Kumar Bibek http://tech-droid.blogspot.com On Jan 12, 9:58 pm, TreKing treking...@gmail.com wrote: I haven't use URL class, not sure if it matters, but maybe try HttpURLConnection

[android-developers] Re: Phonebook Sharing (Google ADC's Top 20) is now Open Source

2010-01-12 Thread Kumar Bibek
Cool! On Jan 12, 10:08 pm, Rafael Fernandes luizraf...@gmail.com wrote: Today is quite a big day to me. After all the work, studies and sleepless nights that I've been through, I've decided to share all that with the community opening the source of Phonebook Sharing. We have been

[android-developers] Re: How to completely remove application

2010-01-12 Thread Kumar Bibek
Well, If you have created some files on the sd card, they will still remain Kumar Bibek http://tech-droid.blogspot.com On Jan 12, 11:41 pm, Mark Murphy mmur...@commonsware.com wrote: fhucho wrote: Hi, I am developing on T-Mobile G1. How do I completely remove my application (database

[android-developers] Re: Feature support in WebKit on Android?

2010-01-12 Thread Kumar Bibek
Well, all the HTML 5 stuff, CSS and JS ECMA standards. No svg, video, enbed tags I guess, Google is still working on the webkit to include new features. Kumar Bibek http://tech-droid.blogspot.com. On Jan 12, 6:28 pm, Sam Dutton sam.dut...@gmail.com wrote: What HTML, CSS and JavaScript

[android-developers] Re: Developing mobily?

2010-01-12 Thread Kumar Bibek
Yup, this would not be quite useful as well... On Jan 13, 12:16 am, Kevin Duffey andjar...@gmail.com wrote: Do you mean actually develop android code on an android device itself? That would require the compilers, some sort of editor... I'd guess most likely not going to happen. Too large to

[android-developers] Re: BroadcastReceiver never getting BOOT_COMPLETED intent

2010-01-12 Thread Kumar Bibek
them in your log cat, then everything is fine. Kumar Bibek http://tech-droid.blogspot.com On Jan 13, 8:13 am, Ian pale.cold.f...@gmail.com wrote: What I see in all my sims when the emulator starts is this pop-up:   process android.process.media is not responding    which I click on wait

[android-developers] Re: Process in Android

2010-01-12 Thread Kumar Bibek
Even I was confused as to why the process should be running even after I exited my app. But then I realized that I dont have to care about that.' Kumar Bibek http://tech-droid.blogspot.com On Jan 13, 9:07 am, Dianne Hackborn hack...@android.com wrote: That is working as intended, as described

[android-developers] Re: Android internal storage - what are the limits?

2010-01-12 Thread Kumar Bibek
As far as I know, till you have space left in the storage(phone/ sdcard), you should be able to extend the DB. I don't exactly know how SQLite works for large dbs. I have never run out of space with my apps. But It's an interesting question though. I would like to know more about it. Kumar Bibek

[android-developers] Re: Diconnecting Phone Call Programatically

2010-01-12 Thread Kumar Bibek
I dont think you can do it due to security reasons. If this were permitted, anyone could write an app to drop all calls the user might be getting. And he would be wondering, why people hang up so soon. :) Kumar Bibek http://tech-droid.blogspot.com On Jan 12, 4:54 pm, Pani panis...@gmail.com

  1   2   3   4   5   6   7   8   9   10   >