[android-developers] Re: Vizio tablet (Android 2.3)

2011-10-05 Thread Zsolt Vasvari
Are you saying if you went back to Walmart and loudly complain, they wouldn't exchange it for you? On Oct 5, 12:26 am, bob b...@coolgroups.com wrote: I got a Vizio tablet (Android 2.3) from Walmart.  Now that it's been slightly after 15 days so I can't return it, this error keeps showing up:

Re: [android-developers] google map direction jar file

2011-10-05 Thread Vinay Julme
Use Google Api 10 not the Android Api. And try it. On Wed, Oct 5, 2011 at 11:15 AM, Goutom goutom.sust@gmail.com wrote: Hello I want to get the direction from one GeoPoint to another GeoPoint. I fount a tutorial in this site

[android-developers] Re: Question about accented characters in Android Sqlite

2011-10-05 Thread Zsolt Vasvari
Does this sorting work in the Contacts application? I've had the same issue when I tried to support Chinese sorting. I ended up copying some code out of the Contacts app. On Oct 4, 7:41 pm, Jairo de Almeida jairodealme...@gmail.com wrote: Hi group. I'm developing a android aplication using

[android-developers] Re: super slow code

2011-10-05 Thread Zsolt Vasvari
Easiest: Just put a bunch of logging in and print out System.currentMillis() On Oct 5, 4:27 am, bob b...@coolgroups.com wrote: What tool do people typically use to profile on Android? Thanks. On Oct 4, 11:56 am, Kostya Vasilyev kmans...@gmail.com wrote: First, profile and find out

Re: [android-developers] Re: help for SMS schdular

2011-10-05 Thread vibhuti kumar tiwari
ya I know I have to set A timer for this task but as I m new I don't know how to implement t in android .. give me some guidance .. On Wed, Oct 5, 2011 at 11:29 AM, bhumi kania bska...@gmail.com wrote: you can start the timertask for sending sms on specific time. On Oct 5, 9:33 am, vibhu

[android-developers] Re: Relative TIme Diff for Mysql Timestamp

2011-10-05 Thread ArcDroid
I would like to compare the strings in Android if possible. thanks arcdroid http://www.arcdroid.com On Oct 3, 10:42 pm, Studio LFP studio@gmail.com wrote: Are you wanting to compare the time in Android or have the database query in MySQL do it? Steven Studio LFPhttp://www.studio-lfp.com

[android-developers] Re: Browse .apk structure on android phone and compute file digest

2011-10-05 Thread Leo
I'm also interested in the possibility of accessing at least CERT.RSA or CERT.SF from META_INF to compare digests from that file with my own ones. Or may be there is another way to detect repacking of your APK and signing it with non-original certificate. Any ideas? On Oct 5, 9:16 am,

Re: [android-developers] google map direction jar file

2011-10-05 Thread Ralph Bergmann | the4thFloor.eu
Am 05.10.11 07:45, schrieb Goutom: I want to get the direction from one GeoPoint to another GeoPoint. [...] Any alternate solutions? you can also use the webservice from google http://code.google.com/intl/en/apis/maps/documentation/directions/ ralph -- You received this message because you

[android-developers] Re: Relative TIme Diff for Mysql Timestamp

2011-10-05 Thread Zsolt Vasvari
You use MySQL on Android? On Oct 4, 1:42 pm, Studio LFP studio@gmail.com wrote: Are you wanting to compare the time in Android or have the database query in MySQL do it? Steven Studio LFPhttp://www.studio-lfp.com -- You received this message because you are subscribed to the Google

[android-developers] Re: How can I get a cach directory of all installed applications

2011-10-05 Thread Doug
That's not all apps, that's just preloaded apps (and just the apk for each one). You'd also have to look in /data/app to find the apk for downloaded apps. Or you can use PackageManager to query Android for installed apps. Doug On Oct 4, 3:00 am, Gokul.C gokul.the...@gmail.com wrote: see

[android-developers] Re: Have you developers even attempted address why this is happening?

2011-10-05 Thread Doug
If you are getting a package not signed correctly error, and you are a user of the Amazon app store, that probably means you are trying to update an app that you first downloaded from Amazon with the same app from the Android Market. Amazon repackages the developer's and includes some custom

[android-developers] Re: Standards/Certification available for Android Aircraft Applications

