Re: [android-developers] Re: How to exit the application..?

2011-01-10 Thread Kumar Bibek
This is going to be disabled in future releases (As far as I know). Kumar Bibek http://techdroid.kbeanie.com http://www.kbeanie.com On Tue, Jan 11, 2011 at 11:03 AM, kavitha b wrote: > Another way is to kill the process explicitly using Application Process Id. > > On Tue, Jan 11, 2

Re: [android-developers] Accessing Facebook photos from the Contacts provider

2011-01-10 Thread Kumar Bibek
contacts is concerned. My best bet would be to do what you have already done. Kumar Bibek http://techdroid.kbeanie.com http://www.kbeanie.com On Tue, Jan 11, 2011 at 9:43 AM, Biosopher wrote: > From what I've read so far, it's not possible to access any of the > photos that F

Re: [android-developers] Save Gestures in pdf format

2011-01-10 Thread Kumar Bibek
Well, Look at the PDF documentation. For you, since it's a very specific format, you might find it easier if you could create the pdf through only Java, i.e, you can create PDF by generating some XML code as per the PDF specifications. Kumar Bibek http://techdroid.kbeanie.com

Re: [android-developers] How to differentiate market download app and non-market application

2011-01-10 Thread Kumar Bibek
I don't think you can, other than breaking into the Market apps database or wherever it stores it info. Kumar Bibek http://techdroid.kbeanie.com http://www.kbeanie.com On Tue, Jan 11, 2011 at 10:15 AM, Jagi wrote: > How to differentiate market download app and non-market app.

Re: [android-developers] Re: How to exit the application..?

2011-01-10 Thread Kumar Bibek
Finish is the recommended way of closing Activites. You should be using only this to exit your Activities. The OS will take care of the Application as a whole. Kumar Bibek http://techdroid.kbeanie.com http://www.kbeanie.com On Tue, Jan 11, 2011 at 7:45 AM, jotobjects wrote: > On Jan 10,

Re: [android-developers] Re: Google Nexus S - Please provide as DEV phone, asap :-)

2011-01-10 Thread Kumar Bibek
CDD Details here http://source.android.com/compatibility/overview.html I believe it should be. Kumar Bibek http://techdroid.kbeanie.com http://www.kbeanie.com On Tue, Jan 11, 2011 at 3:06 AM, Leon Moreyn-Android Development < lmor...@earthcam.com> wrote: > Can you provide more deta

[android-developers] Re: Import source code into Eclipse

2011-01-10 Thread Kumar Bibek
Google on how to use HG plugin in eclipse. You will get step by step instructions on how to do that. On Jan 6, 3:37 am, gab1972 wrote: > I'm trying to import the source code provided here: (http:// > code.google.com/p/foursquared/) into Eclipse.  There are instructions > that say, "Get a local co

[android-developers] Re: ADT plugin for Eclipse under Rational Application Developer 8.0

2011-01-10 Thread Kumar Bibek
There might be conflicts between the packages and/or classnames. The documentation doesn't say that it's compatible with any other IDE other than some variations of eclipse. (Even the helios is not fully supported). So, instead of banging your head, please use the correct IDE and it will work like

[android-developers] Re: change color of DatePickerDialog widget

2011-01-10 Thread Kumar Bibek
>From the documentation, I couldn't find an easy way to do this. The theme, will only change things, that it declares. So, to change the colors, you might have to dig deep into the DatePickerDialog source code. But, I think, an easier way to do this is to create your own DatePickerDialog by extend

[android-developers] Re: writing an Authenticator to use with AccountManager

2011-01-10 Thread Kumar Bibek
Which example are you following, and what are your exact problems? On Jan 7, 11:05 pm, John Lussmyer wrote: > Is there a tutorial on how to write an Account Authenticator? > I'm working from the one example I've found, SampleSyncAdapter, and having a > lot of trouble understanding what the actual

[android-developers] Re: Code Assist still Slow

2011-01-10 Thread Kumar Bibek
I guess you should stop using Helios. I came across a bunchful of issues with the current release for Android development. On Jan 8, 4:31 am, Dan wrote: > After upgrading to ADT 8.0.1 with Eclipse Helios (3.6.1) I am still > getting freezes with code assist. Does anyone have any ideas to fix or >

[android-developers] Re: What is the name of this widget?

2011-01-10 Thread Kumar Bibek
The reason why a NumberPicker is not public or a part of the SDK is perhaps because it's not a widely used widget. If it were, it would have been a part of the SDK, and the widget would have been public. IMO. There might be other reasons as well, but this seems to be the most obvious reason. Remem

[android-developers] Re: NoClassDefFoundError when starting an AIDL service

2011-01-10 Thread Kumar Bibek
Just a doubt. Is your second project (which is used by the first) a library project? In that case, it should work. On Jan 9, 10:08 pm, Lazarus 101 wrote: > I have two projects, the first one has the aidl files and other > classes that will be shared with the client aps, and the second one > has t

[android-developers] Re: does a handler prevents memory leaks???

