[android-developers] Implementing Binder Interface

2010-12-20 Thread Vinay
I have created the class which implements the Binder interface(Service). I am able to send the data to it from client. If I want to send the asynchronous response back to client, do I need to implement Binder interface at client as well? With Regards Vinayakumara T V -- You received this

[android-developers] Re: 3D Figures in Android

2010-12-19 Thread Vinay
Hi, Another reference: sample - API Demos Vinay. On Dec 19, 2:18 am, Simon Platten simonaplat...@googlemail.com wrote: Search for min3D excellent java class library with examples for OpenGL ES. Check out My MRU (Motion Reference Unit) Created using it. Regards,Sy On 18 Dec 2010 20:56

[android-developers] Re: How to differentiate a tap event generated by system or by user

2010-12-06 Thread Vinay
.. Vinay. On Dec 6, 10:07 pm, Leon Moreyn-Android Development lmor...@earthcam.com wrote: when you drop the phone? On Dec 6, 12:16 am, XC He schosnab...@gmail.com wrote: is there any tap event generated not by user's taping behavior? 2010/12/6 ankit ankit.ag...@gmail.com: Hi All

[android-developers] Bluetooth pairing request dialog

2010-12-06 Thread Vinay
in advance for any help. Vinay. -- 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

[android-developers] Re: images not scaled to screen size

2010-11-30 Thread Vinay
) registering as medium. Further the images in the folder mdpi should have been scaled to fit the screen which actually is not happening. Vinay. On Nov 30, 4:30 pm, Kumar Bibek coomar@gmail.com wrote: Yes, they will be scaled, provided you design your app to do so. Say, for example, if you have

[android-developers] images not scaled to screen size

2010-11-29 Thread Vinay
in advance Vinay. -- 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: images not scaled to screen size

2010-11-29 Thread Vinay
full screen and even the custom application invovling only default android widgets also works fine. It is only images that are being used (for image View etc.) that pose problem. I'll be thankful if you can please provide some insight about the autoscaling as well. Thanks again, Vinay. On Nov

[android-developers] regarding auto sclaling for images.

2010-11-28 Thread Vinay
= 1.5 x mdpi ldpi = 0.75 x mdpi Why is the custom application not being rendered full screen like all other default application. Why are images not being scaled to fit the DELL 17 monitor connected to the imx51 board. Thanks in advance for any suggestions. Vinay. -- You received this message

Re: [android-developers] Re: button on screen that controls page sliding

2010-11-26 Thread Vinay Julme
For going from one Activity to another with animation you can use overridePendingTransition() but this won't help in drag Have a look at this tutorial where I found this guy pretty useful. http://www.inter-fuser.com/2009/07/android-transistions-slide-in-and-slide.html

[android-developers] Re: image resolutions and scaling

2010-11-24 Thread Vinay
to the imx51 board. Thanks for any help. Vinay. On Nov 4, 10:07 pm, Daniel Drozdzewski daniel.drozdzew...@gmail.com wrote: From the following guideline: http://developer.android.com/guide/practices/ui_guidelines/icon_desig... relation between sizes are: hdpi = 1.5 x mdpi ldpi = 0.75 x mdpi

Re: [android-developers] Resetting a value weekly

2010-11-18 Thread Vinay Julme
You could use a remote service. I guess that would be better compared to an activity. There maybe a better solution available using Broadcast Receivers but haven't looked into it. On Wed, Nov 17, 2010 at 9:25 AM, drewin drew.nguye...@gmail.com wrote: I want to reset a counter every week in an

Re: [android-developers] How to pass a Context variable from one Activity to another ?

2010-11-03 Thread Vinay Julme
. Well then you can use bundle put extras. and then gather extras in the new activity. Or u can use static variables to share data between the two activities or activity and service. And if you are not comfortable with the static variables then data base is always there. Vinay Julme

[android-developers] Best way to dim background of layout

2010-11-02 Thread Vinay
Hi All, A part of my main.xml is as below: FrameLayout android:id=@+id/panelLayout android:layout_width=fill_parent android:layout_height=fill_parent RelativeLayout android:id=@+id/instrumentClusterLayout

Re: [android-developers] how to change the behavior of back button

2010-10-27 Thread Vinay Julme
Why don't u make activity4 as a MAIN activity. Or are you trying to say something different? On Wed, Oct 27, 2010 at 3:27 PM, RKJ (Android developer) rkjhaw1...@gmail.com wrote: Hi, i want to change the behavior of back button, I have 3 activity, activity1, activity2, and activity3

