[android-developers] Re: Publish .APK on a website, not in Android Market?

2011-08-04 Thread gjs
Hi, Don't forget to set the correct .apk mime type in your webserver. Regards On Aug 4, 6:39 am, nadam a...@anyro.se wrote: You can easily test this yourself. Just put the apk on your webserver and point your mobile browser to that link. On your site you might want to include information

[android-developers] SMS-SentItems Delete

2011-08-04 Thread subha
Hi Developers, Im successfully sent sms via android application, next i want to delete that particular sent msg. anybody have any idea? Thanks in Advance, subha. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send

Re: [android-developers] Re: Android -- the forgotten real fragmentation

2011-08-04 Thread Miguel Morales
That's odd, I just tried it and indeed it only works for 3.7.x version. Looking up the error brought up this page: http://www.sqlite.org/draft/wal.html Particularly the part of backwards compatibility. Seems that something happened with that file, or it was in the middle of an operation or

[android-developers] Live Stream To Android 2.1 from camera streaming over RTSP in h.263 format

2011-08-04 Thread deepak
I am looking to create a streaming solution to stream live video from IP Cameras which streams over RTSP in H.263 Format to android phones running on 2.1. From my understanding Android supports RTSP in H.263 Format. So i think i need to find a solution to route these streams to the android

[android-developers] Re: Android -- the forgotten real fragmentation

2011-08-04 Thread Zsolt Vasvari
Seems that something happened with that file, or it was in the middle of an operation or something. No, it wasn't. This is reproducible 100% of the time and the file is not corrupted as it's openable and readable by 3.7. -- You received this message because you are subscribed to the Google

[android-developers] Re: close cursor

2011-08-04 Thread Dev_red
Thank you very much. but i am getting this error.. Finalizing a Cursor that has not been deactivated or closed. database = /data/data/com.android.myproject/databases/sampleDB, table = n ull, query = select * from TableName E/Cursor ( 863):

Re: [android-developers] Re: Android -- the forgotten real fragmentation

2011-08-04 Thread Miguel Morales
It's still possible despite that, read the link I posted. If the file was in some sort of unfinished operation where the write ahead log it will change the file format. The file would still be readable by 3.7 by not by anything below. Read the file to determine its version. Or send it over to

[android-developers] android text dispalying in multiline

2011-08-04 Thread arun kumar
Hi am having a text on the button when am changing the screen size of the emulator half of the text on the button is displaying on the nextline i made some modification by giving android:singleLinetrue but no change in the output... thanks -- You received this message because you are

[android-developers] Re: Android -- the forgotten real fragmentation

2011-08-04 Thread Zsolt Vasvari
It's all created by Java using only the standard android.database package. It's the initial database created by my app using CREATE TABLE, CREATE INDEX and some INSERT INTO SQL commands for populating the default data. Nothing fancy or non-standard at all. On Aug 4, 2:22 pm, Miguel Morales

[android-developers] Re: Strange effects on Android's truetype decoder

2011-08-04 Thread gjs
Hi, Do you get the same result if you use Rect.height() ? In the source I see here http://www.java2s.com/Open-Source/Android/android-core/platform-frameworks-base/android/graphics/Rect.java.htm /** * @return the rectangle's height. This does not check for a valid rectangle * (i.e. top = bottom)

[android-developers] Re: Android -- the forgotten real fragmentation

2011-08-04 Thread Zsolt Vasvari
This is what the end of the article says: To prevent older versions of SQLite from trying to recover a WAL-mode database (and making matters worse) the database file format version numbers (bytes 18 and 19 in the database header) are increased from 1 to 2 in WAL mode. Thus, if an older version of

[android-developers] arun image click problem