2011-01-10 Thread Kumar Bibek
Well, if you don't handle that, it will leak. Preferably, you should be passing the application's context and not the activity's context. Since, Activity's context depends on the state of the particular activity, and the context you are probably interested in inside the Worker thread is most of the

Re: [android-developers] JDK 5 problem

2011-01-10 Thread Kumar Bibek
Whats the error? Kumar Bibek http://techdroid.kbeanie.com http://www.kbeanie.com On Mon, Jan 10, 2011 at 11:04 PM, peeyush varshney < varshney.peey...@gmail.com> wrote: > Dear All, > > sun-java5-jdk is not getting installed in ubuntu 10.04. how to make it > possible. > &

Re: [android-developers] Re: How to exit the application..?

2011-01-09 Thread Kumar Bibek
Calling finish, essentially exits your app. Whatever you need to initialize for your next start of your application, can be againd done in the onCreate or onResume method. Kumar Bibek http://techdroid.kbeanie.com http://www.kbeanie.com 2011/1/10 dilu > I know the andr

Re: [android-developers] Re: How to exit the application..?

2011-01-09 Thread Kumar Bibek
There is no concept of Exiting an application. You app should just call finish whenever you want to close your app. Kumar Bibek http://techdroid.kbeanie.com http://www.kbeanie.com On Mon, Jan 10, 2011 at 12:12 PM, dilu wrote: > Even I tried with System.exit(0). > But its not worki

Re: [android-developers] resource not found when building application for passion

2011-01-09 Thread Kumar Bibek
I guess you are using some images/resources from the SDK. If the particular resource is not available on the device's build, you would get this error. Kumar Bibek http://techdroid.kbeanie.com http://www.kbeanie.com On Mon, Jan 10, 2011 at 8:57 AM, raja wrote: > Hi, > I

Re: [android-developers] Re: Change the background of an AppWidget

2011-01-09 Thread Kumar Bibek
will shrink it to fit. I can't think of any other approach. Kumar Bibek http://techdroid.kbeanie.com http://www.kbeanie.com On Sun, Jan 9, 2011 at 5:32 PM, Mark wrote: > >setBitmap() > I think I tried that already, but it's the same problem as using it > with file UR

Re: [android-developers] Re: Change the background of an AppWidget

2011-01-09 Thread Kumar Bibek
I am not sure, but have you tried this method? http://developer.android.com/reference/android/widget/RemoteViews.html#setBitmap%28int,%20java.lang.String,%20android.graphics.Bitmap%29 Kumar Bibek http://techdroid.kbeanie.com http://www.kbeanie.com On Sun, Jan 9, 2011 at 5:21 PM, Mark wrote

Re: [android-developers] Re: Change the background of an AppWidget

2011-01-09 Thread Kumar Bibek
Oh, sorry about that. I missed those few lines. In that case, you might try setting the scale type of the image view to perhaps fitXY. But I guess, you would have tried that too. Any problems with that? Kumar Bibek http://techdroid.kbeanie.com http://www.kbeanie.com On Sun, Jan 9, 2011 at 5

Re: [android-developers] Re: Change the background of an AppWidget

2011-01-09 Thread Kumar Bibek
9 patch pngs should solve you problem, if I understand your problem correctly. Kumar Bibek http://techdroid.kbeanie.com http://www.kbeanie.com On Sun, Jan 9, 2011 at 3:51 PM, Pent wrote: > I have a similar problem, would be nice if there was a standard way to > query the launcher f

Re: [android-developers] What is the name of this widget?

2011-01-09 Thread Kumar Bibek
This widget is not available in the Android SDK. You have to create your own, or try to find out if someone else has already created one. Kumar Bibek http://techdroid.kbeanie.com http://www.kbeanie.com On Sun, Jan 9, 2011 at 3:28 PM, MerlinBG wrote: > Hi, as the title says: I would like

Re: [android-developers] Current state of PUSH notifications for apps?

2011-01-08 Thread Kumar Bibek
C2DM is only available for 2.2 and up. There is no direct way, or already cooked up apis in older versions which you can use. Kumar Bibek http://techdroid.kbeanie.com http://www.kbeanie.com On Sat, Jan 8, 2011 at 9:18 PM, John Lussmyer wrote: > I'm looking at an app where I will rea

[android-developers] Re: How to stop ADB server

2011-01-08 Thread Kumar Bibek
What do you mean by dynamically? From inside an app? What would you try to do that? Anyway, to shut down the adb server, you just have to use this commands adb kill-server adb start-server These are command line tools available for you to interact with adb. On Jan 7, 10:42 am, b_hirawat wrote:

[android-developers] Re: What type of messaging would you use?

2011-01-08 Thread Kumar Bibek
Well, for reliable working, I think it would be best to use multiple channels. SMS, cloud and local network(wireless or LAN), one of these when the others are not available. On Jan 8, 3:52 am, Nathan wrote: > A client might have a use case for peer to peer or group sharing of > location. > > Inte