Re: [android-developers] Re: ListView OnClickListners Issue

2010-10-22 Thread Vinay Julme
of overrides the onListItemClick, and imposes its own methods over ListItem. So we would have to set android:focusable=false for the checkbox. In your case it maybe same and u would have to set focusable as false for the button. Weired but yes it happens. Tell us if it worked for you? Vinay Julme

[android-developers] Re: Creating a .jar Library

2010-10-10 Thread Vinay S
--When I run, the classes are unresolved so I crash. (null exception...) Did you add the jar into your library? and in your build path? -vinay On Oct 9, 5:39 am, JoeSchmoe rthompson.dtisoft@gmail.com wrote: Do I have to do anything special to create a .jar library with Android?  I'm

[android-developers] Re: Problem with image button

2010-09-28 Thread Vinay
only when used keyborad. (Normal and Focused states only) In case the application is ported on any of the embedded systems, can the changes be seen with touch screen. Further, why isn't the changes when used mouse with the emulator ??? Thank you all. Vinay. On Sep 27, 5:56 pm, nishu nishuk

[android-developers] Problem with image button

2010-09-24 Thread Vinay
The image button background never changes (normal, focused, clicked.) I'm using an image button and trying to different background image when normal, focused and clicked. I have read quite a lot of posts related to this and have implemented exactly as suggested. My code below: In main.xml: (this

[android-developers] Re: Uploading file through HTTP Post

2010-09-16 Thread Vinay S
Hi, See this page.. http://rapidandroid.org/wiki/HttpUpload -vinay On Sep 16, 8:55 am, perumal316 perumal...@gmail.com wrote: Hi All, I am writing an application to upload a file from Android phone to a web server. I have tried the example from: http://www.anddev.org/novice-tutorials

[android-developers] Re: how to list files on SD card

2010-09-16 Thread Vinay S
Pl. look at http://developer.android.com/reference/java/io/FilenameFilter.html On Sep 16, 8:40 am, cindy ypu01...@yahoo.com wrote: Hi all,  My application needs to do some clean up. I need to list the files such as   ls voice*.amr, and then delete those files. How could I do it in Android?

[android-developers] Re: onCellLocationChanged and updateNetworkNameExtension showing up in Log files. Where do these come from? and can I make them stop?

2010-08-30 Thread Vinay S
hi, As I know you get the event onCellLocationChanged when there is change in Cell Tower connectivity.. To stop this event you need to stop listing to this update. Look for listen method in Telephonymanager (URL: http://developer.android.com/reference/android/telephony/TelephonyManager.html). I

[android-developers] Re: How to the GSM signal strength

2010-08-26 Thread Vinay S
Hi XC He, Can you please suggest what should be imported to get mPhoneStateReceiver..? Regards, Vinay On Aug 26, 1:38 pm, XC He schosnab...@gmail.com wrote: You can check package/apps/Settings code, RadioInfo.java   int signalDbm = mPhoneStateReceiver.getSignalStrengthDbm();   if (-1

Re: [android-developers] Any Interview Question

2010-08-21 Thread Vinay Julme
in out. Regards Vinay Julme ** On 8/21/10, Miguel Morales therevolti...@gmail.com wrote: I hope you're joking because this post is funny. I don't understand how you can have an interview but don't know how to use google for information about Android. I hope never to use any

[android-developers] Re: Detect Wifi Enabled/Disabled

2010-08-12 Thread Vinay S
If you need network information, then try NetworkInfo. if you have 3G or GPRS or Wifi network connectivity it can give that state. -Vinay On Aug 13, 3:35 am, KG kevinconca...@gmail.com wrote: Thank you very much, this is what I needed. On Aug 12, 3:20 pm, Kostya Vasilyev kmans...@gmail.com

[android-developers] Re: integrating skyhook in android application

2010-07-27 Thread Vinay
Thanks TreKing, I and Nikhil are working together , can you please mail me (vinay.cham...@gmail.com) any source-code/code snippet to do so. (using skyhook inspite of gps for location detection). we could not figure out anything regarding source code in the TreKing website... On Jul 15, 7:00 pm,

[android-developers] getCellLocation() returns null

2010-07-26 Thread Vinay S
: +mMCC+ MNC: +mMNC+\n) ; } /Code Also, I have added the following permissions : ACCESS_FINE_LOCATION, ACCESS_COARSE_LOCATION, CONTROL_LOCATION_UPDATES. Do I need to add any other permissions? Kindly let me know where I have gone wrong. Thanks in advance, Regards, Vinay -- You received

