[android-developers] Re: How to insert special character into Database

2011-09-21 Thread Zsolt Vasvari
It's all Unicode, all characters are created equal. On Sep 21, 1:38 pm, Bishan tvbis...@gmail.com wrote: How to insert ' character or special character into Database using sqlite ? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to

[android-developers] RMS article on Android

2011-09-21 Thread Greg Donald
http://www.guardian.co.uk/technology/2011/sep/19/android-free-software-stallman Fairly interesting article.. I had never heard of Replicant before: http://replicant.us/about/ -- Greg Donald -- You received this message because you are subscribed to the Google Groups Android Developers

[android-developers] Re: Frame Drop Management in Video Player

2011-09-21 Thread Doug
On Sep 19, 5:00 pm, Ganesh ganesh.vija...@gmail.com wrote: In these scenarios, shouldn't the system be able to resynchronize faster i.e. skip frames at parser level and start decoding from a key frame at the new position? Could someone explain why a similar strategy wasn't adopted? Is there

[android-developers] How to switch between ANDROID homescreen and our custom homescreen programmatically?

2011-09-21 Thread vishnu raj
hai, i have developed an android custom lock screen so that the default launcher is replaced with my app. I have done changes in android manifest file to make app as home screen. Now the problem is that i cannot control my app. That means whenever i click the home , my lock screen is come. i

[android-developers] retrive values from database?

2011-09-21 Thread Devendran Raju
i want get the elements from database in array. can u guide me pls... Regards, Devendran -- 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

Re: [android-developers] retrive values from database?

2011-09-21 Thread Ratheesh Valamchuzhy
use cursor adapter /array adapter to store he values retrieved from database -- 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

Re: [android-developers] Re: How to insert special character into Database

2011-09-21 Thread Bishan
@ Zsolt no. i got this error. 09-21 12:07:26.876: INFO/Database(19855): sqlite returned: error code = 1, msg = near S: syntax error 09-21 12:07:26.876: ERROR/Database(19855): Failure 1 (near S: syntax error) on 0x2ae178 when preparing 'INSERT INTO Client VALUES ('110003', 'MITHUL'S ', 'R1',

[android-developers] Re: How to set selected color effect when click on any image button or image view same as iphone?

2011-09-21 Thread Doug
On Sep 19, 7:57 am, Sam jain@gmail.com wrote: Anyone know any property of android to directly set select dark shadow effect without image ? Please anyone suggest how its possible ? There is no property that does what you're asking for. You need to either implement your own Drawable for

Re: [android-developers] Re: How to set selected color effect when click on any image button or image view same as iphone?

2011-09-21 Thread GopalaKrishnan D
in that code replace @drawable/image into @color/color id -- 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] App closed but notification is visible

2011-09-21 Thread b_t
Hi, My application creates an ongoing notification that displays battery state and updates it when battery event occurs. Very rarely I notice that this notification doesn't change, doesn't display the correct value. When this happens my application isn't running but the notification is visible.

[android-developers] Re: How to insert special character into Database