Re: [android-developers] How to interrupt a blocking I/O operation?

2011-01-07 Thread Kumar Bibek
@Kostya: The execute method is blocked till the server sends a request. Closing the input stream will not help in this situation. Kumar Bibek http://techdroid.kbeanie.com http://www.kbeanie.com On Fri, Jan 7, 2011 at 10:44 PM, Kostya Vasilyev wrote: > You could try closing the input str

Re: [android-developers] How to interrupt a blocking I/O operation?

2011-01-07 Thread Kumar Bibek
es of HttpRequestBase class which has an abort method. May that would help. Another way, might be to specify the timeout to a few seconds. :) Kumar Bibek http://techdroid.kbeanie.com http://www.kbeanie.com On Fri, Jan 7, 2011 at 10:37 PM, ivan wrote: > I'm wondering what the currently sug

Re: [android-developers] Launching an application from a email. Is that possible?

2011-01-07 Thread Kumar Bibek
I think yes. http://thinkandroid.wordpress.com/2010/02/02/custom-intents-and-broadcasting-with-receivers/ But if it will work on the gmail app, or any other app is a question that I am not sure of (but most probably you should be able to do this). Kumar Bibek http://techdroid.kbeanie.com http

Re: [android-developers] How to Change Screen Resolution Programmatically?

2011-01-07 Thread Kumar Bibek
gle > 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 options, visit this group at >

Re: [android-developers] When is an app movable to sd card?

2011-01-07 Thread Kumar Bibek
Your device should be on 2.2 and up. And your application should explicitly say if it is movable or not. Kumar Bibek http://techdroid.kbeanie.com http://www.kbeanie.com On Fri, Jan 7, 2011 at 4:29 PM, Stephan Wiesner wrote: > Hi, > what do I have to do in order for my app to be "

Re: [android-developers] HTTPS POST problem

2011-01-07 Thread Kumar Bibek
A few messages back, I had given a link to a sample project which uses HttpClient for https requests. https://github.com/coomar2841/PTracker/tree/master/src/com/beanie/ptrack/web Kumar Bibek http://techdroid.kbeanie.com http://www.kbeanie.com On Fri, Jan 7, 2011 at 2:22 PM, Filiz Gökçe

Re: [android-developers] Missing developer console comments

2011-01-06 Thread Kumar Bibek
Yeah, a few of mine have also disappeared. But frankly speaking, I don't really care now. Kumar Bibek http://techdroid.kbeanie.com http://www.kbeanie.com On Fri, Jan 7, 2011 at 12:24 AM, Josh wrote: > I logged into the developer console this morning to find that comments > for

Re: [android-developers] how to makes two activities run at the same time?

2011-01-06 Thread Kumar Bibek
Sorry if I misunderstood your question. Kumar Bibek http://techdroid.kbeanie.com http://www.kbeanie.com On Wed, Jan 5, 2011 at 12:11 PM, john wrote: > l want to simulate user operation,for example: > l was listening music, and l want to take picture, > that's two activities, ho

Re: [android-developers] Uninstall Apps automatically by drag and drop in Trash

2011-01-06 Thread Kumar Bibek
There is no such thing. In android, the icons on the home screen or the application lists are more like shortcuts and not the whole applications. It's different from Macs, iPhones, and iPads. :) Kumar Bibek http://techdroid.kbeanie.com http://www.kbeanie.com On Thu, Jan 6, 2011 at 1:

Re: [android-developers] Re: Reusing the +/- number spinner from TimePickerDialog?

2011-01-06 Thread Kumar Bibek
Dig in the source code. What do you mean by public here? http://www.google.com/codesearch/p?hl=en#uX1GffpyOZk/core/java/android/widget/NumberPicker.java&q=NumberPicker%20android%20java&sa=N&cd=1&ct=rc Use Google code search. Kumar Bibek http://techdroid.kbeanie.com http://www.k

Re: [android-developers] Prevent application - after Factory Data reset

2011-01-06 Thread Kumar Bibek
Duplicate question. Kumar Bibek http://techdroid.kbeanie.com http://www.kbeanie.com On Thu, Jan 6, 2011 at 1:44 PM, Hareef wrote: > Factory Data reset will remove everything and uninstall the third > party apps > So, how can i prevent my app getting uninstalled? > > Than

Re: [android-developers] Factory data reset - install app

2011-01-06 Thread Kumar Bibek
Nope. Wouldn't that change the meaning of Factory Reset? :) Kumar Bibek http://techdroid.kbeanie.com http://www.kbeanie.com On Thu, Jan 6, 2011 at 1:44 PM, Hareef wrote: > Anyway to install App automatically when doing Factory Data Reset? > > Thanks in Advance > > --

Re: [android-developers] Change won't take place until click

2011-01-06 Thread Kumar Bibek
You didn't explain your problem clearly, and no body has the time to go through 1000 lines (may be more) of code. Please clearly state your problem. Which EditText . Click on What? Kumar Bibek http://techdroid.kbeanie.com http://www.kbeanie.com On Thu, Jan 6, 2011 at 8:00 AM, Swang