2011-10-05 Thread Doug
On Oct 4, 6:18 am, Pathy mspa...@gmail.com wrote: What procedure that i need to follow if i am going to install my application on the aircraft. I think you're in the wrong place. You'll probably have to consult with the airline on which the craft will fly, or maybe even the FAA. What exactly

[android-developers] cursor.moveToFirst() cursor.moveToLast() time consuming issue with sqlite database.

2011-10-05 Thread imran ali
Hi all, in my one application,using sqlite database i have to show approx 17000 data from database one by one, on backward forward buttons.For that i have been using cursor.moveToFirst(), cursor.moveToNext(), cursor.moveToPrevious(), cursor.moveToLast(), and showing desired result. every thing is

[android-developers] Re: super slow code

2011-10-05 Thread Doug
On Oct 4, 9:42 am, bob b...@coolgroups.com wrote: Does anyone know why this code is ridiculously slow and/or how to make it faster? What do you mean by ridiculously slow? Have you considered using DataInputStream to read binary data instead of parsing string-tokenized data? Doug -- You

[android-developers] My Camera view is overlapping GLSurfaceView... but i want that it gets overlayed by GLSurfaceView

2011-10-05 Thread saex
I have an augmented reality app that shows the the camera view and a GLSurfaceView with a polygon that can be rotated touching the screen. The main layout of my app is a FrameLayout. The frameLayout contains the cameraView and the GLSurfaceView. My app also have two buttons on the screen (zoom

[android-developers] Adding raw folder to a native app

2011-10-05 Thread sriram
Hi All, I have downloaded the android source code and have added a new application to the source code. I am able to compile it and see it on the device using the resultant image files. However if I add a raw folder to my application and build it along with the native source, it is (the raw folder

[android-developers] Re: Question about accented characters in Android Sqlite

2011-10-05 Thread Doug
Read the javadocs for SQLiteDatabase. Apparently you need to do something special for localization/collation, but they don't really help you out that much. Maybe it's time to google an answer to get your database queries to localize properly. Doug On Oct 4, 4:41 am, Jairo de Almeida

[android-developers] Browse .apk structure on android phone and compute file digest

2011-10-05 Thread petr.maza...@mautilus.com
How the .apk installation process works on device? Is the .apk file just copied to some place and kind of installer application extracts the application information, register somehow the application to environment, extract also the icon and put it on the application launch screen? Or the .apk

[android-developers] Re: cursor.moveToFirst() cursor.moveToLast() time consuming issue with sqlite database.

2011-10-05 Thread Zsolt Vasvari
There is a limit of 256KB (?) for your data for SQLite to be able to move backwards at a reasonable pace. Once you go over it, you will see a bunch of messages in the log and the move will become very slow and AFAIK, there is nothing you can do about it other than to optimize the size of your

[android-developers] Re: Browse .apk structure on android phone and compute file digest

2011-10-05 Thread Leo
OK, The apk file is not unpacked after installation, it stored as is inside android either in internal memory or on SD-card in android- secure directory. Here is the code that I wrote to access the CERT.RSA file from inside the application. It seems that this is the only way, but maybe I'm wrong.

RE:[android-developers] cursor.moveToFirst() cursor.moveToLast() time consuming issue with sqlite database.

2011-10-05 Thread tonypopsonic
In fact,sqllite will meet performance issues when deal with mass data. --- Sent from ShangMail:Travel with free pushmail www.shangmail.com -- You received this message because you are subscribed to the Google Groups Android Developers group.

[android-developers] Re: My Camera view is overlapping GLSurfaceView... but i want that it gets overlayed by GLSurfaceView

2011-10-05 Thread saex
i checked that in Android 2.2.2 (motorola Droid) it works perfect, but if i test it on versions from 1.5 to 2.1, then it works bad, the cameraview overlapps the other views... i checked also that if i invert the position of the views on the contentview of my app (first the GLSurfaceView, after

Re: [android-developers] Re: Browse .apk structure on android phone and compute file digest

2011-10-05 Thread Nikolay Elenkov
On Wed, Oct 5, 2011 at 5:06 PM, Leo leonidthek...@gmail.com wrote: OK, The apk file is not unpacked after installation, it stored as is inside android either in internal memory or on SD-card in android- secure directory. Here is the code that I wrote to access the CERT.RSA file from inside

[android-developers] How to highlight a focused item in a custom list view ?

2011-10-05 Thread abi
How to highlight a focused item in a custom list view ? Please Suggest. -- 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

RE:[android-developers] How to highlight a focused item in a custom list view ?

2011-10-05 Thread tonypopsonic
set the property in the layout file. --- Sent from ShangMail:Travel with free pushmail www.shangmail.com -- 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] Access Pc from android Device

2011-10-05 Thread Sebs
hi, we are having an requirement where we need to access a file from computer to our android device. Please any one can direct us where to look for. Regards, Sebs -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this

[android-developers] Retrieving Android API version programmatically on Android 1.5?

2011-10-05 Thread saex
Hi I know that it is possible to do it with version 1.6 or higher with this code: int currentapiVersion = android.os.Build.VERSION.SDK_INT; if (currentapiVersion = android.os.Build.VERSION_CODES.FROYO){ // Do something for froyo and above versions } else{ // do something for phones

Re: [android-developers] In-app Billing - not working on 1.6 2.1

2011-10-05 Thread Kostya Vasilyev
2011/10/5 Sheado chad...@gmail.com Hello, In-app billing doesn't seem to be working on 1.6 2.1. I'm testing with the Dungeons sample app and purchasing android.test.purchased. Same issue in my own app. I just ran a quick test on a 2.0.1 device, and it worked - for an app that's in

[android-developers] Re: How to highlight a focused item in a custom list view ?

2011-10-05 Thread abi
Thanks for your reply. My custom list view consists of Relative Layout with textviews and an image view. I need to highlight(that orange color) the selected row while focussing.. Please Suggest.. On Oct 5, 2:03 pm, tonypopsonic tonypopso...@gmail.com wrote: set the property in the layout file.

Re: [android-developers] Setting Screen Orientation in Service!!

2011-10-05 Thread Marcin Orlowski
And why you want to enforce certain screen orientation for non UI element like service? It's makes no much sense. If you really need certain orientation for your *Activity*, enforce it there, either via code or manifest. Otherwise keep your hands off of this unless you love users to give you

RE:[android-developers] Access Pc from android Device

2011-10-05 Thread tonypopsonic
first,which dir u want to access. u need root the device if u want to access the system private dir. then,u could acess the device via adb interface. --- Sent from ShangMail:Travel with free pushmail www.shangmail.com -- You received this

[android-developers] Black screenon starting a VideoView

2011-10-05 Thread Guian
Android video view is displaying a big black screen when opening a video for first time before playing for some miliseconds. then Video is playing fine.But how to remove that black screen while playing the video ? I'm using a VideoView integrated in my layout. when the videoview start playing, it

[android-developers] K7 mid OMAP issues

2011-10-05 Thread Anoop C
Hello, I purchased K7 mid omap3530. Inside SD card already have Android2.1 and WinCE.. But that platform will not support for video conference.. So i plan to move to Android2.2. Currently we have no link to download those binaries and i seen that Android 2.2 released for K7 mid. Also in

Re: [android-developers] Access Pc from android Device

2011-10-05 Thread Sebastin Basimalla
Thanks for advice but i don't want to root the device. But still is it possible to access the files. On Wed, Oct 5, 2011 at 3:07 PM, tonypopsonic tonypopso...@gmail.com wrote: first,which dir u want to access. u need root the device if u want to access the system private dir. then,u could

[android-developers] Re: Question about accented characters in Android Sqlite

2011-10-05 Thread lbendlin
http://www.sqlite.org/faq.html#q18 -- 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] Re: Retrieving Android API version programmatically on Android 1.5?

2011-10-05 Thread lbendlin
Integer.parseInt(Build.VERSION.SDK); -- 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] Re: LinearLayout Rotation Issue

2011-10-05 Thread Chenna
any one help me this? On Oct 4, 5:22 pm, Chenna chenn...@gmail.com wrote: Hi I am forced to fix my CameraPrview Activity in landscape. Now i am adding buttons on top of surface with linear layout and rotating the same with Animation. After rotating my buttons are not clickable. before

[android-developers] Re: Dismiss dialog

2011-10-05 Thread Naveen
yes i am talking abt single application, suppose appllication X i have opened dialog and i went to settings application throgh task manager. Their i will change font style, and will return back to application X, application X will refreshed and it will recreated. but dialog is not dismissed. how

Re: [android-developers] Re: Dismiss dialog

2011-10-05 Thread Kostya Vasilyev
If you don't want this behavior, don't use a managed dialog. Create and show the dialog without going through Activity.showDialog() / onCreateDialog(), save reference as a member variable, call mMyDialog.dismiss() on your activity's onPause or onStop. -- Kostya 05.10.2011 15:49, Naveen

[android-developers] activity running in background problem

2011-10-05 Thread Rafael Maas
I have a IM client and this is my scenario: activity A starts activity B. The user press back and activity B goes background. After ~30 minutes android kill activity B ( This is a normal android behavior... i know :P) I try to set alwaysRetainTaskState =true and launchMode=singleTask in activity

[android-developers] Re: How to implement the iphone style multitouch zoomIn zoomOut to a polygon on a GLSurfaceView?

2011-10-05 Thread saex
too hardly explained and bad examples for this case code examples that does this will be apreciated On 4 oct, 17:54, Studio LFP studio@gmail.com wrote: Check this post out: http://android-developers.blogspot.com/2010/06/making-sense-of-multit... Information from the source, the best

[android-developers] Re: Retrieving Android API version programmatically on Android 1.5?

2011-10-05 Thread saex
that method is deprecated, i hope they will not remove it to suport this function in Android 1.5 On 5 oct, 13:43, lbendlin l...@bendlin.us wrote: Integer.parseInt(Build.VERSION.SDK); -- You received this message because you are subscribed to the Google Groups Android Developers group. To post

[android-developers] Re: filewriter

2011-10-05 Thread leigh8347
Well that is the problem. I cant seem to fine any info on how to do it. I can fine bit and bobs. But when tryed to put together nothing works. Any ideas? On Oct 5, 12:00 am, TreKing treking...@gmail.com wrote: On Tue, Oct 4, 2011 at 4:36 PM, leigh8347 leigh8...@aol.com wrote: any help would

Re: [android-developers] Re: Retrieving Android API version programmatically on Android 1.5?

2011-10-05 Thread Mark Murphy
Deprecated in Android generally means we will support it as long as possible, but we think that there is a better option. In this case, I would be surprised if Build.VERSION.SDK is removed within the next decade. On Wed, Oct 5, 2011 at 8:02 AM, saex elpablos...@gmail.com wrote: that method is

[android-developers] why process give null inputstream in test runner class?

2011-10-05 Thread Addy
Hi All, In my android test project, I am imply read the logcat using adb command like, public StringBuilder log=new StringBuilder(); public String line=; public String temp=; public void testSolo() throws Exception { String baseCommand = logcat -v time;

Re: [android-developers] Android is worst os mobile is this true

2011-10-05 Thread Vinay Julme
First of all Wanyce, your english sucks. And Arabic support is there in Android since 2010. Android is Open source. Who said its not? Features are developed over the time so in some time all the features would be available and it would have even those features which you also couldn't think at

Re: [android-developers] Access Pc from android Device

2011-10-05 Thread Kristopher Micinski
No Kris On Wed, Oct 5, 2011 at 7:16 AM, Sebastin Basimalla basimallasebas...@gmail.com wrote: Thanks for advice but i don't want to root the device. But still is it possible to access the files. On Wed, Oct 5, 2011 at 3:07 PM, tonypopsonic tonypopso...@gmail.com wrote: first,which dir u

[android-developers] Re: Relative TIme Diff for Mysql Timestamp

2011-10-05 Thread ArcDroid
I use php that returns a json object that is from a mysql db :-) On Oct 5, 12:04 am, Zsolt Vasvari zvasv...@gmail.com wrote: You useMySQLon Android? On Oct 4, 1:42 pm, Studio LFP studio@gmail.com wrote: Are you wanting to compare the time in Android or have the database query in

Re: [android-developers] Setting Screen Orientation in Service!!

2011-10-05 Thread Sebastian Tomaszewski
Marcin, Point well taken, but this doesn't help me... Just a side note, my APP will not be published on the market.Again your comment doesn't help me here, but thanks... Sebo On Wed, Oct 5, 2011 at 2:26 AM, Marcin Orlowski webnet.andr...@gmail.comwrote: And why you want to enforce

Re: [android-developers] Re: filewriter

2011-10-05 Thread Nick Risaro
First learn java, then read about streams, readers and writers, if still you can work it out come back with some code. On Wed, Oct 5, 2011 at 9:06 AM, leigh8347 leigh8...@aol.com wrote: Well that is the problem. I cant seem to fine any info on how to do it. I can fine bit and bobs. But when

Re: [android-developers] Re: filewriter

2011-10-05 Thread TreKing
On Wed, Oct 5, 2011 at 7:06 AM, leigh8347 leigh8...@aol.com wrote: But when tryed to put together nothing works. Any ideas? When asking for help, nothing works is not terribly useful information. First, follow Nick's advice. Second, if you still have trouble, ask on a Java-specific group /

Re: [android-developers] Re: How to implement the iphone style multitouch zoomIn zoomOut to a polygon on a GLSurfaceView?

2011-10-05 Thread Kostya Vasilyev
Pretty easy, actually: Step 1: Download an Apple iOS 5 system image. Step 2: Install the iOS image on your Android phone. Step 3: Refer to Apple's documentation on multitouch zoom. Done! -- Kostya 05.10.2011 16:01, saex пишет: too hardly explained and bad examples for this case code

[android-developers] Re: Relative TIme Diff for Mysql Timestamp

2011-10-05 Thread Chris
On Tuesday, October 4, 2011 12:25:39 AM UTC-4, ArcDroid wrote: What is the best way to get the relative difference of a mysql timestamp such as: 2011-07-14 19:27:40 vs. 2011-07-14 19:25:30 http://www.arcdroid.com Create Date objects using DateFormat to parse your formatted strings,

[android-developers] Serializable subclass of non-serializable class

2011-10-05 Thread Jean-Michel
Hi there, I am hitting a brickwall with serialization of a subclass of Location (probably more a Java question actuall, but let's try anyway). Location is not serializable. I have a first subclass called FALocation that does not have any instance variables. I have declared it serializable. Then

[android-developers] Re: Relative TIme Diff for Mysql Timestamp

2011-10-05 Thread Studio LFP
If you have a decent version of MySQL, I would have it return a Unix timestamp and just do a seconds comparison. I noticed your other comment about comparing millis, but not quite understanding why you would have an issue with this? Unless the server you use is under a large load all the time,

[android-developers] Re: How to implement the iphone style multitouch zoomIn zoomOut to a polygon on a GLSurfaceView?

2011-10-05 Thread Studio LFP
Not quite understanding the hard part, it's pretty step by step. GLSurfaceView is just another view and can accept touch just like anything else. You don't have to make a new subclass like he did, just use the touch code to catch the multi-touch on the GLSurfaceView. Steven Studio LFP

Re: [android-developers] Serializable subclass of non-serializable class

2011-10-05 Thread Daniel Drozdzewski
On 5 October 2011 15:09, Jean-Michel jeanmichel.caz...@gmail.com wrote: Hi there, I am hitting a brickwall with serialization of a subclass of Location (probably more a Java question actuall, but let's try anyway). Location is not serializable. I have a first subclass called FALocation that

[android-developers] Re: help for SMS schdular

2011-10-05 Thread Studio LFP
See my post here for a Alarm Manager example: https://groups.google.com/d/msg/android-developers/FKxXx0KiHQ4/YhQznlYcDCQJ Steven Studio LFP http://www.studio-lfp.com -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group,

[android-developers] Re: Android setImageUri not working with asset Uri

2011-10-05 Thread Ash McConnell
Hi pskink, Just getting round to trying this now due to family illness. It works great :). Thanks for taking the time! Do you know if it could be used to load 9 patch files using Uri's by any chance? It would be great if I could skin my widgets with 9 patch bitmaps. Thanks again, All the

[android-developers] Re: How to implement the iphone style multitouch zoomIn zoomOut to a polygon on a GLSurfaceView?

2011-10-05 Thread saex
i'm not using canvas, and these strange scale factors, i can't apply these system into my code On 5 oct, 16:43, Studio LFP studio@gmail.com wrote: Not quite understanding the hard part, it's pretty step by step. GLSurfaceView is just another view and can accept touch just like anything

[android-developers] Re: Serializable subclass of non-serializable class

2011-10-05 Thread Jean-Michel
No, I am serialising to disk. Do you think it could work out? Any idea how to use Parcelable ? Many thanks, Jean-Michel On 5 oct, 16:43, Daniel Drozdzewski daniel.drozdzew...@gmail.com wrote: Now luckily for you, Location in Android implements Parcelable interface, which could be of help,

Re: [android-developers] Re: Serializable subclass of non-serializable class

2011-10-05 Thread Daniel Drozdzewski
On 5 October 2011 16:20, Jean-Michel jeanmichel.caz...@gmail.com wrote: No, I am serialising to disk. Do you think it could work out? Any idea how to use Parcelable ? Many thanks, Jean-Michel Jean-Michel, Parcelable is used for inter-process communication and is designed specifically

[android-developers] Re: Serializable subclass of non-serializable class

2011-10-05 Thread Jean-Michel
Daniel, sorry to be a pain in the bum, but there are still 2 things I cannot figure out. First I am not sure what you mean by DTO, but from what I understand it is basicaly a place holder for the data in my non-serilizable class. I understand how to transfer dta (the one I care about) between

Re: [android-developers] overlapped nodes in graph

2011-10-05 Thread TreKing
On Wed, Oct 5, 2011 at 12:55 AM, bhumi kania bska...@gmail.com wrote: I had made one graph of connected nodes but at some portion the nodes are overlapped on each other. Any one can help me in that. I know I have to implement any algorithm that will remove the overlapping. but is there any

Re: [android-developers] Adding raw folder to a native app

2011-10-05 Thread TreKing
On Wed, Oct 5, 2011 at 2:40 AM, sriram srimc...@gmail.com wrote: I have downloaded the android source code Try a more relevant group dealing with building the source. This group is for using the SDK.

[android-developers] Re: cursor.moveToFirst() cursor.moveToLast() time consuming issue with sqlite database.

2011-10-05 Thread lbendlin
you won't be cramming these 17000 records into a list anyhow. Simply limit your SQL query accordingly so that the cursor holds no more items than you can reasonably scroll through. If you use buttons for navigation then you can even recreate the cursor with each button press and still be MUCH

Re: [android-developers] activity running in background problem

2011-10-05 Thread TreKing
On Wed, Oct 5, 2011 at 6:58 AM, Rafael Maas rafaelm...@gmail.com wrote: activity A starts activity B. The user press back and activity B goes background. In this case, activity B does not go background, it gets destroyed. After ~30 minutes android kill activity B ( This is a normal android

[android-developers] Re: activity running in background problem

2011-10-05 Thread lbendlin
Why is an activity in the background for so long? You should use a service for non-UI tasks. -- 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] EditText: numeric input size

2011-10-05 Thread John Goche
Hello, I have an EditText which contains an integer. I am trying to confine its values to 4 digits as follows: EditText android:id=@+id/foo android:inputType=number android:maxEms=4 android:textSize=20dp android:layout_height=wrap_content

Re: [android-developers] EditText: numeric input size

2011-10-05 Thread Kostya Vasilyev
Try using android:maxLength MaxEms has to do with the appearance, not data entry. 05.10.2011 21:05, John Goche ?: Hello, I have an EditText which contains an integer. I am trying to confine its values to 4 digits as follows: EditText android:id=@+id/foo

[android-developers] Re: Scrolling in TableView

2011-10-05 Thread Mobil Tester
Solution is to put the table insede a ScrollView, which is inside a HorizontalScrollView. Best, Johan On 28 Sep., 22:02, Mobil Tester pdctes...@gmail.com wrote: Hello, I have aTableViewthat gets truncated, if it is larger than the screen. Most of the time, it is small enough to be shown on

[android-developers] Slideshow in iframe is intermittently responsive

2011-10-05 Thread Head United
Hello. I am running the Supersized jquery slideshow in an iframe. It works perfectly in every major browser, including Mobile Safari, but it doesn't work properly in the Android browser. I've tested it on a couple of phones, as well as the 2.3.3 emulator, and the same thing happens: The buttons

[android-developers] Letting other apps know about Intent extras keys

2011-10-05 Thread Joshua Sera
Is there an accepted way of letting other apps know about the keys your app uses for intent extras? At the moment, I guess you can stick them in R.strings, although I think that's bad, since R.strings seems like it should only be for localization. -- You received this message because you are

[android-developers] Location security settings

2011-10-05 Thread Andrei
How can I call activated (Location security settings), from its application. ? Is it possible? [url=http://www.radikal.ru][img]http://s41.radikal.ru/ i093/1110/17/77caedf2b2eb.png[/img][/url] -- You received this message because you are subscribed to the Google Groups Android Developers group.

[android-developers] Text cursor invisible for custom EditText

2011-10-05 Thread Han
Help needed! I created a custom textbox for input. Keys append fine as I click through the keypad. However for some reason the text cursor is not showing up. What can I possibly missed? Pls advice. p.s I tried editText.setCursorVisible(true) I also considered the possibility that the cursor is

[android-developers] Reduce Application Heap size

2011-10-05 Thread Karthik
Hi Guys, I am Karthik, am new of this forum, I have developed a Background Application(Not used more image files). which is having 3 services, each service is taking around 4MB heap size. Actually i have to reduce the heap size. How to do this? -- You received this message because you are

[android-developers] Creating custom grammar in voice recognition

2011-10-05 Thread Krushikanth Reddy
Hi.. I want to develop a voice recognition application where i can define a Customized grammar(finite number of words). So, whenever user speaks anything, voice recognizer should search from our customized grammar and display the result. Is there any way to do this?? API states that there are

[android-developers] Omg what's wrong with my emulator! :*( somebody help lol

2011-10-05 Thread Mr Jason
Gouud, you know what?.. my emulator is sosososo slow and it just won't let me progress of my learning fast enough. I mean emulator is slow when it is booting my activity. It gave me tooo much stress over past few days and I started to look up some solutions to make it load my activity fast

[android-developers] OpenGL ES texture origin differs from top/left to bottom/left on different phones

2011-10-05 Thread Doctor Mozg
I'm currently developing an NDK-based OpenGL ES 2.0 app. And i'm loading textures using libjpeg flipping it vertically (as OpenGL standard says). It works fine on Samsung Galaxy SII, HTC Desire HD and so on (+ Windows's SDL implementation). But on some phones (like Samsung Galaxy S GT-I9000 by

[android-developers] Creating Regions from Paths (or Path intersection)

2011-10-05 Thread Michael Nguyen
I'm a new Android developer that's developing a simple twist on the Tron game with GPS movement, but I'm having trouble implementing player's intersecting. Right now, my player's trails are Paths that I move to co-ordinates and draw the co-ordinate difference as a line on the canvas. The

[android-developers] Reduce Application Heap size

2011-10-05 Thread Karthik
Hi Guys, I am Karthik, am new of this forum, I have developed a Android Background Application(Not used more image files). which is having 3 services, each service is taking around 4MB heap size. Actually i have to reduce the heap size. How to do this? -- You received this message because

[android-developers] Runs on emulator but throws exception on Galaxy S II 2.3.3

2011-10-05 Thread Matt Hawkins
I've got an issue with a paid app I've got on the Market Place (BitCalc Pro). It runs fine on my HTC Desire and runs fine on emulated 2.2, 2.3 and 2.3.3 devices. However a user reports it doesn't work on a Samsung Galaxy S II running 2.3.3. My code performs a calculation within a TRY block

[android-developers] Tel: and SMS: URIs

2011-10-05 Thread Scott Miller
Hi there, I am trying to create a mobile site, which hopefully will become an app as well. but I cannot get it to do exactly what I want. I have created links to activate voicemail a href=tel:**61*121**25%23Activate Voicemail/a is there a way for msend the request automatically, without the need

[android-developers] How I Make the flashing screen in android

2011-10-05 Thread Devang Sharma
Hello everyone please may you tell me how i can turn off back light of android device, i try through the setBrightness method but it not works on emulator My main task is to develop a application in which on some event I have to notify the user like by alarm in which a Flashing or Blinking

[android-developers] Re: How to implement the iphone style multitouch zoomIn zoomOut to a polygon on a GLSurfaceView?

2011-10-05 Thread crissgoodlookingguy
There's an easier way use Adobe AIR. *Simples* On Oct 4, 4:42 pm, saex elpablos...@gmail.com wrote: i have an application that shows a simple square polygon represented on a GLSurfaceView. Actually i can do zoomIn and zoomOut with two buttons. But now i want to implemente the iphone

[android-developers] What is the right way to connect to a ssl server by using ssl socket class ?

2011-10-05 Thread Chen Yee Tan
Server has verisign cert in java keystore file. In android application, I used below code to connect: Socket socket = SSLSocketFactory.getDefault().createSocket(domain, port); DataInputStream dataInputStream = new DataInputStream(socket.getInputStream From my debug in application, I got

[android-developers] Re: Keep app from restarting when touching icon from Home screen

2011-10-05 Thread Abe Pralle
Same problem here. I've got a Unity app that's launching a video player as a secondary activity. If I hit HOME and then do a regular app launch it resumes Unity but not my video player. If I hit HOME, then long-press HOME and launch the app from the recent list, it resumes on my video player

[android-developers] Re: runs on emulator crashs on galaxy s

2011-10-05 Thread Matt Hawkins
Did you ever solve this issue? I've got the same situation. Runs fine on the emulators but throws an exception on the Galaxy S II running Android 2.3.3. -- 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] C2DM PHP Server

2011-10-05 Thread BearGr
Hi, is there a good tutorial or an example for a c2dm server based on php? 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 unsubscribe from this group, send

[android-developers] Re: aapt crashes with -v

2011-10-05 Thread Travis
I can confirm Quick Draw's findings. For me AAPT would crash on every build if I enabled verbose logging. I found one of my drawables that was the same name as a drawable in a dependent Android project and after renaming it every thing works fine. -- You received this message because you

[android-developers] Re: Setting Screen Orientation in Service!!

2011-10-05 Thread Vishal Keshav
you need to install an application called sbj screen -- 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] Which android phone has VDP for bluetooth?

2011-10-05 Thread apprentice
My project consists of two Android Phones, the first phone will be the camera while the other will be the receiver, the video will be streamed using bluetooth, and I am planning to use two Samsung Ace GT5830. -- You received this message because you are subscribed to the Google Groups Android

[android-developers] Units of measurement

2011-10-05 Thread niels
Hi all, I'm really stuck with a problem concerning the real size of objects displayed on the screen. What I simply want to do is, to display an object on the screen, scaled to a width of 2 inches. I don't understand why, but Android offers at least three units to do this: dp (device independent

[android-developers] [Development] Android Mario Game Project

2011-10-05 Thread Aristostasdad
i would be very grateful if you help me out or help me reach someone to help me out . Here is the subject: I have been undertaken an android mario game project for my Senior Project at university. And i was wondering where can i find the handy maps of the game to embed in my project? Where can i

[android-developers] Re: EditText and the unwanted Quick Search Box

2011-10-05 Thread Alvaro Victor Cavalcanti
I'm facing the same problem here, but under different circumstances. I've also a standard and simple EditText, but my Avtivity does not have any special behaviour. At first, it's superclass implemented OnClickListener, which was overridden by the activity, and we removed that. Each callback

[android-developers] problem in parsing content loading

2011-10-05 Thread Munsif Rehamn
HI , my name is munsif, and i m student of Mcs , and i m doing my final year project in android i have facing this problem, ‘Android SDK Content Loader’ has encountered a problem. parseSdkContent failed. ‘ parseSdkContent failed java.lang.NullPointerException. -- You received this message

[android-developers] Re: Access Pc from android Device

2011-10-05 Thread harshita atri
how can we root the device using adb interface? -- 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

Re: [android-developers] Re: Setting Screen Orientation in Service!!

2011-10-05 Thread Sebastian Tomaszewski
Thank you for your reply... I will look on this On Tue, Oct 4, 2011 at 11:27 PM, Vishal Keshav bulletcr...@gmail.comwrote: you need to install an application called sbj screen -- You received this message because you are subscribed to the Google Groups Android Developers group. To post

Re: [android-developers] Runs on emulator but throws exception on Galaxy S II 2.3.3

2011-10-05 Thread Kostya Vasilyev
For a one-off bug investigation - if the user wants to help, just make a special build with logging enabled (or whatever changes you need), sign it with your release certificate, and email it to him/her. No need to upload this version to Market. -- Kostya 05.10.2011 11:17, Matt Hawkins

Re: [android-developers] Re: Setting Screen Orientation in Service!!

2011-10-05 Thread Sebastian Tomaszewski
Quick question, does it rquire rooting the phone? On Tue, Oct 4, 2011 at 11:27 PM, Vishal Keshav bulletcr...@gmail.comwrote: you need to install an application called sbj screen -- You received this message because you are subscribed to the Google Groups Android Developers group. To post

  1   2   >