2011-09-21 Thread Zsolt Vasvari
Are you using the helper methods to create the insert statement, or are you building it yourself? If you do it yourself, you must escape the single quote as double quoutes, so your statement should be: INSERT INTO Client VALUES ('110003', 'MITHUL''S ', 'R1', '3', '0', 'HOTEL', 'BRONZ', '4', '3',

[android-developers] Re: How to insert special character into Database

2011-09-21 Thread Jens
One hint: MITHUL'S http://www.sqlite.org/faq.html#q14 Or .. you know .. you could stop doing hardcoded queries and use the supporting functionality present in Android. On Sep 21, 8:44 am, Bishan tvbis...@gmail.com wrote: @  Zsolt no. i got this error. 09-21 12:07:26.876:

[android-developers] Multiple dynamic repeating alarm in application.

2011-09-21 Thread jagtap.jj
Hi, I have Notes like application, for every note there is one repeating alarm, notes can grow to any number. for every note user will set repeating alarm. How to achieve this? Any suggestions? Thanks Regards Jalandar Jagtap -- You received this message because you are subscribed to the

[android-developers] Switch to speakerphone when the headset is unplugged

2011-09-21 Thread Shri
My app uses the speakerphone if no headset is plugged in. If a headset is plugged in, Android automatically switches audio playback to the headset. However, when the headset is unplugged, the audio plays through the earpiece. Is there a way to switch to the speakerphone when the headset is

[android-developers] How can I post My Twitts on Aurdino Screen Via Bluetooth In Android

2011-09-21 Thread parasnath
I have created an Twitter Application Now I want to post My Twitts On Aurdino Screen via Bluetooth,through Programatically Can I do this.Please help me Thank you -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send

[android-developers] Re: Is this a joke??

2011-09-21 Thread Al Sutton
http://developer.android.com/guide/developing/tools/monkey.html Monkeys can thrash test your app like nothing else :). Al. -- T: @alsutton W: www.funkyandroid.com The views expressed in this email are those of the author and not necessarily those of Funky Android Limited, it's associates, or

Re: [android-developers] Infinite loop in TextToSpeech.initTts

2011-09-21 Thread Nikolay Elenkov
On Tue, Sep 20, 2011 at 6:28 PM, BorisB boris.br...@gmail.com wrote: Hi all, The device is HTC Wildfire with locale set to Greek. NullPointer exception in SetLanguage generates infinite loop in initTtts . Relevant portion of log is V/TtsService( 7474): TtsService.onCreate() E/TtsService(

Re: [android-developers] In-app checkout interface is always in landscape mode on Honeycomb

2011-09-21 Thread Nikolay Elenkov
On Wed, Sep 21, 2011 at 6:55 AM, Speedy lostba...@gmail.com wrote: Hi, I'm building application on SKD 11+ (Android 3.x) and when I'm doing in-app billing request the checkout popup is always displaying in landscape mode - causing that my whole app rotates to landscape mode even though the

Re: [android-developers] Re: Is this a joke??

2011-09-21 Thread Romain Guy
I hate the @!$ monkeys. So many extra hours spent at work because of them... But that's good I guess :) On Wed, Sep 21, 2011 at 12:29 AM, Al Sutton a...@funkyandroid.com wrote: http://developer.android.com/guide/developing/tools/monkey.html Monkeys can thrash test your app like nothing else

Re: [android-developers] Sending emails without user interaction - authentication issue

2011-09-21 Thread Nikolay Elenkov
On Wed, Sep 21, 2011 at 10:11 AM, Paul stuem...@gmail.com wrote: Is there any way to avoid having to specify the sending password, maybe by using AccountManager to authenticate with the phone's gmail account? I haven't used it, but apparently GMail's IMAP/SMTP supports OAuth, you might try it

[android-developers] can we know the phone no of the device.

2011-09-21 Thread krishna chaitanya
hi all, I checked with one code like String ts = Context.TELEPHONY_SERVICE; TelephonyManager telephonyManager = (TelephonyManager) getSystemService(ts); Toast.makeText(this, Phone no:+telephonyManager.getLine1Number(), Toast.LENGTH_SHORT).show(); its showing the number in

[android-developers] Emulator

2011-09-21 Thread Andi
Hi, when my app is connecting to server (to another programm), the server (the programm) is registring the device of the app. So when I do this with the emulator the server(the programm) is registring the device with the device-id: Simulator031128fc-5aad-433a-a10d-52bc88d6852c. Where does this ID

[android-developers] Re: NFC phone operated Mifare Classic

2011-09-21 Thread xiaoailsa
Hi,have anyone know how to increment \decrement\restore in the mifare classic?? I'm very worry about this program.Could you help me ? On 9月20日, 下午2时03分, xiaoailsa zsbitxiao...@163.com wrote: Hi,everyone! I have learn nfc phone how to read different card. For the Mifare Classic, i have a

[android-developers] Re: HOW TO USE ROCK PLAYER IN OUR OWN application.

2011-09-21 Thread B.Arunkumar
Hi, You can download it from the Android Market and use it like a normal app. I don't think you can use rockplayer in your application, though. B.Arunkumar On Sep 16, 8:34 pm, TreKing treking...@gmail.com wrote: On Fri, Sep 16, 2011 at 2:16 AM, NAVI NEW navi44...@gmail.com wrote: i am

Re: [android-developers] Re: Is this a joke??

2011-09-21 Thread Daniel Drozdzewski
On 21 September 2011 08:38, Romain Guy romain...@android.com wrote: I hate the @!$ monkeys. So many extra hours spent at work because of them... But that's good I guess :) http://familyguy.wikia.com/wiki/Evil_Monkey d^_^b -- Daniel Drozdzewski -- You received this message because you are

Re: [android-developers] Re: HOW TO USE ROCK PLAYER IN OUR OWN application.

2011-09-21 Thread NAVI NEW
i want to run this type interface with my app. what to do for this one On Wed, Sep 21, 2011 at 2:23 PM, B.Arunkumar awsnetworkrecor...@gmail.comwrote: Hi, You can download it from the Android Market and use it like a normal app. I don't think you can use rockplayer in your application,

[android-developers] Re: Publish and Debug

2011-09-21 Thread Jens
leonardomasc...@gmail.com wrote: I really have to unsintall the market downloaded apk to run the debug? No. or there is another way to do this? Yes. Four easy steps to compromise security: 1. Whip out Portecle (http://portecle.sourceforge.net, no install required). 2. MAKE A COPY OF YOUR

[android-developers] How android native gallery app works in switching thumbnails into quality photos?

2011-09-21 Thread Lidia
Hello, please need help. I can't find the source code for android gallery native application, but i am trying to implement its feature, when a thumbnail photo switches into a good quality photo, and zoom is available. In my app i have a Gallery instance that uses thumbnail photos for display. I

[android-developers] Re: Multiple dynamic repeating alarm in application.

2011-09-21 Thread jagtap.jj
It got resolved. Using pending intent with unique request code. On Sep 21, 12:20 pm, jagtap.jj jagtap...@gmail.com wrote: Hi,   I have Notes like application, for every note there is one repeating alarm, notes can grow to any number. for every note user will set repeating alarm.   How to

[android-developers] Custom Font For application

2011-09-21 Thread JOBZ
Hi All, How to set custom font for whole application. otherwise is there any way to set external fonts like FEASFBRG.TTF in Style.xml for the attribute android:typeface. We can set it by Typeface.createFromAsset(getAssets(), fonts/ FEASFBRG .ttf); But I want to know how to set in Style.xml

[android-developers] Get Auto Increment values from table 1 and insert in Table2

2011-09-21 Thread Krishna Prasad
Hi all, Can anybody help me in inserting an auto increment value (primary key) in one table as a foreign key in table 2 simultaneously. thanks -- 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] Get Auto Increment values from table 1 and insert in Table2

2011-09-21 Thread Ratheesh Valamchuzhy
Go through the tutorial of sqlite database http://www.vogella.de/articles/AndroidSQLite/article.html http://freshmeat.net/articles/sqlite-tutorial http://zetcode.com/databases/sqlitetutorial/ -- You received this message because you are subscribed to the Google Groups Android Developers

Re: [android-developers] Get Auto Increment values from table 1 and insert in Table2

2011-09-21 Thread Krishna Prasad
I want to get the auto increment primary key as soon as it is inserted and insert that auto increment value as a foreign key in another table. On Wed, Sep 21, 2011 at 6:30 AM, Ratheesh Valamchuzhy android...@gmail.comwrote: Go through the tutorial of sqlite database

Re: [android-developers] Get Auto Increment values from table 1 and insert in Table2

2011-09-21 Thread Ratheesh Valamchuzhy
I didn't get your question correctly u want to get the primary key value from the database ? -- 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

Re: [android-developers] Get Auto Increment values from table 1 and insert in Table2

2011-09-21 Thread Krishna Prasad
No . My requirement is While Xml parsing,i need to save each value to db.During saving each table is related.Suppose i have a table which has field id,form name in one table.I need to save the that id value in another table also.Since it is parsing,i want to save it simultaneously.Can you

Re: [android-developers] How to switch between ANDROID homescreen and our custom homescreen programmatically?

2011-09-21 Thread Mark Murphy
You cannot force your activity to be the home screen. You can force your activity to *not* be the home screen by calling clearPackagePreferredActivities() on PackageManager. Then, the user will get a chooser the next time the HOME screen is launched (e.g., pressing the HOME button). On Wed, Sep

Re: [android-developers] how to implement edittext inside listview

2011-09-21 Thread Ratheesh Valamchuzhy
Hi. please clear the question. i am implement listview and each view *(or row).* having editlist box. problem when i trying to get data from all editboxes its takes only first screen view.(*means getting the value from the first row only ie index=0*) here show only 5 views.

[android-developers] SqlLite Database

2011-09-21 Thread New Developer
How can one go about creating an SQLLite Database on a PC then to transfer the database file to the tablet's application data directory? I have managed to create a database on a tablet copy it off, and then back on. But Now I would like to be able to create it and then just upload it.

Re: [android-developers] how to implement edittext inside listview

2011-09-21 Thread aparna rani
in each row...its take the values from how many rows display in a screen at app launched only. and remaining below screen its nit getting the values from edittext box. On Wed, Sep 21, 2011 at 4:50 PM, Ratheesh Valamchuzhy android...@gmail.comwrote: Hi. please clear the question. i

[android-developers] Re: SqlLite Database

2011-09-21 Thread lbendlin
You can create databases with a number of tools. I use the mozilla Firefox browser and SQLite manager plugin -- 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] video resolution trans-coding

2011-09-21 Thread John
Hello developers, i have a many mp4 videos files in sdcard , that video file contains different width,height resolution. i want give a single constant resolution to that file by code. Plz need help, -- You received this message because you are subscribed to the Google Groups Android

[android-developers] want talk with android-system level community

2011-09-21 Thread John
I want to ask some question regarding android framework with android sdk system level api community . how to post issue and interact with android-system level developer -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group,

[android-developers] Re: How android native gallery app works in switching thumbnails into quality photos?

2011-09-21 Thread Speedy
Hi, these are actually pretty tough questions. Gallery is really lacking some important functinality like event when the image actually stopped moving. I had the same problem and I faked it using Gallery.drawChild method where I am checking if the position of the image is in the middle and if the

[android-developers] How to connect android device with local network

2011-09-21 Thread Gold
Hi all, I am using android 2.2 for application development..! Now I want to communicate with Webservice. The webservice running on My laptop and ip is 192.168.1.15..! But device not communicate.it.. How to communicate with local network..! Thanks in advance, A. Thangadurai -- You received

[android-developers] want talk with android-system level community

2011-09-21 Thread John
I want to ask some question regarding android framework with android sdk system level api community . how to post issue and interact with android-system level developer -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group,

[android-developers] Re: want talk with android-system level community

2011-09-21 Thread Drunczyk
https://groups.google.com/forum/#!forum/android-platform -- 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] Get Auto Increment values from table 1 and insert in Table2

2011-09-21 Thread Daniel Drozdzewski
On 21 September 2011 12:02, Krishna Prasad krishnaprasadrs.1...@gmail.com wrote: No . My requirement is While Xml parsing,i need to save each value  to db.During saving each table is related.Suppose i have a table which has field id,form name  in one table.I need to save the that  id value

Re: [android-developers] How to connect android device with local network

2011-09-21 Thread ashok chakravarthy
run some webserver like tomcat on your local machine, then you can able to connect to your machine provided both your machine and phone are in same network On Wed, Sep 21, 2011 at 5:48 PM, Gold thangadura...@gmail.com wrote: Hi all, I am using android 2.2 for application development..! Now

Re: [android-developers] how to implement edittext inside listview

2011-09-21 Thread Ratheesh Valamchuzhy
Hi As per your code there is 5 tedittext in you app .. we can get the values of each edittext(5 nos) in that pgm... see the code ... === public View getView(final int position, View convertView, ViewGroup parent) { ViewHolder holder; if

[android-developers] Block the upgrade

2011-09-21 Thread Perry168
Hi, How can I block the user to upgrade the Apps if who isn't downloaded from google market? -- 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

Re: [android-developers] how to implement edittext inside listview

2011-09-21 Thread aparna rani
ya but increase the more no. of rows then it is not getting the data from edittext. the means increase up to to 12 row, On Wed, Sep 21, 2011 at 6:13 PM, Ratheesh Valamchuzhy android...@gmail.comwrote: Hi As per your code there is 5 tedittext in you app .. we can get the values of each

[android-developers] Re: Cavnas's pattern to bitmap

2011-09-21 Thread Perry168
ar. Which method is my need? On 9月19日, 上午10時11分, gjs garyjamessi...@gmail.com wrote: Hi, Seehttp://developer.android.com/reference/android/graphics/Canvas.html#s...) Regards On Sep 17, 11:55 am,Perry168perry...@netvigator.com wrote: Hi all, If I draw some graphic on the cavnas,

Re: [android-developers] Re: Publish and Debug

2011-09-21 Thread Leonardo Martins Scaramel
If I keep installing and unstalling my apk from market, it will change my statistics. (like installs and active installs) won't it? 2011/9/21 Jens dunkingbikk...@gmail.com leonardomasc...@gmail.com wrote: I really have to unsintall the market downloaded apk to run the debug? No. or

Re: [android-developers] how to implement edittext inside listview

2011-09-21 Thread Ratheesh Valamchuzhy
Are you dynamically increasing the rows or specifying it static in the code -- 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

[android-developers] Re: Importing a project using com.android.internal.* packages

2011-09-21 Thread MarKco
I answer to myself. I found a branch in the directory tree where the previous developer had been copying the used part of com.android.internal that is used into the project. Importing that branch I solved my dependancy issued. I just hope that this won't bring the app to have mismatches with

Re: [android-developers] how to implement edittext inside listview

2011-09-21 Thread aparna rani
specifying the static in the code On Wed, Sep 21, 2011 at 6:36 PM, Ratheesh Valamchuzhy android...@gmail.comwrote: Are you dynamically increasing the rows or specifying it static in the code -- You received this message because you are subscribed to the Google Groups Android Developers

[android-developers] Re: bluez- control psm - condition G_IO_HUP error.

2011-09-21 Thread arun_satya3
Adding some more info. During the second execution time, mcl fd is set to poll error G_IO_HUP after mdl gets created. On Sep 20, 9:44 pm, arun_satya3 arun.sat...@gmail.com wrote: Hi, I am writing an application to receive data from health devices an able to success fully receive data when

Re: [android-developers] video resolution trans-coding

2011-09-21 Thread NAVI NEW
Is any one reviewing my issue or not? On Wed, Sep 21, 2011 at 5:37 PM, John navi44...@gmail.com wrote: Hello developers, i have a many mp4 videos files in sdcard , that video file contains different width,height resolution. i want give a single constant resolution to that file by code.

[android-developers] Re: How to connect android device with local network

2011-09-21 Thread Thangadurai .A
Hi Ashok, Greetings to you..! I tried that option but still i getting the error server not found..! for emulator its working fine..! Thanks Warm Regards, A. Thangadurai On Sep 21, 5:43 pm, ashok chakravarthy ashoki...@gmail.com wrote: run some webserver like tomcat on

Re: [android-developers] Get Auto Increment values from table 1 and insert in Table2

2011-09-21 Thread Krishna Prasad
ok thanks... On Wed, Sep 21, 2011 at 8:35 AM, Daniel Drozdzewski daniel.drozdzew...@gmail.com wrote: On 21 September 2011 12:02, Krishna Prasad krishnaprasadrs.1...@gmail.com wrote: No . My requirement is While Xml parsing,i need to save each value to db.During saving each table

Re: [android-developers] video resolution trans-coding

2011-09-21 Thread Daniel Drozdzewski
On 21 September 2011 14:26, NAVI NEW navi44...@gmail.com wrote: Is any one reviewing my issue or not? not -- 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] how to implement ffmpeg video codec for video player +android

2011-09-21 Thread John
how to implement ffmpeg video codec for video player +android -- 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 connect android device with local network

2011-09-21 Thread MComputing Lab
Try usb tethering On 21 Sep 2011 17:49, Gold thangadura...@gmail.com wrote: Hi all, I am using android 2.2 for application development..! Now I want to communicate with Webservice. The webservice running on My laptop and ip is 192.168.1.15..! But device not communicate.it.. How to

[android-developers] Re: Google Development phones

2011-09-21 Thread kypriakos
Hi all, the Market lists only one phone, the Nexus One and it says it is not longer available. Does that mean that Google is out of stock or does it mean that they are simply switching to a new phone and so this was off their pages? Thanks On Aug 18, 1:26 pm, Mark Ayers markthe...@gmail.com

[android-developers] Combining flex code and Android in Eclipse

2011-09-21 Thread s.rawat
Hi , Is it possible to combine the Flex code(mxml) with the android code in Eclipse.I want to passs the values from the android code to the flex code ( written in mxml ).Also if it is possible how can we pass the values to and from them. I have a .swf component created from the mxml files in the

[android-developers] Re: How android native gallery app works in switching thumbnails into quality photos?

2011-09-21 Thread Lidia
Thank you very much Speedy, I will try all your advices. -- 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 connect android device with local network

2011-09-21 Thread Ravi Sharma
If Emulator is working that means uc ode is code.. may be you should troubleshoot ur network 1) Confirm that both device computer and android definitely in same network 2) find out ip address of both 3) See if you have added permission in ur android config file to use Internet(i assume its there

Re: [android-developers] how to implement ffmpeg video codec for video player +android

2011-09-21 Thread NAVI NEW
Please give me a guideline for implementing ffmpeg on android app. On Wed, Sep 21, 2011 at 7:05 PM, John navi44...@gmail.com wrote: how to implement ffmpeg video codec for video player +android -- You received this message because you are subscribed to the Google Groups Android Developers

Re: [android-developers] video resolution trans-coding

2011-09-21 Thread Jim Graham
On Wed, Sep 21, 2011 at 05:07:02AM -0700, John wrote: i have a many mp4 videos files in sdcard , that video file contains different width,height resolution. i want give a single constant resolution to that file by code. Different width:height resolutions (in computer video, NOT necessarily in

[android-developers] Problems in application upgrade when changing louncher activity

2011-09-21 Thread carlo
Hi all, I've found that on some customized devices (e.g. with HTC Sense and others) when you change the louncher activity and, for example you change the app icon or name, after the upgrade there are some issues... on a HTC Legend I see that the application still has the old nameicon and points

Re: [android-developers] video resolution trans-coding

2011-09-21 Thread NAVI NEW
Sure i am not a pro for crop the video resolution, but if you give me some way guideline then i can be able to do that one. On Wed, Sep 21, 2011 at 8:22 PM, Jim Graham spooky1...@gmail.com wrote: On Wed, Sep 21, 2011 at 05:07:02AM -0700, John wrote: i have a many mp4 videos files in sdcard ,

Re: [android-developers] video resolution trans-coding

2011-09-21 Thread NAVI NEW
Thanks a lot for reply . On Wed, Sep 21, 2011 at 8:50 PM, NAVI NEW navi44...@gmail.com wrote: Sure i am not a pro for crop the video resolution, but if you give me some way guideline then i can be able to do that one. On Wed, Sep 21, 2011 at 8:22 PM, Jim Graham spooky1...@gmail.com wrote:

[android-developers] Curved Gallery view

2011-09-21 Thread Abhi
Hi all, I would like to know if it is possible to create a curved gallery view from the default horizontal one that Android offers? I don't know if that entails changing the Gallery code in Android framework which I want to avoid. Is there any other way to make a custom Gallery view from scratch?

[android-developers] Re: InputMethod crashing with NullPointerException

2011-09-21 Thread Mudhalvan
I have solved this issue myself... Its all because of the extarcted view (or) fullscreenmode view being enabled by default in my IME. Though its strange that it crashes only in 2.3.3 and not in 2.3.1 platform. Overriding onEvaluateFullScreenMode() of inputmethod and always returning false(ie.

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

2011-09-21 Thread Lew Bloch
Android is the worst form of mobile OS except for all those other forms that have been tried from time to time ... -- Apologies to unknown source as cited by Winston Churchill. http://richardlangworth.com/democracy-is-the-worst-form-of-government -- Lew blake wrote: Oh man. This is such a

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

2011-09-21 Thread Jim Graham
On Wed, Sep 21, 2011 at 08:49:31AM -0700, Lew Bloch wrote: Android is the worst form of mobile OS except for all those other forms that have been tried from time to time ... -- Apologies to unknown source as cited by Winston Churchill.

Re: [android-developers] Re: Google Development phones

2011-09-21 Thread Kristopher Micinski
The original development phone was the nexus one, however the concept of an official development phone hasn't been around for a long time, and people just generally use their own devices for development these days. As long as you buy a nice device (for what you want to do with it) you should be

Re: [android-developers] Re: Publish and Debug

2011-09-21 Thread TreKing
On Wed, Sep 21, 2011 at 7:59 AM, Leonardo Martins Scaramel leonardomasc...@gmail.com wrote: If I keep installing and unstalling my apk from market, it will change my statistics. (like installs and active installs) won't it? Not in any meaningful way, assuming those stats worked - which they

Re: [android-developers] Re: HOW TO USE ROCK PLAYER IN OUR OWN application.

2011-09-21 Thread TreKing
On Wed, Sep 21, 2011 at 4:04 AM, NAVI NEW navi44...@gmail.com wrote: i want to run this type interface with my app. what to do for this one Create that type of interface in your application. -

Re: [android-developers] parcelable again: passing object BACK through activity stack

2011-09-21 Thread TreKing
On Tue, Sep 20, 2011 at 5:38 PM, John Goche johngoch...@googlemail.comwrote: I think I'm gonna go for serialization and write the serialized object to a database in one row of text. That's the quick and dirty way of doing things I guess. Also, I'm done with Parcelable since I need to pass

Re: [android-developers] Question about integrating Facebook/Twitter

2011-09-21 Thread TreKing
On Tue, Sep 20, 2011 at 1:28 AM, Randy roostertailproductionsandr...@gmail.com wrote: 1) Allow my application to provide a list of recent updates to a Facebook Group and follow Tweets in a similar fashion? Seems like this would depend on each service's API, which has nothing to do with this

Re: [android-developers] Question about integrating Facebook/Twitter

2011-09-21 Thread Kristopher Micinski
On Wed, Sep 21, 2011 at 12:46 PM, TreKing treking...@gmail.com wrote: On Tue, Sep 20, 2011 at 1:28 AM, Randy roostertailproductionsandr...@gmail.com wrote: 1)  Allow my application to provide a list of recent updates to a Facebook Group and follow Tweets in a similar fashion? Seems like

Re: [android-developers] App closed but notification is visible

2011-09-21 Thread TreKing
On Wed, Sep 21, 2011 at 2:03 AM, b_t bartata...@gmail.com wrote: Do you know how can it happen that my app is not running but the notification is visible and how to solve this problem? You didn't provide much information, but if you set the notification and never cancel it, well, it's not

Re: [android-developers] Re: Google Development phones

2011-09-21 Thread Christopher Van Kirk
The original developer phone was the G1. Then came the Magic/G2. Then came the Nexus One. The current developer phone is the Nexus S, but it's an open question whether you really want to get one. The Nexus S is always closest to the bleeding edge of the phone operating system. The rest of

Re: [android-developers] can we know the phone no of the device.

2011-09-21 Thread TreKing
On Wed, Sep 21, 2011 at 2:46 AM, krishna chaitanya chaitanya.ju...@gmail.com wrote: its showing the number in the emulator, but when ran on the device its giving null.. http://developer.android.com/reference/android/telephony/TelephonyManager.html#getLine1Number()

Re: [android-developers] Block the upgrade

2011-09-21 Thread TreKing
On Wed, Sep 21, 2011 at 7:47 AM, Perry168 perry...@netvigator.com wrote: How can I block the user to upgrade the Apps if who isn't downloaded from google market? Your question makes no sense. -

Re: [android-developers] Problems in application upgrade when changing louncher activity

2011-09-21 Thread TreKing
On Wed, Sep 21, 2011 at 10:00 AM, carlo sazi...@gmail.com wrote: There is any chance to solve this? If this is on customized devices, you'd have to talk to those customizers. - TreKing

[android-developers] When is onSurfaceCreated called??

2011-09-21 Thread ruchira
I am asking this question as I have been stuck with this issue for almost a month that the surface created function of my app is never called and I am stuck with it!!! -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group,

Re: [android-developers] Curved Gallery view

2011-09-21 Thread TreKing
On Wed, Sep 21, 2011 at 10:34 AM, Abhi abhishek.r.sha...@gmail.com wrote: Is there any other way to make a custom Gallery view from scratch? Again, how to go about doing that? Extend the existing one? Or make your own by extending ViewGroup?

Re: [android-developers] Question about integrating Facebook/Twitter

2011-09-21 Thread TreKing
On Wed, Sep 21, 2011 at 11:49 AM, Kristopher Micinski krismicin...@gmail.com wrote: Except to your own app's paid download page :o)... LOL - oh yeah - wouldn't want to get sued for stealing that incredibly original concept!

[android-developers] Flash and Air and the marketplace

2011-09-21 Thread Josh
Im curious if Flash android apps are getting accepted into the market place. Do they perform just as well as the apps designed in java? Just getting started not sure what direction to travel in. Josh -- You received this message because you are subscribed to the Google Groups Android

[android-developers] smoothScrollBy don't work on top and bottom of the list

2011-09-21 Thread Israel Fonseca
Hi guys, I have the following situation, two buttons control programatically the scrolling of a ListView. Everthing works fine. The only problem is, when the list get scrolled to the bottom or the top it get's stuck and the buttons that control It can't move it anymore. The only fix, is to scroll

[android-developers] Re: How to add a ViewFlipper to the layout?

2011-09-21 Thread MobileVisuals
Thanks for the info. I have redesigned the app now and it worked. On Sep 20, 6:37 pm, Mark Murphy mmur...@commonsware.com wrote: Use startActivity(), with FLAG_ACTIVITY_REORDER_TO_FRONT, to bring an existing activity back into the foreground (or create it if it does not exist). On Tue, Sep

[android-developers] Re: ViewFlipper class does not support SurfaceView like it should

2011-09-21 Thread MobileVisuals
I got this to work no without the ViewFlipper. I think that there should be information in the ViewFlipper class that it doesn't support SurfaceView. I lost many hours of work because of this. The reason I used the ViewFlipper class for SurfaceView was that other threads on this forum recommended

Re: [android-developers] parcelable again: passing object BACK through activity stack

2011-09-21 Thread Streets Of Boston
1. Try to avoid Serializable. It is very slow compared to Parcelable. 2. Take a look at startActivityForResult and onActivityResult. 3. If you reeeaaally need to update activity A about events from activity B, consider putting your own subclass of ResultReceiver in the Intent's 'extras'. Then

[android-developers] Does it possible to use multiple jni(.so) library in one SDK project?

2011-09-21 Thread Build account
Hello gurus. At first, I can build single 'jni' library in one SDK project with the directory name 'jni' and make file under eclipse. But, I'm looking for - how to build multiple jni in eclipse with the setting 'property builder add cmd line'. I expect that possible. Does it possible? - and

Re: [android-developers] Re: ListView: responding to item clicks via a listener

2011-09-21 Thread Streets Of Boston
Try not to do this. It will break the UI model that Android users expect on their phones. However, if you really need it: 1. Modify the data items that are handled by your ListView's adapter. Add an field that could tell how many times a list-item has been clicked (e.g. numberOfClicks). 2.

[android-developers] TabWidget font size

2011-09-21 Thread bob
Is there an easy way to change the font size of a TabWidget? -- 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: TabWidget font size

2011-09-21 Thread Streets Of Boston
You can either use the TabSpec.setIndicator(View view) method to put your own views in the TabWidget. Or you can override the theme to set the font-size: style name=YourTheme parent=@android:style/Theme item name=android:tabWidgetStyle@style/Widget.TabWidget/item /style style

Re: [android-developers] App appears to be missing for a number of devices on Android Market

2011-09-21 Thread dan raaka
I have seen similar issues mainly due to the market app trying to infer android.hardware.screen.portrait even though you may not have declared it in your manifest. workaround : add this uses-feature name=android.hardware.screen.portrait required=false / to your manifest -Dan On Sun, Sep 18,

  1   2   >