Re: [android-developers] Getting my Android App (apk) into the Market

2011-01-06 Thread Kumar Bibek
Of course it's possible, as long as you abide by the TOS of the Android market. :) Kumar Bibek http://techdroid.kbeanie.com http://www.kbeanie.com On Wed, Jan 5, 2011 at 4:26 PM, Crowoy wrote: > I have recently created a blog (crowoyandroid.blogspot.com) and after > that I create

Re: [android-developers] New mobile number | Neue Handynummer

2011-01-06 Thread Kumar Bibek
Let's call him up and find out. Each one of us :D Kumar Bibek http://techdroid.kbeanie.com http://www.kbeanie.com On Tue, Jan 4, 2011 at 8:43 PM, Bo Ma wrote: > who the hell are you > > 2011/1/4 Simon Broenner > >> Hi everyone, >> >> As of today, I&

Re: [android-developers] Re: Making a video of your app running

2011-01-06 Thread Kumar Bibek
Look here... http://code.google.com/p/androidscreencast/ It can record from emulator and devices as well.. Kumar Bibek http://techdroid.kbeanie.com http://www.kbeanie.com On Thu, Jan 6, 2011 at 7:50 PM, gcstang wrote: > Jing possibly? > > It's free and works pretty

[android-developers] Re: Android intent image/jpeg

2011-01-06 Thread Kumar Bibek
Thats a Twitter problem then. It would be better if you leave this choice to the user. On Jan 6, 9:11 am, subrat wrote: > I want to  exclude it because the photo is not getting uploaded to > twitter as it requires twitpic to upload so i have a devloped a custom > interface to post images to twitt

[android-developers] Re: Remove app widget from picker list

2011-01-06 Thread Kumar Bibek
I don't think it's possible. But I am not 100% sure. On Jan 6, 12:36 am, Pent wrote: > I would like to dynamically add and remove the possibility to select > one of my app widgets from the launcher picker list. > > I thought it would be simple, disable the relevant receiver (provider) > and activ

Re: [android-developers] Re: Create Folder for Specific SMSes

2011-01-06 Thread Kumar Bibek
No you cant. The SMS apis is not public, specifically those related to their storage. Morever, smses are stored in a table and not in a folder structure. Kumar Bibek http://techdroid.kbeanie.com http://www.kbeanie.com On Thu, Jan 6, 2011 at 6:53 PM, Alok Kulkarni wrote: > Any answ

Re: [android-developers] Upgrade of sqlite database

2011-01-06 Thread Kumar Bibek
Server? What server? The ideal way to do this is to upgrade your application. Change the Database Version and write the code to change your DB structure in the onUpgrade method. I have no clue what role does the server has to play here. Kumar Bibek http://techdroid.kbeanie.com http

Re: [android-developers] How to use Android documentation ?

2011-01-06 Thread Kumar Bibek
ere on the web. Kumar Bibek http://techdroid.kbeanie.com http://www.kbeanie.com On Thu, Jan 6, 2011 at 5:08 PM, Yahel wrote: > Hi guys, > > I'm facing a productivity problem with Android. Basically, I can do > whatever I want with the framework, I always find out a solution t

Re: [android-developers] Problem with application launch on emulator

2011-01-06 Thread Kumar Bibek
Its the same as it is on the emulator. Kumar Bibek http://techdroid.kbeanie.com http://www.kbeanie.com On Thu, Jan 6, 2011 at 3:11 PM, Ajay Prabandham wrote: > Hi, > Actually, i am first attempting to test my app on the SDK > emulator. I haven't yet tested it on

Re: [android-developers] Re: Disable Antenna

2011-01-05 Thread Kumar Bibek
I have been dying to ask this question. What's an OP? But didn't ask, becoz I thought I will be laughed at. But since you guys are already laughing, can someone tell me what's an OP? :) Kumar Bibek http://techdroid.kbeanie.com http://www.kbeanie.com On Wed, Jan 5, 2011 at 1

Re: [android-developers] Unknown application a large number of SMS messages are being sent. Select "OK" to continue, or "Cancel" to stop sending

2011-01-05 Thread Kumar Bibek
More information would be helpful. Kumar Bibek http://techdroid.kbeanie.com http://www.kbeanie.com On Wed, Jan 5, 2011 at 5:16 PM, Marcin Orlowski wrote: > On 5 January 2011 07:43, Jawwad Farooq wrote: > > > Please help me as I am stuck at this point and the project deadline is

Re: [android-developers] 3d Button

2011-01-05 Thread Kumar Bibek
There is no such thing as a 3D button. You can give a normal button a 3D appearance. Thats it. for this, obviously, you will have to change the background of the button. Kumar Bibek http://techdroid.kbeanie.com http://www.kbeanie.com On Wed, Jan 5, 2011 at 4:02 PM, pramod.deore wrote: >

Re: [android-developers] Re: webview show map problem?help me