[android-developers] How to check the which application is calling from framework

2010-07-23 Thread vinay
Hi all, can anybody tell me, how to check which function is calling my framework code?? is this possible to check?? Thx advance. Regards, V.Vinay -- 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] Re: HttpPost and byte[] on Android?

2010-07-15 Thread Vinay S
try HttpPost.setEntity (ByteArrayEntity); On Jul 14, 5:11 pm, Dinesh Harjani goldrunner192...@gmail.com wrote: I believe this will be very helpful:http://evgeny-goldin.com/blog/2010/05/01/uploading-files-multipart-po... Download the source for the FileUpload (it should contain the

[android-developers] how to detect whether android device supports audio video recording

2010-07-07 Thread vinay
hi, Is there any api that can let me know whether android device supports audio video recording. Thanks, -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To

[android-developers] Re: GPS Provider not available

2010-06-15 Thread Vinay S
Try, registering the service and listing for onLocationChange event.. -Vinay On Jun 14, 9:14 pm, vogella lars.vo...@googlemail.com wrote: Hi, I'm trying to use directly the GPS Location Manager (without a MapActivtiy) in the emulator. LocationManager locationManager = (LocationManager

[android-developers] Re: how to use adb tool on SAMSUNG GALAXY?

2010-06-15 Thread Vinay S
Check for the driver.. I had the same problem with Galaxy. I found in one of the forums the link for custom driver and installed it.. That worked for me.. -Vinay On Jun 11, 2:16 am, Stu.Axon stu.a...@gmail.com wrote: This is driving me up the wall... I've been trying to get it working for 6

[android-developers] Re: How to get and post JSON with Android?

2010-06-15 Thread Vinay S
1. Look for DefaultHttpClient for sending and receiving data from server using GET / POST. 2. Look at org.json api's available in Android. -Vinay On Jun 12, 6:16 pm, Joshua Partogi joshua.part...@gmail.com wrote: Hi all, Is there any code snippet for getting and postiing JSON object

[android-developers] Re: How to send a json object to a server via android

2010-06-15 Thread Vinay S
what is the error / exception you are getting? Look at logcat / console for info.. -Vinay On Jun 12, 9:04 pm, Muhamamd Mateen matee...@gmail.com wrote: Hi, I know that this is not really an android question but i am new to both android and JSON. {Email:g...@tkxel.com,Password:123456

[android-developers] Re: GPS/LocationManager does not give a fix in my app

2010-06-07 Thread Vinay S
to some open space and walk around for about 100 m.. then you will get available event. Regards, Vinay On Jun 6, 10:05 pm, Charly carlos.per...@gmail.com wrote: Still haven't found a way to make it work. If someone has a clue please let me know. Thank you! -- You received this message because

[android-developers] Re: Cannot Write file into SDCard

2010-05-31 Thread Vinay S
Hi, Did you try DDMS to copy the file to your PC and open it? -Vinay On May 31, 8:57 am, jp backstabber...@hotmail.com wrote: Thanks all, it finally work However i was not able to view the text file when i mount the phone to the pc It requires me to restart my phone inorder to get the text

[android-developers] Re: TelephonyManager.listen() additive? API docs unclear.

2010-05-27 Thread Vinay S
Hi, Both the ways what have listed are right.. You get the same output.. :) -vinay On May 28, 1:02 am, goosedroid alexrhel...@gmail.com wrote: If I register LISTEN_SERVICESTATE with listener A using TelephonyManager.listen(), and then later I need to additionally listen another event like

[android-developers] Re: Scan wireless networks periodically

2010-05-27 Thread Vinay S
Hi, Look at timers... -Vinay On May 26, 10:06 pm, Charly carlos.per...@gmail.com wrote: Hi, I'm developing sort of a wireless scanner, so I need to scan every X seconds. I know I should use WifiManager and startScan() to get the networks and then register a receiver to receive the event

[android-developers] Re: Cannot Write file into SDCard

