[android-developers] trusted computing

2010-02-21 Thread Vaibhav
Hi, I am trying to determine appropriate platform to develop an application based on trusted computing for an academic/research project. I will like to know if it is possible to use underlying trusted computing functionality in hardware on Android phones. If so, what things I need to look at? Tha

[android-developers] Error in deploying apk in Android

2009-12-09 Thread vaibhav
Iam getting below error when I try to upload apk file with AVD version Level2. Can't dispatch DDM chunk 46454154: no handler defined -- 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] FootPrint of ANdroid - Urgent Help needed.

2009-06-17 Thread vaibhav
Hi , I need to know the footPrint of Android and its various Libraries >Please help --~--~-~--~~~---~--~~ 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@

[android-developers] Re: Nullexception when trying to get text user input from dialog box

2008-12-18 Thread vaibhav
Thanks for sharing the solution On Oct 26, 8:30 pm, akurni wrote: > I fixed it by changing >  mTitle = ((EditText) > findViewById(R.id.title_edit)).getText().toString(); > to >  mTitle = ((EditText) > textEntryView.findViewById(R.id.title_edit)).getText().toString(); > > thanks for all your

[android-developers] SIP Stack

2010-05-07 Thread vaibhav
Hi When I went through the document "opencore_framework_capabilities.pdf" I came to know that Android supports RTP streaming for 3gpp format. After doing a anaysis I found that the data from a server could be streamed to the android device and played back. i.e the RTP payloads sent from the serve

[android-developers] How to make a custom view/activity with many screens like home screen in 2.x

2010-03-10 Thread Vaibhav Goel
Hi I want to make an activity in 2.x which have many UI screens and user can move from one screen to other by scrolling the screen like we have more than one Home screens and we can move from one to another just by sliding current screen. Please guide me for implementing this. Can this be implem

[android-developers] Re: how to crop an image in android 2.x

2010-03-11 Thread Vaibhav Goel
No. I am searching for it. On Mar 1, 1:56 am, Damian wrote: > I have encountered this problem also. Did you find a solution? > > On Feb 16, 11:50 am,VaibhavGoel wrote: > > > By removing class-name and private restrictions, it works for the > > images picked from gallery but when i pass Uri ofima

Re: [android-developers] Application wake up

2010-03-18 Thread Vaibhav Kulkarni
cationManager) context.getSystemService( Context.NOTIFICATION_SERVICE); nm.notifyWithText(123, buf.toString(), NotificationManager.LENGTH_LONG, null); } } } Thanks, Vaibhav On Thu, Mar 18, 2010 at 10:33 AM, SAM wrote: > Hi, > I have a req

[android-developers] Getting UnknownHostException - Host is Unresolved

2009-04-15 Thread Vaibhav Gathibandhe
n.INTERNET permission set in my AndroidMenifest.xml. Moreover, with this URL, I am able to connect to my machine's server when I use the browser on the emulator. Has anyone faced and solved such problem. If yes, I would really like to know the solution. Thanks in advance. Regards, Vaib

[android-developers] Re: Getting UnknownHostException - Host is Unresolved

2009-04-15 Thread Vaibhav Gathibandhe
as I mentioned, the same URL works with the emulator's browser and browser on my laptop (if I use http://*localhost* /Nrti/recommendation_saver). So, the question is why the URL is not getting resolved from the code!! Thanks and Regards, Vaibhav Gathibandhe On Thu, Apr 16, 2009 at 12:31

[android-developers] Re: Getting UnknownHostException - Host is Unresolved

2009-04-16 Thread Vaibhav Gathibandhe
Hi, Any ideas here?? I would really appreciate if someone look into this. Thanks and Regards, Vaibhav Gathibandhe On Thu, Apr 16, 2009 at 12:56 AM, Vaibhav Gathibandhe < vaibhav.andr...@gmail.com> wrote: > Hi, > > Yes, that's true. Here is the code snippet: > > Ht

[android-developers] how to crop an image in android 2.x

2010-02-12 Thread Vaibhav Goel
I need to crop an image whose Uri is known. In 1.6 I used the below code. Intent i = new Intent("com.android.camera.action.CROP"); i.setClassName("com.android.camera", "com.android.camera.CropImage"); i.setData(imageUri); // imageUri = content://media/external/images/media/40 i.putExtra

[android-developers] custom seek bar