2011-01-04 Thread Kumar Bibek
What is the problem? Kumar Bibek http://techdroid.kbeanie.com http://www.kbeanie.com On Wed, Jan 5, 2011 at 12:17 PM, Stephan Wiesner wrote: > > What is your error? > > Greetings from lucerne, > Stephan > > On 5 Jan., 00:20, CaryWang wrote: > > I try we

Re: [android-developers] Can't Uninstall

2011-01-04 Thread Kumar Bibek
Oh, That part I had forgotten. Hmm, weird. Kumar Bibek http://techdroid.kbeanie.com http://www.kbeanie.com On Wed, Jan 5, 2011 at 7:11 AM, Dianne Hackborn wrote: > If you go to Settings > Manage Applications, that is not part of Market at > all. In that case the button would be g

Re: [android-developers] Can't Uninstall

2011-01-04 Thread Kumar Bibek
Any information on the devices or OS version? I suspect, its a problem with the market app. They have been pushing updates to this behind the scenes. Kumar Bibek http://techdroid.kbeanie.com http://www.kbeanie.com On Wed, Jan 5, 2011 at 3:17 AM, nextgen wrote: > In the last couple of week

Re: [android-developers] Programmatically Access Google Docs

2011-01-04 Thread Kumar Bibek
http://code.google.com/apis/documents/ Google Docs API. Thats the best you can get. I am not very sure about the editing part, but other things are possible with this API Kumar Bibek http://techdroid.kbeanie.com http://www.kbeanie.com On Mon, Jan 3, 2011 at 9:17 AM, Thomas wrote: > Co

Re: [android-developers] How does Microsoft Outlook sync between PC and adroid device works

2011-01-04 Thread Kumar Bibek
Outlook has well defined protocols that allow such kind of syncrhonisation. I don't know the file name, but It would be better if you could first have a look at MS outlooks implementations and specifications. Kumar Bibek http://techdroid.kbeanie.com http://www.kbeanie.com On Mon, Jan 3,

Re: [android-developers] I`m want to control my android phone with remote computer.

2011-01-04 Thread Kumar Bibek
Well, there are no APIs that directly support these type of communications. You have to think of and first decide what approach you need. Kumar Bibek http://techdroid.kbeanie.com http://www.kbeanie.com On Mon, Jan 3, 2011 at 6:57 AM, Choohyoung Lee wrote: > I`m making a plan for developin

Re: [android-developers] i need any real time video streaming sample code

2011-01-04 Thread Kumar Bibek
Google it. :) Kumar Bibek http://techdroid.kbeanie.com http://www.kbeanie.com On Tue, Jan 4, 2011 at 9:28 AM, roshan wrote: > Hi, > > Im doing master degree and my project name is real time video > streaming through wifi and i need any sample code > > > thanks

Re: [android-developers] Android syntax problem

2011-01-04 Thread Kumar Bibek
Just a doubt. Are you new to Java? If yes, then first you need to learn that. If no, then you could easily figure out the problem. Kumar Bibek http://techdroid.kbeanie.com http://www.kbeanie.com On Mon, Jan 3, 2011 at 11:07 PM, brahadeesh wrote: > 0 down vote favorite > > > Hi

Re: [android-developers] I want to an application which start on boot up time

2011-01-04 Thread Kumar Bibek
Write a receiver which listens to the BOOT Broadcast. A simple google search would give you atleast 10 examples. Here is one http://www.androidcompetencycenter.com/2009/06/start-service-at-boot/ Kumar Bibek http://techdroid.kbeanie.com http://www.kbeanie.com On Tue, Jan 4, 2011 at 12:58 PM

Re: [android-developers] Re: Unable to run DDMS, failed to get adb version

2011-01-04 Thread Kumar Bibek
Yeah, and the draw9patch tool now has a swingworker library dependency. :) Kumar Bibek http://techdroid.kbeanie.com http://www.kbeanie.com On Mon, Jan 3, 2011 at 10:05 PM, dburns wrote: > Yeah, they moved adb and forgot to tell anyone. You'll find it in a > sibling directory

Re: [android-developers] How to get the accesss on /data/misc/vpn folder (Permission denied)?

2011-01-04 Thread Kumar Bibek
Some folders will always be private. You cannot just hack into those folders without rooting your phone. In short, there is no way. Kumar Bibek http://techdroid.kbeanie.com http://www.kbeanie.com On Tue, Jan 4, 2011 at 3:18 PM, ADPool wrote: > Hell everyone, > > I am work

Re: [android-developers] Start an activity form a class without extending Activity

2011-01-04 Thread Kumar Bibek
In any view class, you would have a context object. Use that context object and then call the method startActivity. To get the context, use getContext() Kumar Bibek http://techdroid.kbeanie.com http://www.kbeanie.com On Tue, Jan 4, 2011 at 11:26 PM, flix wrote: > Hello, > (sorry

Re: [android-developers] File Retriving