2011-08-04 Thread arun kumar
Hi am having imageview. when i click on the imageview a icon will appears.again if i click on that imageview (force close the application error is diplaying ...(in the logcat illegal state exception is raising) ...suggest me on this problem how can i rectify. Thankyou -- You received

[android-developers] Any Alternative for Google Places and Directions API??

2011-08-04 Thread Rikki
Hi, I am trying to develop a POI search application using google maps. But according to Google Terns, the app has to be publicly available without charge. Can I use something else instead of using google APIs which can solve the purpose and also be freely available? All suggestions/pointers are

Re: [android-developers] Re: Android -- the forgotten real fragmentation

2011-08-04 Thread Miguel Morales
Yeah, that's right. That makes sense. I was going to try to read the bytes in and display the version but I'm too tired. But seems like that's the culprit of the issue. There might be a way of turning that off. On Wed, Aug 3, 2011 at 11:31 PM, Zsolt Vasvari zvasv...@gmail.com wrote: This is

Re: [android-developers] Re: Android -- the forgotten real fragmentation

2011-08-04 Thread Miguel Morales
Ok, so this is weird. It seems that WAL mode is being activated from the java code. I just opened the bad database file in 3.7x and ran the command: PRAGMA journal_mode=DELETE to disable WAL. I was then able to open the database file in the 3.6x version. On Wed, Aug 3, 2011 at 11:56 PM, Miguel

[android-developers] Multi Style with external fonts

2011-08-04 Thread Paolo
Here my problem: I have a string formatted like this in string.xml My string is bmulti style/b and use external font and I have two external fonts one for regular and one for bold (DINR.ttf and DINBD.ttf) I want to set the string above with my fonts. I've written this static method: public

Re: [android-developers] Re: Android -- the forgotten real fragmentation

2011-08-04 Thread Nikolay Elenkov
On Thu, Aug 4, 2011 at 4:00 PM, Miguel Morales therevolti...@gmail.com wrote: Ok, so this is weird.  It seems that WAL mode is being activated from the java code. I just opened the bad database file in 3.7x and ran the command: PRAGMA journal_mode=DELETE to disable WAL.  I was then able to

[android-developers] Re: close cursor

2011-08-04 Thread Paul Turchenko
Make sure yoy are not reopening batabase after you've opened it. On Aug 4, 1:19 am, Dev_red sktniranjanad...@gmail.com wrote: Thank you very much. but i am getting this error.. Finalizing a Cursor that has not been deactivated or closed. database =

[android-developers] How to change color for item selected in Gallery

2011-08-04 Thread Paolo
I've done a Gallery view composed by just textviews as numbers. By default if I don't set any colors the item in the centre is black. I want to change it. Using a selector it doesn't work, any ideas? UPDATE: if I try to use a selector also the default behavior gone and I can see only grey

[android-developers] Re: Android -- the forgotten real fragmentation

2011-08-04 Thread Zsolt Vasvari
Is this in the CM source code? I don't see this in the Android 2.3 source tree. On Aug 4, 3:05 pm, Nikolay Elenkov nikolay.elen...@gmail.com wrote: On Thu, Aug 4, 2011 at 4:00 PM, Miguel Morales therevolti...@gmail.com wrote: Ok, so this is weird.  It seems that WAL mode is being activated

[android-developers] Re: Application not found at android market on Samsung galaxy mini

2011-08-04 Thread Sudeep
any suggestions please. On Aug 3, 4:51 pm, Sudeep Jha sudeep.neti...@gmail.com wrote: Hi All, The below application is not found at Android Market on Samsung galaxy Mini.Was able to download on other Samsung galaxy phones.   goog_1544198104*RAKBANK mobile

[android-developers] Edittext Error width and height

2011-08-04 Thread Duygu Kahraman
Hi; In my project i used edittext in xml.Problem is when i scale bigger (edit android:layout_width=250dip android:layout_height=300dip) writeable field start center and when you write something this field words is going to up.When you write lots of word you cannot reach these because you cannot

Re: [android-developers] Issue with screen layout in 3.2

2011-08-04 Thread Vector-Code
Diane, I must say I'm very disappointed at how quick you were to respond to discount that a problem might exist, yet silent when I provided further documemtation of the issue I'm seeing in 3.2. -- You received this message because you are subscribed to the Google Groups Android Developers

[android-developers] Re: AlignParentBottom in RelativeLayout (wrap_content)

2011-08-04 Thread Mark Gjøl
I just tried that, problem now is that I need my view rendered before the image, such that the image is rendered on top of the view. I cannot reference a view that is defined later in the xml, and I can't seem to find an option to render a view below a previously rendered view. So I'm back to

Re: [android-developers] Re: AlignParentBottom in RelativeLayout (wrap_content)

2011-08-04 Thread Kostya Vasilyev
Yes you can use forward references inside relative layouts (starting with 1.6). Make sure to use @+id the first time a particular view id is needed - view references are one thing, id definitions, quite another. -- Kostya Vasilyev 04.08.2011 11:46 пользователь Mark Gjøl bitflips...@gmail.com

Re: [android-developers] Re: how to run apk remotely

2011-08-04 Thread Kevin Duffey
Is it possible for ur sales guys to bring a laptop? If so why don't you just set up adt on there laptops and a script that starts the emulator and app? I am not sure if u can do that stand alone or if you would need eclipse installed though. On Aug 3, 2011 5:34 PM, Peter Stacey

[android-developers] Re: AlignParentBottom in RelativeLayout (wrap_content)

2011-08-04 Thread Mark Gjøl
Ah, the +. Thank you very much, that solved my problem! - Mark Gjøl On Aug 4, 9:50 am, Kostya Vasilyev kmans...@gmail.com wrote: Yes you can use forward references inside relative layouts (starting with 1.6). Make sure to use @+id the first time a particular view id is needed - view

[android-developers] Re: DDMS Heap Dump permissions problem

2011-08-04 Thread lz
mrmanuke mrmanuke at gmail.com writes: Your suggestion led me to discover the problem, which was that my device was set so that whenever it was connected via USB, the SD card would be mounted by my development computer. I changed the Connect to PC setting to charge only and that fixed it.

Re: [android-developers] SMS-SentItems Delete

2011-08-04 Thread arun kumar
Cursor c = context.getContentResolver().query(Uri.parse(content:// sms/outbox), null,null, null, null); Log.d(TAG, Read + Integer.toString(c.getCount()) + SMS messages from content ( + Integer.toString(c.getColumnCount()) + columns));

[android-developers] Re: close cursor

2011-08-04 Thread Vladimir Svydenko
Hi, try it: ListT getData() { SQLiteDatabase sdb=this.getWritableDatabase(); ListT newList = new List; Cursor cur = sdb.rawQuery(select * from + manpowerLUTable,null); if (cur != null) {

[android-developers] Re: Any Alternative for Google Places and Directions API??

2011-08-04 Thread Zsolt Vasvari
Can I use something else instead of using google APIs which can solve the purpose and also be freely available? No. Why would anyone would give away such a valuable data for free? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post

[android-developers] Re: How to get selected contact from address book of phone

2011-08-04 Thread Amit Mangal
Hi Developers any one knows how to get contact number in string from address book. my code for opening address book is Intent intent = new Intent(Intent.ACTION_PICK, ContactsContract.Contacts.CONTENT_URI); startActivityForResult(intent, PICK_CONTACT); this

[android-developers] Uploading same .apk to Market as two different apps

2011-08-04 Thread Peter Webb
I have a free version of my wallpaper, does quite well. The paid version with a settings screen does very poorly. Having tried everything else, I want to offer my (current) paid version for free but have the identical software available as paid donationware. If I just upload the same .apk file

Re: [android-developers] Audio Recorder

2011-08-04 Thread Nico Balestra
Hi, you should do String name = Environment.getExternalStorageDirectory().getAbsolutePath() + /Logger; to get the right mount point for your sd card. Hope this helps. Nico 2011/8/4 Ab Caballero a...@mac.com I'm trying to provide an audio recorder within an application for the user to

[android-developers] How to change the Android system beep sound(when you adjusting the volume by the + or - key) behavior [where is the code that control it]?

2011-08-04 Thread fei wang
How to change the Android system beep sound(when you adjusting the volume by the + or - key) behavior [where is the code that control it]?**wangfei584...@163.com -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send

Re: [android-developers] How to change the Android system beep sound(when you adjusting the volume by the + or - key) behavior [where is the code that control it]?

2011-08-04 Thread Carl Lee
Find it in the system partition and replace it, you must have Root permission to do that On Thu, Aug 4, 2011 at 5:05 PM, fei wang philip584...@gmail.com wrote: How to change the Android system beep sound(when you adjusting the volume by the + or - key) behavior [where is the code that control

Re: [android-developers] Re: Android -- the forgotten real fragmentation

2011-08-04 Thread Nikolay Elenkov
On Thu, Aug 4, 2011 at 4:14 PM, Zsolt Vasvari zvasv...@gmail.com wrote: Is this in the CM source code?  I don't see this in the Android 2.3 source tree. Yes. Might be different in ASOP.

Re: [android-developers] How to change the Android system beep sound(when you adjusting the volume by the + or - key) behavior [where is the code that control it]?

2011-08-04 Thread fei wang
I preciate for your response. But where can i find the sound file? I have find it in all the source code tree,without any result! 2011/8/4 Carl Lee ljbha...@gmail.com Find it in the system partition and replace it, you must have Root permission to do that On Thu, Aug 4, 2011 at 5:05 PM, fei

Re: [android-developers] Uploading same .apk to Market as two different apps

2011-08-04 Thread Nikolay Elenkov
On Thu, Aug 4, 2011 at 5:48 PM, Peter Webb r.peter.w...@gmail.com wrote: If I just upload the same .apk file for both (excepting they were signed with different keys) will they be the same application on the phone, and specifically will they use the same preference file? This means I can use

[android-developers] Re: DDMS Heap Dump permissions problem

2011-08-04 Thread lz
lz zhangl.android at gmail.com writes: mrmanuke mrmanuke at gmail.com writes: Hi, I can't find the place you say: I changed the Connect to PC setting to charge only ..Could you tell me the way to change? Hi,I've resolved the problem .The reason of the problem is that I hadn't noticed

Re: [android-developers] Re: Android -- the forgotten real fragmentation

2011-08-04 Thread Mark Murphy
Sorry for tuning in late to the ongoing discussion... I ran into this with a developer back in January: http://stackoverflow.com/questions/4718934/sqlite-issues-with-htc-desire-hd In that case, it was an HTC Desire Z. I do hope that, if they enable WAL in stock Android someday, we get fair

[android-developers] Why is onTouch called 2 times for every touch?

2011-08-04 Thread MobileVisuals
My app uses a viewflipper to swith between a standard SurfaceView and a GLSurfaceView. It works like it should on my Samsung Galaxy S device. The problem is that onTouch() in the activity class gets called 2 times for every touch. This does not occur on my mobile device, but since it happens on

Re: [android-developers] Why is onTouch called 2 times for every touch?

2011-08-04 Thread Nikolay Elenkov
On Thu, Aug 4, 2011 at 8:07 PM, MobileVisuals eyv...@astralvisuals.com wrote: My app uses a viewflipper to swith between a standard SurfaceView and a GLSurfaceView. It works like it should on my Samsung Galaxy S device. The problem is that onTouch() in the activity class gets called 2 times

[android-developers] Re: Live stream to Android from ipcamera over RTSP

2011-08-04 Thread lbendlin
you are right, it is no longer on the Android Market. But if you search for RTSP there you find plenty of alternatives. -- 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] Re: Application not found at android market on Samsung galaxy mini

2011-08-04 Thread String
The immediately obvious thing is that the Galaxy Mini has a QVGA screen, meaning it falls into Android's small screen size bucket. If your manifest doesn't explicitly specify android:smallScreens=true in its supports-screens tag. This is well documented at

[android-developers] Re: Problem getting string from database

2011-08-04 Thread André
Some how I can't get that to work. I've made it work before exactly like you mentioned with info.id but now it doesn't work. This time I'm using a custom listview with checkboxes, could this have anything to do with it? I made a work around though, I added the _id when first filling the list as a

Re: [android-developers] Re: Problem getting string from database

2011-08-04 Thread Kostya Vasilyev
info.id comes from your adapter's getItemId(), and it's your code's responsibility to return something reasonable here (such as the _id column). Sounds like you did the right thing. 04.08.2011 15:43, André пишет: Some how I can't get that to work. I've made it work before exactly like you

[android-developers] I need a CamScanner like example

2011-08-04 Thread ricardocunha
Thre is a lot of applications for scam papper, like Genius Scan, CamScanner and others. I need a litle example to do image processing. There is a similiar open source, or Any one can send a tutorial about this? I´m interest on a image adjust. -- You received this message because you are

[android-developers] Android Client Authentication with Spring Security 3

2011-08-04 Thread Asuka
Hi Android Developers, I try to connect to a webapplication via my android client. In the webapplication we use spring security 3 to login. The relevant part of the login configuration looks like this: security:http auto-config='true' access-denied-page=/ accessDenied.html

[android-developers] Re: Film Use of Android Device

2011-08-04 Thread albnok
You may be better off recording from PC and emulator. But then Honeycomb is slow! On Jul 26, 7:32 pm, New Developer secur...@isscp.com wrote: could you please give me more of a help my knowledge and use of adb is weak Thanks in advance On Jul 25, 2011, at 11:23 PM, Kevin TeslaCoil Software

[android-developers] app issue report utility

2011-08-04 Thread hhenne
Hi, I'm developing a couple of apps with more than 20 activities in each. When pilot users/testers detect an issue it would be nice if they could - without leaving the view - write a report and send it as an email to support. From anywhere in the app they can make a certain gesture and a report

Re: [android-developers] Android Client Authentication with Spring Security 3

2011-08-04 Thread Daniel Drozdzewski
On 4 August 2011 13:27, Asuka c.bau...@gmx.de wrote: Hi Android Developers, I try to connect to a webapplication via my android client. In the webapplication we use spring security 3 to login. The relevant part of the login configuration looks like this: security:http auto-config='true'

Re: [android-developers] app issue report utility

2011-08-04 Thread TreKing
On Thu, Aug 4, 2011 at 7:38 AM, hhenne hhe...@gmail.com wrote: If anybody knows of anything like that I would appreciate a hint. ACRA - TreKing http://sites.google.com/site/rezmobileapps/treking -

[android-developers] Order Activity

2011-08-04 Thread Mark Cz
Hi All, I have 3 activities, lets call them A, B, C Activity A is the starting point of my applications: Activity A has two buttons: 1. Start Activity B 2. Start Activity C from Activity B, I can go to Activity C from Activity C, I can go to Activity B I want my Activity stack to be: A-B-C or

Re: [android-developers] Re: application not lauching on simulator when using google map api Installation error: INSTALL_FAILED_MISSING_FEATURE

2011-08-04 Thread Amit Mangal
I have attached my manifest file if you want to search where i have added librarary then search this !-- When i uncomment below line app not loading on simulator same code same emulator loads google map on other app -- search above written text in manifest file . same code same emulator runs if

[android-developers] EMAIL SMS

2011-08-04 Thread arun kumar
Hello all, I am developing one application. In that application i want to send email and sms to a particular user. -- 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

Re: [android-developers] EMAIL SMS

2011-08-04 Thread Nick Risaro
Cool, godspeed On Thu, Aug 4, 2011 at 10:51 AM, arun kumar hariarun2...@gmail.com wrote: Hello all, I am developing one application. In that application i want to send email and sms to a particular user. -- You received this message because you are subscribed to the Google Groups Android

[android-developers] Sound of a streaming on a web is played too fast.

2011-08-04 Thread JYP
Dear android developers. Goo First of all, I don't have good english skill. I have a Android Phone. And I tried to watch a video stream(?) on a web site. After done loading, start to play. But the sound is played too fast. At frist, I thought that the content has a problem. But another device

[android-developers] Re: Openssl for Android (libssl.so and libcrypto.so)

2011-08-04 Thread rickrvo
I've managed to build the ASOP and ran envsetup.sh but still can't find m and mm commands... :\ On 3 Ago, 06:41, Mike darksk...@gmail.com wrote: You get them from envsetup. Sh -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this

[android-developers] Re: Bluetooth SPP Service Discovery Intermittent but Persistent failures

2011-08-04 Thread ole!
Update: I've had so many problems with Bluetooth connections that I am updating this thread in hopes that others will be helped and a person with more Bluetooth knowledge can respond. Experimentation with other phones and BT devices indicates to me that the problem is not with the phones that I

[android-developers] Weird behavior when two applications with Similar Package names are installed

2011-08-04 Thread Alok Kulkarni
HI, I have written an app with base package as say a.b.c and for having multiple APKs to be installed at same time i create another project with base package as a.b.c.d.Both apps are signed with the same Release Key When i have both apps installed, sometimes calling an activity from 1st project

Re: [android-developers] Re: Openssl for Android (libssl.so and libcrypto.so)

2011-08-04 Thread Nikolay Elenkov
On Thu, Aug 4, 2011 at 11:13 PM, rickrvo rick...@hotmail.com wrote: I've managed to build the ASOP and ran envsetup.sh but still can't find m and mm commands... :\ Did you read the instructions? Or the shell script? Invoke . build/envsetup.sh from your shell to add the following functions to

Re: [android-developers] Re: application not lauching on simulator when using google map api Installation error: INSTALL_FAILED_MISSING_FEATURE

2011-08-04 Thread Raghav Sood
Does your computer have a microphone that the simulator may use? If not the uses microphone permission may cause this. I am not sure. Try double crossing your manifest for any features that might not be present on the emulator. On Thu, Aug 4, 2011 at 7:02 PM, Amit Mangal

[android-developers] How to delete a video file's entry from content provider

2011-08-04 Thread Raj
Hello, In my app, I've moved the recorded video to some other location. When I try to find the file from explorer, there is no file present (but obvious). But, an entry of that video (a thumbnail) is present in the gallery. When I click on that thumbnail, the video doesn't play. So, I want to

[android-developers] How to delete a video file's entry from content provider

2011-08-04 Thread Raj
Hello, In my app, I've moved the recorded video to some other location. When I try to find the file from explorer, there is no file present (but obvious). But, an entry of that video (a thumbnail) is present in the gallery. When I click on that thumbnail, the video doesn't play. So, I want to

[android-developers] Re: app issue report utility

2011-08-04 Thread hhenne
Hi TreKing, Thanks for pointing at ACRA, which I didn't know. Others may be interested - so here is a link: http://code.google.com/p/acra/wiki/AdvancedUsage#Sending_reports_for_caught_exceptions_or_for_unexpected_applicat ACRA means 'Application Crash Report for Android' but can also be used

[android-developers] Screen capture without translation and scaling

2011-08-04 Thread viktor
Hi, I draw shapes on canvas, than export canvas to file with bitmap, but when I doing that I save only visible area? I translate canvas by dragging. Is it possible to save all drawing area? -- You received this message because you are subscribed to the Google Groups Android Developers group.

[android-developers] Re: DategramSocket.receive returns after a long time

2011-08-04 Thread Heidi Zhou Nolan
It is HTC Desire Z A7272. All the phones are using WiFi connection. The connection is good. Thank you again. On Aug 4, 2:59 am, Indicator Veritatis mej1...@yahoo.com wrote: Then it is device specific, though it affects a surprisingly high number of devices. And are you sure you see it on the

[android-developers] Re: Openssl for Android (libssl.so and libcrypto.so)

2011-08-04 Thread rickrvo
I've read the instructions... and ran the envsetup.sh but didn't realize that it must be ran on the openssl folder and not on working_directory folder... after running from openssl folder: m -j16 clean-libcrypto clean-libssl clean-openssl clean-ssltest Couldn't locate the top of the tree. Try

Re: [android-developers] Order Activity

2011-08-04 Thread Mark Murphy
Use FLAG_ACTIVITY_REORDER_TO_FRONT as a flag on your Intent to bring an existing instance back to the foreground. On Thu, Aug 4, 2011 at 9:29 AM, Mark Cz ome...@gmail.com wrote: Hi All, I have 3 activities, lets call them A, B, C Activity A is the starting point of my applications: Activity

Re: [android-developers] Strange effects on Android's truetype decoder

2011-08-04 Thread David Turner
That's perfectly normal, text is hinted in the vertical direction by default on Android to make it more legible (and reduce glyph cache memory pressure). On Wed, Aug 3, 2011 at 9:06 PM, guich guiha...@gmail.com wrote: Hi, If you call Paint.setTextSize and set it to a wide range, like 7 to

[android-developers] Re: Audio Recorder

2011-08-04 Thread Ab Caballero
Hi, Nico. Thanks for the post. I did that in my checkStorage() method and it returns the path i am using. Any other thoughts? Andrew On Aug 4, 2:03 am, Nico Balestra nicobales...@gmail.com wrote: Hi, you should do String name = Environment.getExternalStorageDirectory().getAbsolutePath() +

[android-developers] Re: Strange effects on Android's truetype decoder

2011-08-04 Thread guich
Hi David, Is there a way to turn this off? I mean, disable the hint in vertical direction (i don't understand well what hinted is but i know its effects. :-D) thanks guich Ps jgs: rect.height returns the same result. -- You received this message because you are subscribed to the Google

Re: [android-developers] Re: Strange effects on Android's truetype decoder

2011-08-04 Thread David Turner
I believe this should do it: http://developer.android.com/reference/android/graphics/Paint.html#LINEAR_TEXT_FLAG On Thu, Aug 4, 2011 at 6:29 PM, guich guiha...@gmail.com wrote: Hi David, Is there a way to turn this off? I mean, disable the hint in vertical direction (i don't understand well

[android-developers] Re: instantiating widgets from an xml layout within a custom View class leads to nullpointerexception

2011-08-04 Thread CresCoJeff
So should I place the instantiation code (anotherB = (Button) findVieById(R.id.nextbutton)) inside the overridden onFinishInflate method then? Regardless, onFinishInflate doesn't appear to be getting called as I put a log output message inside it, and the log message is never recorded in logcat.

[android-developers] Live Wallpaper Orientation Changes

2011-08-04 Thread Moss
Hi there, I'm having trouble regarding my OpenGL LiveWallpapers (I'm testing it with libgdx, AndEngine and my own systems). The problem is that when the orientation changes the GL surface get's recreated and thus I have to reupload all my textures, vbo's etc which takes some time (2 seconds). So

[android-developers] Re: Strange effects on Android's truetype decoder

2011-08-04 Thread guich
Hi, Doing paint.setFlags(Paint.ANTI_ALIAS_FLAG | Paint.LINEAR_TEXT_FLAG); Results in the same behaviour. Would this work in any known OS version? thanks guich -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this

Re: [android-developers] Re: application not lauching on simulator when using google map api Installation error: INSTALL_FAILED_MISSING_FEATURE

2011-08-04 Thread Amit Mangal
Raghav i will try with commenting microphone but i tell you one thing if i remove this line uses-library android:name=com.google. android.maps / then i donot have any problem with my app it works well both on simulator and device . only uses-library android:name=com.google.android.maps / giving

[android-developers] WebView TextSelection + JavaScript issue in 3.1+ - solution opinions?

2011-08-04 Thread IcedNet
Hello All, Problem domain: WebView based ePub format reader need text highlights which are accessible via JavaScript methods (ie turn em on, turn em off, save them email them, etc) Anyone in the know, please correct me if I'm wrong: During text selection on a WebView -- Basically we are handed a

Re: [android-developers] Re: application not lauching on simulator when using google map api Installation error: INSTALL_FAILED_MISSING_FEATURE

2011-08-04 Thread Amit Mangal
Wow this is really great raghav i commented microphone google map is loaded this is really very interesting . thanks for help. please tell me one thing how will i add microphone if my device is having thanks On Thu, Aug 4, 2011 at 11:52 PM, Amit Mangal forum.amit.man...@gmail.comwrote:

Re: [android-developers] Re: application not lauching on simulator when using google map api Installation error: INSTALL_FAILED_MISSING_FEATURE

2011-08-04 Thread Raghav Sood
Practically all the devices have microphones. You will only need to comment it out if your a using the emulator. If you use the android market to distribute your app, and have the microphone permission present and activated then the market will automatically give it to only devices that have

[android-developers] Re: How to use Camera setPreviewCallback listener?

2011-08-04 Thread TurboMan
Yes, my class implements Camera.PreviewCallback. But, I see a statement like in the LogCat window. tagMessage ==== CameraEngine Skip 30 frames due to sensor stream on/off Am I missing something like setting

[android-developers] Re: How to use Camera setPreviewCallback listener?

2011-08-04 Thread TurboMan
Yes, I did, I can see the camera view except it doesn't call the preview callback. Regards TM -- 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] Re: How to use Camera setPreviewCallback listener?

2011-08-04 Thread TurboMan
Thanks, I'll have a look at this, but, I need to undestand why my code doesn't work. Has it got something to do with my coding? Regards TM -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

Re: [android-developers] Android Client Authentication with Spring Security 3

2011-08-04 Thread Kevin Duffey
I am wondering why you are making a call to a rest service and trying to keep state? Rest calls typically are stateless. You should pass the credentials each time and the rest service should validate those credentials each time. By storing a cookie you end up having to keep track of timeouts..

Re: [android-developers] Google Maps API Key no map shown in app

2011-08-04 Thread jtoolsdev
And if running the release key in an emulator or device the app will have to be signed. That might be the step skipped. -- 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] MonkeyRunner Start intent from java

2011-08-04 Thread Karthikeyan R
Hi, I am using MonkeyRunner from java. Could some one help me in starting a activity from monkeyrunner. I can see a function called startActivity but I am not sure on how to use it properly http://developer.android.com/guide/developing/tools/MonkeyDevice.html#startActivity It will be really

[android-developers] Re: Audio Recorder

2011-08-04 Thread Mike
make sure you have the proper permissions to record_audio and write_external_storage On Aug 4, 11:19 am, Ab Caballero a...@mac.com wrote: Hi, Nico. Thanks for the post. I did that in my checkStorage() method and it returns the path i am using. Any other thoughts? Andrew On Aug 4, 2:03 am,

[android-developers] Re: Payout much smaller than expected

2011-08-04 Thread Kevin TeslaCoil Software
On Aug 3, 11:32 am, Nikolay Elenkov nikolay.elen...@gmail.com wrote: On Thu, Aug 4, 2011 at 1:27 AM, Kevin TeslaCoil Software ke...@teslacoilsw.com wrote: Mine was split into 4% 96% and I only see the smaller one :(. Definitely will be contacting Google Checkout if I don't see the other

[android-developers] Horizontall scrollview without spacing. For honeycomb

2011-08-04 Thread Vladimir Svydenko
Hi, guys! I want to create an app to Honeycomb devices. But now have some problems: For vertical orientation I created at bottom of device fragment in which show some images. I want to scroll this images in horizontal way. I used Gallery. But Gallery has spacing in the start and end. How to avoid

[android-developers] XML/String Vs SqLite

2011-08-04 Thread Gaurav Agarwal
Hi I have to ask 500 questions from user in an android app should I save the question in res/values/strings.xml or create multiple string files(is this possible) or create an sqlite database? What are the advantages and disadvantages of each approach. We may need to change questions in future

[android-developers] Fwd: Join us for Android Programming Aug. 4th 2011 Webinar - Licensing

2011-08-04 Thread Sang Shin
Reminder. Starting in 45 minutes. Android Programming Aug. 4th 2011 Webinar - Licensing Join us for a Webinar on August 4 https://www3.gotomeeting.com/register/371131622 *Space is limited.* Reserve your Webinar seat now at: https://www3.gotomeeting.com/register/371131622 In

[android-developers] need source code

2011-08-04 Thread vipin saroha
hiii everybody can anybody tell me how to download source code files of a free android app. plz send me the links... plz reply thank you vipin -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

Re: [android-developers] need source code

2011-08-04 Thread Kumar Bibek
Ask the developer of the free app, if he is willing to share the source code. *Thanks and Regards, Kumar Bibek* * http://techdroid.kbeanie.com http://www.kbeanie.com* On Fri, Aug 5, 2011 at 1:51 AM, vipin saroha 1989sar...@gmail.com wrote: hiii everybody can anybody tell me how to download

Re: [android-developers] Re: Payout much smaller than expected

2011-08-04 Thread Jon F Hancock
I got mine in too. On Thu, Aug 4, 2011 at 12:59 PM, Kevin TeslaCoil Software ke...@teslacoilsw.com wrote: On Aug 3, 11:32 am, Nikolay Elenkov nikolay.elen...@gmail.com wrote: On Thu, Aug 4, 2011 at 1:27 AM, Kevin TeslaCoil Software ke...@teslacoilsw.com wrote: Mine was split into 4%

Re: [android-developers] need source code

2011-08-04 Thread Miguel Morales
Is the app open source? Is it a stock app? Have you tried googling it? On Thu, Aug 4, 2011 at 1:21 PM, vipin saroha 1989sar...@gmail.com wrote: hiii everybody can anybody tell me how to download source code files of a free android app. plz send me the links... plz reply thank you vipin

[android-developers] dropdown context list for search bar

2011-08-04 Thread shahbhat
I would like to add a dropdown for context of search similar to default search where it shows All, Web, Apps, Contacts except I would like to customize options and be able to read the context upon search. Can someone point documentation for it. Thanks. -- You received this message because you

[android-developers] Re: need source code

2011-08-04 Thread Abhishek Akhani
app is free does not mean that you can get its source code but you can get the source code of some open source project from guthub -- 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: Google Maps API Key no map shown in app

2011-08-04 Thread Abhishek Akhani
if you are using the map key generated with your release key store then you have to sign the apk before running it... -- 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] Re: Live Wallpaper Orientation Changes

2011-08-04 Thread Adam Ratana
Hi Moss, there is a google group called GLWallpaperService around an open source OpenGL WallpaperService implementation, you might want to check it out and/or ask questions there. I've been using it and when orientation changes happen on the device (I am testing with a tablet, and a friend's

  1   2   3   >