2010-02-15 Thread Vaibhav Goel
Hi I want to make a custom seek bar having color gradient as shown in the below image url. http://i49.tinypic.com/2mi5lsh.jpg For this I tried to make background as seek_background.xml http://schemas.android.com/apk/res/android"; android:shape="rectangle"> and Seekbar in

[android-developers] custom seek bar

2010-02-15 Thread Vaibhav Goel
Hi I want to make a custom seek bar having color gradient as shown in the below image url. http://i49.tinypic.com/2mi5lsh.jpg For this I tried to make background as seek_background.xml http://schemas.android.com/apk/res/android"; android:shape="rectangle"> and Seekbar in

[android-developers] Re: custom seek bar

2010-02-15 Thread Vaibhav Goel
Thanks Mark. By changing in drawable resource, I got the desired result. -- 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 t

[android-developers] Re: custom seek bar

2010-02-15 Thread Vaibhav Goel
Thanks skink On Feb 16, 1:21 am, skink wrote: > Vaibhav Goel wrote: > > Hi > > > I want to make a custom seek bar having color gradient as shown in the > > below image url. > > >http://i49.tinypic.com/2mi5lsh.jpg > > > For this I tried to make backgrou

[android-developers] Re: how to crop an image in android 2.x

2010-02-15 Thread Vaibhav Goel
ght, matrix, true); >                 resizedBitmap.compress(CompressFormat.JPEG, 50, new > FileOutputStream( Location_Image.filename2 )); > > On Feb 12, 7:18 pm, Vaibhav Goel wrote: > > > > > I need tocropan image whose Uri is known. > > > In 1.6 I used the below code. > &g

[android-developers] Re: how to crop an image in android 2.x

2010-02-16 Thread Vaibhav Goel
ve this particular activity > (com.android.camera.CropImage) installed. > > But this should not give you the 'permission denial' error. > Maybe theCROPaction can onlycroppublic images. You set yours to > PRIVATE. > > On Feb 12, 9:18 am, Vaibhav Goel wrote: > > &g

[android-developers] problem in printing image on bluetooth printer.

2013-01-08 Thread Vaibhav Yerawar
& Regards Vaibhav Yerawar -- 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...@google

Re: [android-developers] strange error

2011-10-27 Thread vaibhav agrawal
I think 'ProgressThread' class doesn't exist in android... On Thu, Oct 27, 2011 at 3:57 PM, bob wrote: > Can someone explain why I get this error? > > ProgressThread cannot be resolved to a type > > Here's the code: > > package com.coolfone.notetest; > > import android.app.Activity; > import and

[android-developers] View reuse in android viewpager

2011-11-02 Thread Vaibhav Mishra
I have a viewpager with nearly 200 pages inside it and each page can have a webview or imageview so it is a pretty heavy and maybe because of this performance is very bad, I understand viewholder pattern in android listivew can in some sense be applied in this situation to facilitate view reu

[android-developers] Battery usage per app

2011-09-26 Thread vaibhav agrawal
Hi, Is there any way in which I can get the detail that how much battery a particular app is using? I am looking for a way in which I can get this info programmatically, so that I can built an integrated dashboard, along with other info. Thanks, Vaibhav -- You received this message because

[android-developers] Can I add button inmy listview??

2011-07-29 Thread vaibhav mahajan
create a fragment which includes the buttons and add the fragment in the listview but i guess i could not able to get the success! Can ny1 suggest me some clue on this issue? Reply awaited!! Regards Vaibhav -- You received this message because you are subscribed to the Google Groups "An

[android-developers] ListView Problem

2011-08-01 Thread vaibhav mahajan
Hi Dear All, I am facing some issues in the developement of my app. I have created a list in which i want to add buttons and textswitcher. But if i do so i can able to delete the items in my list - as either the buttons in the list would work or list without the buttons would work. I tried to crea

[android-developers] problem with the button in the listview

2011-08-05 Thread vaibhav mahajan
in the getview method of baseadapter but it doesnt work as i am settin the text from getview . Vaibhav -- 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 u

[android-developers] How to Retain Data while using Expandable list views when user clicks Expand or collaps buttons

2011-08-16 Thread vaibhav mahajan
automatically calls setListAdapter which re-initialises the values which i dun want. Kindly suggest me a Fix on this issue. Vaibhav -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-

[android-developers] a to z searchable filter on customized contact listview