2011-01-04 Thread Kumar Bibek
Whats the problem in this? As far as i can see, you are doing it right. May be just remove the file:// from the beginning. I am not sure, but one of them will definitely work. Kumar Bibek http://techdroid.kbeanie.com http://www.kbeanie.com On Tue, Jan 4, 2011 at 11:43 PM, rakshith raj wrote

Re: [android-developers] Re: How to play youtube videos within custom android activity

2011-01-04 Thread Kumar Bibek
Yeah, but it wont play on all phones though, which don't have flash. Kumar Bibek http://techdroid.kbeanie.com http://www.kbeanie.com On Tue, Jan 4, 2011 at 8:20 PM, Sudheer wrote: > You can create a custom Activity with a Webview on it. You can load > the youtube on the webview.

Re: [android-developers] List of command

2011-01-04 Thread Kumar Bibek
Use ListView. There are plenty of examples on ListViews and Dialogs. Kumar Bibek http://techdroid.kbeanie.com http://www.kbeanie.com On Wed, Jan 5, 2011 at 12:26 AM, Gioacchino wrote: > How do I create a text list, which if clicked create Dialog? > > -- > You received this message

Re: [android-developers] Sessions in android

2011-01-04 Thread Kumar Bibek
Sure. But I guess you haven't yet started coding. Once you start you will figure out for yourself. Kumar Bibek http://techdroid.kbeanie.com http://www.kbeanie.com On Mon, Jan 3, 2011 at 10:48 PM, jp wrote: > Is it possible to create session in android for my web appliction(for >

Re: [android-developers] Re: Starting email client with html pre-compiled code

2011-01-04 Thread Kumar Bibek
Simple html is fine, but you won't be able to embed images this way. Inline images, I mean On 04-Jan-2011 6:08 PM, "Sohil" wrote: Try this, final Intent emailIntent = new Intent(android.content.Intent.ACTION_SEND); emailIntent.setType("text/html"); emailIntent.putExtra(android.content.Intent

Re: [android-developers] can not find draw9patch.jar after updating to 2.3

2011-01-03 Thread Kumar Bibek
You need to download the dependent jar file and add to your classpath. Search and download swingworker jar. This should have been documented, since this is a new thing that came up with the new ADT tools. Kumar Bibek http://techdroid.kbeanie.com http://www.kbeanie.com On Tue, Jan 4, 2011 at 1

[android-developers] Re: Need Android Service suggestions

2011-01-03 Thread Kumar Bibek
Alarm manager is the best option. On Jan 4, 9:33 am, Jacob wrote: > Hi all > > My requirement: > > Need some piece of code executing every 5 minutes (no UI). This code > needs to access server thru internet and get some data and use them on > the device. This code is not heavy weight. Just light

[android-developers] Re: How to play youtube videos within custom android activity

2011-01-03 Thread Kumar Bibek
You need to understand first that youtube videos are generally in flv format, and the SDK doesn't provide default decoders or apis to handle such media. If you have to create your own player, then you have the tough task of converting the flv files to other supported media and then continue. On Ja

Re: [android-developers] Debug Certificate Expired

2010-12-28 Thread Kumar Bibek
Delete the keystore from your system. It will create a new one for you Kumar Bibek http://techdroid.kbeanie.com http://www.kbeanie.com On Tue, Dec 28, 2010 at 9:32 PM, Kevin Brooks wrote: > On a sample project, I am receiving an error that the Debug Certificate has > Expired. How do I

Re: [android-developers] Scaling Down

2010-12-22 Thread Kumar Bibek
WebView has a property called setInitialScale. You can try that. Kumar Bibek http://techdroid.kbeanie.com http://www.kbeanie.com On Thu, Dec 23, 2010 at 11:19 AM, cuil yahoo wrote: > What i mean is my HTML Content comes haphazardly, all the icons in it seems > to have converged. The UI

Re: [android-developers] Re: Portrait and Landscape in Emulator

2010-12-22 Thread Kumar Bibek
A simple google search could have given you enough info. Ctrl+F11 wont work on a MAC :) Kumar Bibek http://techdroid.kbeanie.com http://www.kbeanie.com On Thu, Dec 23, 2010 at 10:20 AM, Nidhi Sunil wrote: > > Hi, > > Press Ctrl+F11. > > On Dec 23, 9:46 am, cuil yahoo

Re: [android-developers] Re: resultCode in onActivityResult returns 0

2010-12-22 Thread Kumar Bibek
Well, that you will have to decide. If there can be multiple selections, then I would expect a button called "Done" which the user has to press when he is done selecting. Kumar Bibek http://techdroid.kbeanie.com http://www.kbeanie.com On Thu, Dec 23, 2010 at 8:41 AM, pramod.d

Re: [android-developers] Re: resultCode in onActivityResult returns 0

2010-12-22 Thread Kumar Bibek
If you are using a list view, then try onItemClickListener. Kumar Bibek http://techdroid.kbeanie.com http://www.kbeanie.com On Wed, Dec 22, 2010 at 4:23 PM, pramod.deore wrote: > Hey Bibek Thanks. > > Try this. On a specific event, set the result and just call finish. That >