2010-05-27 Thread Vinay S
Hi, Try adding this code before you open the file File root = Environment.getExternalStorageDirectory(); if (root.canWrite()){ gpxFilePath = new File(root, abcd.txt); } -Vinay On May 27, 1:29 pm, jp backstabber...@hotmail.com wrote: Hi fellow developers, i'm having

[android-developers] Re: Start a service during device boot-up

2010-05-26 Thread Vinay S
HI, If i understand your problem correctly, the compiler is asking to remove either Broadcast receiver or service. If so, then what I suggest you is, have a different class which extends BroadcastReceiver and start the service from that. -Vinay On May 24, 12:28 pm, Soumya soumyakanti

[android-developers] Re: Getting and Sending Data From the Web (URLConnection via http)

2010-05-12 Thread Vinay S
Hi, Did you try sending the data back using the same HTTP connection? Try opening a new HTTP connection and send the data back.. This might give you some clue, is this the problem of HTTP.. Regards, Vinay On May 10, 10:27 pm, strog droid.j...@googlemail.com wrote: Hi Guys, I wanted

[android-developers] Re: Neighbouring Cell info - Clarification needed

2010-05-12 Thread Vinay S
Hi Kelly, How about the case, there are multiple operators using the same tower? Will I be able to get the info from them? Regards, vinay On May 12, 9:26 pm, Kelly senor...@gmail.com wrote: LAC (Local Area Code) is specific to area, like mine is 415 (San Francisco). The Cell ID is the ID

[android-developers] Re: How to create uses-library

2010-05-11 Thread Vinay S
Hi Karteek, As Mr. Mark Murphy has suggested create a new project for your reusable set of code. Export the same as Jar and include where ever you need them. Regards, Vinay On May 11, 10:53 am, Dianne Hackborn hack...@android.com wrote: On Mon, May 10, 2010 at 10:29 PM, karteek kartee

[android-developers] Re: How to create uses-library

2010-05-10 Thread Vinay S
Can post the LogCat Output.. -Vinay On May 10, 12:21 pm, Karteek N kartee...@gmail.com wrote: Hi, In android manifest file there is a tag to include libraries called uses-library. Suppose if i have some java files in the package hierarchy called com.my.lib i used the following tag in my

[android-developers] Re: Neighbouring Cell info - Clarification needed

2010-05-09 Thread Vinay S
to return the Cell Id of different operators around the place..? Regards, VInay On May 8, 7:36 am, Renam seure...@gmail.com wrote: take a look at:http://en.wikipedia.org/wiki/Mobile_Network_Code I think that what you need. Vinay S wrote: Hi, I need one clarification regarding

[android-developers] Re: Obtain RSSI in GSM cells

2010-05-09 Thread Vinay S
You need to implement a method onSignalStrengthChanged(int asu) in phone state listener.. -Vinay On May 7, 3:56 pm, Miguel Ruiz miguel.s...@gmail.com wrote: Hi, I´m trying to get the rssi value from the main cell i´m currently connected to in an application for Android 1.6. I´m using

[android-developers] Re: Obtain RSSI in GSM cells

2010-05-09 Thread Vinay S
You need to implement a method onSignalStrengthChanged(int asu) in phone state listener.. -Vinay On May 7, 3:56 pm, Miguel Ruiz miguel.s...@gmail.com wrote: Hi, I´m trying to get the rssi value from the main cell i´m currently connected to in an application for Android 1.6. I´m using

[android-developers] Neighbouring Cell info - Clarification needed

2010-05-07 Thread Vinay S
and LAC given are specific to the SIM operator or is it from all providers in this area? If it is from multiple operators.., how can I distinguish them? Any kind of info regarding this will be useful. Thanks and Regards, Vinay -- You received this message because you are subscribed

[android-developers] NeighboringCellInfo returns CID as -1

2010-05-06 Thread Vinay S
] Thanks in Advance, Regards, Vinay -- 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

[android-developers] Re: NeighboringCellInfo returns CID as -1

2010-05-06 Thread Vinay S
Hi All, Sorry about it.. It is returning -1 because it on UMTS. I was thinking it was on GSM. Thhanks Regards, Vinay -- On May 6, 12:16 pm, Vinay S s.vinay@gmail.com wrote: Hi, On Nexus One, when I try to get the NeighboringCellInfo, it returns me with 5 nodes. When I try

[android-developers] Re: TelephonyManager.getLine1Number() returning null?