2011-08-17 Thread Vaibhav Muley
Hello friends, I have customized listview of contacts with image view, textview and checkboxes. Now i want to implement a searchable filter with texviews a to z such that if any any alphabet is clicked then it will give the contacts name starting from that letter. Also after clicking on any alphabe

[android-developers] Need License related information...

2012-09-11 Thread Vaibhav Singh
is there any licensing issue with this or I can use this code without any issue and also distribute it's applications. Thanks & Regards Vaibhav Singh -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this g

[android-developers] Re: Button issue

2008-12-18 Thread vaibhav goel
how come a pop up menu appear on clicking a button unless and until in its onclicklistener, popup menu is being invoked pls elaborate what are u trying to do... Vaibhav On Thu, Dec 18, 2008 at 11:32 AM, diya blore wrote: > > Hi ALL. > i m facing an issue.. wheni click on button

[android-developers] firebase and play service 9

2016-05-30 Thread Vaibhav Agrawal
since firebase crash and config is available only after play service 9 .. its important to know how much audience is currently at this version .. so how can we know it ??? secondly since firebase analytics identifies its unique user so it must also be creating a user id for that user as for fire

[android-developers] Conversion to Dalvik format failed with error 1 - How 2 solve this

2010-09-01 Thread Vaibhav Singh
Anybody know how to solve this problem in androide trouble processing "javax/xml/bind/Binder.class": [2010-08-31 16:20:28 - IBS] Attempt to include a core class (java.* or javax.*) in something other than a core library. It is likely that you have attempted to include in an application the core l

[android-developers] Creation Of Word Pad Editor

2011-01-24 Thread Vaibhav Nalwad
Respected Developers i am Doing a Project on Creating Word Pad Editor...I don't know...from Where to Start With...Please Help Me in This Regard -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-de

[android-developers] Webservice calling problem with complex data type

2010-12-20 Thread Vaibhav Singh
getProperty(i)); here WS_module is a other class type Can any buddy help me Vaibhav -- 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

[android-developers] How to handel Listview click events

2010-12-30 Thread Vaibhav Singh
Hi All Any one know how to handel listview click handeling...I create my list by extending baseadapter Vaibhav Singh -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-

[android-developers] New for android...

2010-10-29 Thread Vaibhav Singh
om this mistry.. Thanks in Advance.. Vaibhav -- 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

[android-developers] Re: KSOAP2 Stub Generator tool for android

2010-10-29 Thread Vaibhav Singh
Hi Rashid Can u plz tell me to to generate stub from a wsdl link for android... Thanks... On Oct 28, 2:53 pm, muhammad mahmood wrote: > Hi all, > I would like to generate a stub for android. Only one tool is > available at "http://ksoap2genstub.sourceforge.net"; but i am facing > issues with i

[android-developers] Integrate Wireless printer(via Bluetooth/WiFi) with Android Application.

2013-01-16 Thread Vaibhav Ajay Gupta
I want to make an android application that can print forms which are created by same application with wireless printer which is connected via via Bluetooth/WiFi. Any idea how to integrate Wireless printer(via Bluetooth/WiFi) with Android Application.??? -- You received this message because you

Re: [android-developers] Integrate Wireless printer(via Bluetooth/WiFi) with Android Application.

2013-01-16 Thread Vaibhav Ajay Gupta
> > Step #2: Ask the wireless printer manufacturer how to integrate their > device with your Android application. > > On Wed, Jan 16, 2013 at 9:19 AM, Vaibhav Ajay Gupta > > wrote: > > I want to make an android application that can print forms which are > created >

[android-developers] Re: Integrate Wireless printer(via Bluetooth/WiFi) with Android Application.

2013-01-16 Thread Vaibhav Ajay Gupta
; from Android: > > > http://stackoverflow.com/questions/7145787/bluetooth-printer-issue-in-android > > Looks like he just creates a Bluetooth socket and sends some text. > > > > On Wednesday, January 16, 2013 8:19:51 AM UTC-6, Vaibhav Ajay Gupta wrote: >> >> I wan

[android-developers] Photos not saving anywhere?

2012-07-27 Thread Vaibhav Ajay Gupta
I am developing a custom camera application on android 2.2 api level8(Device Xperia S) My application is running but when i click capture button the toast is displayed but image is not saved anywhere on the devices. Also added the permission to write on external device in menifest. Take photo c