Re: [android-developers] resultCode in onActivityResult returns 0

2010-12-22 Thread Kumar Bibek
YEah, Why are you calling finish from onPause method? It will finish you application, even when you would not want it to. Try this. On a specific event, set the result and just call finish. That should do. Kumar Bibek http://techdroid.kbeanie.com http://www.kbeanie.com On Wed, Dec 22, 2010

Re: [android-developers] My App should get information of every Http Get.

2010-12-19 Thread Kumar Bibek
Well, I don't think it's possible. Kumar Bibek http://techdroid.kbeanie.com http://www.kbeanie.com On Mon, Dec 20, 2010 at 12:32 PM, chetan wrote: > Hi guys, >Wish you all Merry Christmas and Happy New Year in > advance. > I am planning to m

Re: [android-developers] Free version of paid app

2010-12-10 Thread Kumar Bibek
Yes to both your questions. Apart from the package name constraint, there are none. Kumar Bibek http://techdroid.kbeanie.com http://www.kbeanie.com On Sat, Dec 11, 2010 at 12:50 AM, Viktor Linder wrote: > I recently published a game ("Deep Dagger" / http://www.gearupgames.se, &

Re: [android-developers] Re: ArrayList example

2010-12-10 Thread Kumar Bibek
What exactly do you mean by that? Anything can be taken into an ArrayList. Kumar Bibek http://techdroid.kbeanie.com http://www.kbeanie.com On Fri, Dec 10, 2010 at 11:02 PM, abhishek wrote: > > > On Dec 10, 10:27 pm, Kumar Bibek wrote: > > This is not the right place to ask th

Re: [android-developers] ArrayList example

2010-12-10 Thread Kumar Bibek
This is not the right place to ask this. Do a simple Google search, and you will find loads of them. Sorry. Kumar Bibek http://techdroid.kbeanie.com http://www.kbeanie.com On Fri, Dec 10, 2010 at 10:55 PM, abhishek wrote: > please can any one please send asimple arraylist example ?? >

Re: [android-developers] 3d flip between two views

2010-12-10 Thread Kumar Bibek
http://www.inter-fuser.com/2009/08/android-animations-3d-flip.html Try this. Kumar Bibek http://techdroid.kbeanie.com http://www.kbeanie.com On Fri, Dec 10, 2010 at 5:04 PM, ping wrote: > Hello, > Is there an easy way to perform a 3d flip animation (on the x-axis) > between two vi

Re: [android-developers] Re: What Tablet would you get

2010-12-08 Thread Kumar Bibek
Yep. For windows, it should normally install the drivers itself. For linux, you have to do that extra bit of work. For Mac, it just works.. Kumar Bibek http://techdroid.kbeanie.com http://www.kbeanie.com On Wed, Dec 8, 2010 at 10:54 PM, Brill Pappin wrote: > Thats on Linux where you need

Re: [android-developers] Improvement of existing Android App - Setting

2010-12-08 Thread Kumar Bibek
You have to checkout the whole source code I guess, or atleast it's dependencies. Kumar Bibek http://techdroid.kbeanie.com http://www.kbeanie.com On Wed, Dec 8, 2010 at 5:51 AM, Yu wrote: > Hi, > > I would like to improve exisiting functions of android - setting. > I hav

Re: [android-developers] Repacking a .apk file

2010-12-08 Thread Kumar Bibek
I don't think so. Kumar Bibek http://techdroid.kbeanie.com http://www.kbeanie.com On Wed, Dec 8, 2010 at 11:44 AM, TigerFox wrote: > Hi all, > > Forgive my ignorance, I would just like to ask if it possible for me > to repack (unpack and pack the binaries again and sig

Re: [android-developers] Eclipse ADT 8.0.0 (and 8.0.1) problem - can't create views hierarchy with drag and drop in the Outline view

2010-12-07 Thread Kumar Bibek
Yep they are gone. Perhaps, we are now supposed to do drag and drop. "+" "-" signs were helpful though. Kumar Bibek http://techdroid.kbeanie.com http://www.kbeanie.com On Wed, Dec 8, 2010 at 1:22 PM, oriharel wrote: > Before the newest version I was able to create hie

Re: [android-developers] How to which function is calling a function at runtime?

2010-12-06 Thread Kumar Bibek
What's your question? Kumar Bibek http://techdroid.kbeanie.com http://www.kbeanie.com On Tue, Dec 7, 2010 at 10:20 AM, Frank Weiss wrote: > As I recall, in Java there's a way to do this by throwing an exception and > catching it. The Exception object is supposed to allow y

Re: [android-developers] Re: ADT 8 doesn't include ADB??

2010-12-06 Thread Kumar Bibek
On Dec 6, 10:11 am, Kumar Bibek wrote: > You have to change the path to /pla... > Kumar Bibekhttp://techdroid.kbeanie.comhttp://www.kbeanie.com > > > > On Mon, Dec 6, 2010 at 11:39 PM, mitch wrote: > > So i upgraded to ADT... > > android-developers+unsubscr...@google