2010-05-05 Thread Vinay S
Hi David, I think you are trying to use TelephonyManager.getLine1Number(); Instead create an object of the TelephonyManager and then call the getLine1Number(); -Vinay On May 5, 3:53 pm, David Given d...@cowlark.com wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 28/04/10 14:27

[android-developers] Re: TelephonyManager.getLine1Number() returning null?

2010-05-05 Thread Vinay S
Hi David, Pl. try this code.. TelephonyManager tMgr = (TelephonyManager) getSystemService(Context.TELEPHONY_SERVICE) ; Log.d(+tMgr.getLine1Number() ) ; -Vinay On May 5, 9:32 pm, David Given d...@cowlark.com wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 05/05/10 12:48, Mark Ellul

[android-developers] Re: TelephonyManager.getLine1Number() returning null?

2010-05-05 Thread Vinay S
Hi, Are you sure, you are getting the context correctly..? Are you able to get other deatils, like Network type phone type, sim status etc? -Vinay On May 5, 9:32 pm, David Given d...@cowlark.com wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 05/05/10 12:48, Mark Ellul wrote: I

[android-developers] Re: HTTP post to non-standard port over Wifi?

2010-05-03 Thread Vinay S
Hi, Did you look at the router does it allow outgoing TCP traffic to flow through for port 8080? -Vinay On May 3, 3:48 pm, Per p...@care2wear.com wrote: Hi, I have trouble getting http post to work over WiFi. The server listens at port 8080, and posting works just fine when disabling WiFi

[android-developers] getMaxSatellites returns 255

2010-04-28 Thread Vinay S
in advance. Regards, Vinay -- 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

[android-developers] Re: about get cid

2010-04-28 Thread Vinay S
Hi, If you look at TelephonyManager, you have the needed functionality.. One of them is getCellLocation which has the CID info. On Apr 28, 12:36 pm, xmmarmy007 xmmarmy...@gmail.com wrote: hi all!     Please tell me how to obtain cell id. -- ==天道酬勤== xiemingming mail:

[android-developers] Re: Decimal only keypad

2010-04-27 Thread Vinay S
Try this thread.. This might help.. On Apr 28, 8:23 am, Latha subbas...@gmail.com wrote: Any help here? On Apr 27, 1:48 pm, Siva G sivarama...@gmail.com wrote: I want to have input type for the text boxes that only takes numbers and decimal point. Input type of Number or Decimal,

[android-developers] Re: Decimal only keypad

2010-04-27 Thread Vinay S
Oops.. missed the link : http://groups.google.com/group/android-developers/browse_thread/thread/a326d87057f89ca6/f32bac433dd64a46?lnk=gstq=EditText#f32bac433dd64a46 On Apr 28, 8:23 am, Latha subbas...@gmail.com wrote: Any help here? On Apr 27, 1:48 pm, Siva G sivarama...@gmail.com wrote:

[android-developers] Re: Get phone country/area code, anyone?

2010-04-27 Thread Vinay S
Hi, Did you try this in telephony manager.. getNetworkCountryIso() - for country code. (if you are in roaming it changes..) I am not sure about area code.. regards, vinay On Apr 27, 11:28 pm, Gustavo gumat...@gmail.com wrote: Hi, I know that I can get some informations from the Sim card

[android-developers] Re: About EditText inputType

2010-04-26 Thread Vinay S
Is there anything similar for EditTextPreference ? I am trying to validate an input in Settings.xml file. Regards, Vinay On Apr 26, 4:02 pm, Anurag Singh anusingh...@gmail.com wrote: Use android:digits android:numeric - Anurag Singh On Fri, Apr 23, 2010 at 8:48 AM, E chui.hin

[android-developers] Re: how to remove/invisible the scroll bar

2010-04-14 Thread Vinay S
Hi, Try using Linear layout with orientation horizontal. Add button, followed by Image, then another button. Add your code for button click to change the image. Regards, Vinay On Apr 9, 11:16 am, Vijay S vijay...@gmail.com wrote: Hi i added some buttons in HorizontalScrollView and its

[android-developers] Re: Samsung Galaxy, GPS onLocationChanged never called.