Re: [android-developers] ADT 8 doesn't include ADB??

2010-12-06 Thread Kumar Bibek
You have to change the path to /platform-tools . The adb tool is moved to this folder. Kumar Bibek http://techdroid.kbeanie.com http://www.kbeanie.com On Mon, Dec 6, 2010 at 11:39 PM, mitch wrote: > So i upgraded to ADT v8 and now my ADB is gone, did i do something > wrong? >

Re: [android-developers] Re: column '_id' does not exist

2010-12-02 Thread Kumar Bibek
You cannot in this case. This is a mandatory requirement. "pramod.deore" wrote: >Hi Bibek, Thanks for reply. But my table RoomTable have only three >columns, RoomID, RoomName, and RoomSuffix. It doesn't have _id field. >Then how to use Cursor Adapter here. > >O

Re: [android-developers] column '_id' does not exist

2010-12-02 Thread Kumar Bibek
Cursor Adapters require the table to have a _id field. Else, you would get this exception. Kumar Bibek http://techdroid.kbeanie.com http://www.kbeanie.com On Fri, Dec 3, 2010 at 11:15 AM, pramod.deore wrote: > Hi Everyone, > > I have a table and I want to retrieve one column (RoomN

Re: [android-developers] Update database

2010-12-02 Thread Kumar Bibek
What is the error?? Kumar Bibek http://techdroid.kbeanie.com http://www.kbeanie.com On Thu, Dec 2, 2010 at 4:54 PM, pramod.deore wrote: > Hi, I have a table with 5 columns. > 1. RoomID > 2. RoomName > 3.RoomSuffix > 4. SwitchID > 5. SwitchName > > I have some data in t

Re: [android-developers] getView what the arguments means?

2010-12-01 Thread Kumar Bibek
Look at some examples and videos from Romain. http://www.youtube.com/watch?v=wDBM6wVEO70 Kumar Bibek http://techdroid.kbeanie.com http://www.kbeanie.com On Wed, Dec 1, 2010 at 11:52 PM, kiros88 wrote: > so basically im trying to figure out what "View convertView" means >

Re: [android-developers] how to review the app inside the app ; need not to go android market to rate app

2010-11-30 Thread Kumar Bibek
I don't think it's possible, if you are thinking that the in-app review should reflect the reviews on the Android market as well. Kumar Bibek http://techdroid.kbeanie.com http://www.kbeanie.com On Wed, Dec 1, 2010 at 10:03 AM, Shalini wrote: > Hi > > I have created an and

Re: [android-developers] Re: Geocoder throwing exception

2010-11-30 Thread Kumar Bibek
That's not under your control On 01-Dec-2010 8:16 AM, "kiran" wrote: Can we start Geocoding server through application On Dec 1, 3:23 am, TreKing wrote: > On Tue, Nov 30, 2010 at 3:04 PM, ip332 wrote: > > As we know Google map is s... > TreKing

[android-developers] Re: Why my apps can't be searched out by some phone model?

2010-11-30 Thread Kumar Bibek
1. Have you taken care of "Adding multiple screen size support"? 2. Do you use Copy protection?' 3. Do you filter your apps by country? (Least possible) On Nov 28, 6:20 pm, john h wrote: > Some Italy users reported that some of my applications can't be > searched out in Android Market. It's ver

[android-developers] Re: What's the best way to have your app 'sleep' for N milliseconds?

2010-11-30 Thread Kumar Bibek
Whatever the case is, you cannor prevent the user to press the Home key to display the Homescreen, right? If you don't care about the Home button, then I guess, an Activity or a dialog should be fine. On Nov 30, 8:50 pm, Emanuel Moecklin <1gravity...@gmail.com> wrote: > The Thread.sleep(1000) is p

Re: [android-developers] Twitter Integration with Android app

2010-11-30 Thread Kumar Bibek
Try Twiiter4J library. Kumar Bibek http://techdroid.kbeanie.com http://www.kbeanie.com On Tue, Nov 30, 2010 at 6:05 PM, Ajmer Singh wrote: > Hi All > > I need to integrate the Twitter in my application,Could any body please let > me know what are the best way to achieve this. >

Re: [android-developers] World's Strongest Child

2010-11-30 Thread Kumar Bibek
I don't agree.... Kumar Bibek http://techdroid.kbeanie.com http://www.kbeanie.com On Tue, Nov 30, 2010 at 5:05 PM, Sami wrote: > http://guinesssrecords.blogspot.com/2010/11/worlds-strongest-child.html > > -- > You received this message because you are subscribed to th

[android-developers] Re: How can I split pdf file into png / jpeg image

2010-11-30 Thread Kumar Bibek
Go through the PDF format, and check if the libraries for reading PDF give this feature. There's no shortcut, I am sure. You have to do a bit of research and coding yourself. On Nov 27, 1:47 pm, sanjay wrote: > Hi, > > I want my android application to save each page of a pdf file into a > png / j

<    1   2   3   4   5   6   7   8   9   10   >