2010-04-14 Thread Vinay S
as the min Distance. This may help.. Regards, Vinay On Apr 6, 10:46 pm, fabien fabien.sangl...@gmail.com wrote: Guys, Anyone reported a bug with Samsung Galaxy (Android 1.5) ? It seems the onLocationChanged  method never get called. All my listener receive is call to onStatusChanged(gps

[android-developers] Re: About how to make new buttons in a row?

2010-04-12 Thread Vinay S
Hi, I hope you are using LinearLayout as your base Layout.. If so, look for orientation in the properties of this obj and change it to horizontal. Vinay On Apr 12, 10:47 am, xlshe dianyuangua...@gmail.com wrote: Hi all, I want to create three button on the layout. But the default align

[android-developers] Re: number of lines in a webview Urgent

2010-04-12 Thread Vinay S
Did you try using setBuiltInZoomControls(boolean)... http://developer.android.com/reference/android/webkit/WebSettings.html#setBuiltInZoomControls(boolean) May be this is the one you need.. On Apr 12, 5:26 pm, mmkr manutd...@gmail.com wrote: Hi all,          I'm using webview which loads a

[android-developers] Unable to start service Intent

2010-03-08 Thread Vinay S
provided by the JAR. Can someone help me to point out where have I gone wrong? Thanks in Advance, Vinay - Service manifest.xml - ?xml version=1.0 encoding=utf-8? manifest xmlns:android=http://schemas.android.com/apk/res/android; package=com.ere.SDKUtil

[android-developers] android 2.1 r1 calender and music player not launching

2010-02-17 Thread vinay H
Hello, i downloaded androidn 2.1 R1 from eclair branch and compiled. Music player and calender applications are not launching. Have any one faced this issue and is there fix available -vinay -- You received this message because you are subscribed to the Google Groups Android Developers

[android-developers] Camera on Eclairs

2010-02-02 Thread Vinay Krishnamurthy
in Camera.java and AndroidManifest.xml file present under packages/apps/Camera directory, but of no use. Thanking you, Vinay K. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com

[android-developers] How to build a binary dictionary for Latin IME( main.dict ) ??

2009-12-29 Thread vinay
appreciated. Thanks in advance, Vinay. -- 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

[android-developers] setTitle hebrew issue

2009-12-06 Thread vinay
Please help me with this setTitle issue..I am stuck with this for last 4 days.. setTitle(R.string.unknown_album_name); This particular api is not able to display the string in hebrew and arabic locale, but it is displaying the string in english and russian localeI have checked in strings.xml

[android-developers] Installing prebuilt apk

2009-11-25 Thread Vinay
to system/ app directory. Is it the right way to install a prebuilt apk or is there any good way to install a prebuilt package? With Regards Vinay -- 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] How to increase virtual keypad size in donut

2009-11-23 Thread vinay H
Hello, Size of Virtual keypad buttons on my platform are very small compared to display size. It is very difficult to select each button with finger. How to increase the size of virtual keypad or button size? Though it covers more area in the display also no problem. Br, -vinay -- You received

[android-developers] Sending Video/Audio frame as input to OpenCore

2009-08-05 Thread Vinay
Hi All, I am not able to use MediaPlayer/VideoView to make rtsp to work in Android. So I have created a client to interact with RTSP server, I have succeeded in doing this. I am able to get the video/audio frame from RTSP server (MySpace) in Android. Now I want to play the frames. I have searched

[android-developers] RTSP stack implementation

2009-08-01 Thread Vinay
Hi, I am working on making RTSP url to work on Android. 1. I have used MediaPlayer and VideoView to play the RTSP url but both of them fail to play in G1 Device and emulator. Error is PVMFFailureiin PLAYER_INIT. 2. So I thought of implementing a RTSP client from scratch. I have developed a

[android-developers] Re: RTSP stack implementation

2009-08-01 Thread Vinay
example given along with android sdk, u can play only local media files or over the http streaming. if u want to test the video streamed over rtsp, try from m.youtube.com in the browser. Thanks and Regards, HarishKumar.V On Sat, Aug 1, 2009 at 11:34 AM, Vinay vnykm...@gmail.com wrote: Hi

[android-developers] Internet Access on ANDROID

2009-07-02 Thread Vinay R Rao
the steps to get internet working on ANDROID. Waiting for your replies. Thank you in advance. Regards, Vinay R Rao --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send

[android-developers] Flv to mp4 Convertion

2009-06-26 Thread Vinay
Hi All, I want to play the flv files in Android. So what I thought is to convert the flv file to mp4 or 3gp(for which there is a decoder in Android). OpenCore can be used to convert. I have looked into opencore code, there is a class in opencore /android/external/opencore/

[android-developers] Re: Wat to buy???

2009-06-25 Thread Vinay Avasthi
HTC has launched HTC Magic in India yesterday. The price being quoted is approx Rs. 30K. You should get it in any store that sells HTC phones. Sujay Krishna Suresh wrote: Hi everyone, i live in India and i wanna own an android phone... can anyone gimme suggestions as to wat

[android-developers] Streaming Youtube Videos

2009-06-17 Thread Vinay
Hi All, I am writing an application to play the youtube videos using streaming. First method: I am getting the RTSP URL to the video using GData APIs. Here is the code to play the RTSP url. VideoView mVideoView = new VideoView(this); setContentView(mVideoView);

[android-developers] Streaming Youtube Videos

2009-06-17 Thread Vinay
Hi All, I am writing an application to play the youtube videos using streaming. First method: I am getting the RTSP URL to the video using GData APIs. Here is the code to play the RTSP url. VideoView mVideoView = new VideoView(this); setContentView(mVideoView);

[android-developers] PORTING BROWSER ON ANDROID

2009-06-15 Thread Vinay R Rao
Hi all, Is it possible to integrate gecko rendering engine on to android? I want to port any open source web browser on to android. Can anyone please help me on this? Can you Please suggest me which open source browser to port on ANDROID. Waiting for your replies. Thank You, Regards, Vinay

[android-developers] Emulator not coming up.

2009-04-30 Thread vinay
Hi, I have built the Android Master source code on Ubuntu 6.06. And the emulator was working fine with all apps. Suddenly the emulator is not booting up at all and gives the following error. *** buffer overflow detected ***: emulator terminated === Backtrace: =

[android-developers] Re: How to launch C program application at start-up

2009-03-25 Thread vinay harugop
try this, service helloworld /system/bin/helloworld user root oneshot On Wed, Mar 25, 2009 at 1:18 PM, vrukesh vrukesh.pa...@gmail.com wrote: HI, We are trying to launch C program application (for example, Helloworld) at start-up on ARM-based target board. We copied the

[android-developers] Re: Android Web Browser profiling

2009-03-10 Thread vinay harugop
ravi, I tried the same and found similar conflicts in the namespace when ANDROID_INSTRUMENT was enabled. Modify platform/android/SystemTimeAndroid.cpp, platform/android/jni/WebViewCore.cpp and WebCore/WebCorePrefixAndroid.h for namespace conflicts. -vinay harugop On Wed, Mar 11, 2009 at 4:30 AM

[android-developers] Re: Android Development Phone Setup - Vodafone India

2009-01-21 Thread Vinay
You can skip the initial setup by connecting the phone to PC via USB and then type : # adb shell echo app.setupwizard.disable=1 /data/local.prop # adb shell reboot Register later when you are connect to a WiFi network. Cheers! V On Wed, Jan 21, 2009 at 7:20 AM, marj...@gmail.com

[android-developers] opening sample index.html from present in /sdcard in web browser

2009-01-19 Thread vinay H
. Is there any way by modfying Browser/AndroidManifest.xml ?? expecting some one to explain details. thanks in advance, -vinay H --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group

[android-developers] loading html file from SDCARD in web browser

2009-01-19 Thread vinay H
Hi, How to load simple html file present in sdmmc card from web browser. It is mentioned in the net that due to security reasons this is not allowed. Is there any way to access the file from sdcard? Tried modifying private String homeUrl = file:///sdcard/index.html; in BrowserSettings.java file

[android-developers] Re: loading html file from SDCARD in web browser

2009-01-19 Thread vinay
hi grace, I could do it by copying the index.html file in Browser/assets directory and modified private String homeUrl = file:///android_asset/index.html; in BrowserSettings.java file. where does html viewer resides an android? -vinay H On Tue, Jan 20, 2009 at 12:51 AM, Grace Kloba klo

[android-developers] Re: Android Dev Phone 1

2009-01-18 Thread Vinay Avasthi
There are cards similar to SIM cards on CDMA handsets, these are called RUIM cards. Although it is possible to have CDMA phones without any cards at all. Not sure about Verizon since I am not based in US. But ADP1 will only work on GSM phones, not CDMA. On Sat, Jan 17, 2009 at 5:38 AM, Jo Rhett

[android-developers] enquiry about the resubmission

2008-04-11 Thread vinay
submission but not fo the resubmission. anyone have any clue about these points? regards vinay --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android

<    1   2