Re: [android-developers] How can I get app ratings to display on my website?

2011-06-07 Thread Nikolay Elenkov
On Tue, Jun 7, 2011 at 2:48 PM, Spiderfly Studios spiderflystud...@gmail.com wrote: What's with all the rude replies? Sorry if you feel it's rude, nothing personal. It just that I find refusing to do your own research/work and just looking for ready made solutions annoying. I was vey clear

[android-developers] Re: ontap and tabhost

2011-06-07 Thread ArcDroid
Here is the error messageNo enclosing instance of the type MainMap is accessible in scope. I read that one solution is to make MyItemizedOverlay an inner class of mymap class. On Jun 6, 6:54 am, ArcDroid jacobrjohn...@gmail.com wrote: hello, I am trying to click on a geo point and then

Re: [android-developers] How can I get app ratings to display on my website?

2011-06-07 Thread Spiderfly Studios
well did you ever consider that I and others may not know to script it? my scripting skills are limited. I know HTML and PHP and just a lil javascript. when it comes to apps, I design them, I don't build them. also, scraping is stealing. as everyone else has stated, since there is no

[android-developers] Re: import error in AIDL, guessing Android.mk needs fixing.

2011-06-07 Thread maliha
thanks, posted the query to the android-platform list. On Jun 6, 4:15 pm, Mark Murphy mmur...@commonsware.com wrote: Questions regarding modifying firmware do not belong on this list. Visithttp://source.android.com. On Mon, Jun 6, 2011 at 1:11 AM,malihamalihamari...@gmail.com wrote:

Re: [android-developers] How can I get app ratings to display on my website?

2011-06-07 Thread Miguel Morales
I think this being the android *developer* forum might have made them believe you were an actual developer. Or perhaps the fact you said you made an app might have thrown them off. Anyway, scraping is not stealing. That's how google works. On Mon, Jun 6, 2011 at 11:13 PM, Spiderfly Studios

Re: [android-developers] How can I get app ratings to display on my website?

2011-06-07 Thread Nikolay Elenkov
On Tue, Jun 7, 2011 at 3:13 PM, Spiderfly Studios spiderflystud...@gmail.com wrote: well did you ever consider that I and others may not know to script it?  my scripting skills are limited.  I know HTML and PHP and just a lil javascript. More than enough. And you can always learn if you want

[android-developers] How to customize a permission for a service in Framework ?

2011-06-07 Thread xhy
Hi all, I want to customize a permission for a service in Framework. The service is also customized by me, the implement's mechanism is IPC (aidl) and boots with the device. And it checks permissions before apps call the service's method. But the result of checking permissions is always

Re: [android-developers] Re: Installing platforms without internet access

2011-06-07 Thread Raghav Sood
I know all that. I mean installing the sdk for 2.2, 2.3 etc. without internet access. I will be getting that laptop that day itself so I can't pre-install it. I want to know if there is any way to download the platform on a windows and install it on a mac later On Tue, Jun 7, 2011 at 9:59 AM,

Re: [android-developers] How to get internal storage path for music

2011-06-07 Thread Chi Kit Leung
Try to use this path /mnt/sdcard On Tue, Jun 7, 2011 at 2:23 PM, Goutham P N pn.gowt...@gmail.com wrote: Hi All, The application that am working has to access the audio files stored on a tablet in the internal storage musci folder. Can any one tell me how to get access to it? Thanks

[android-developers] Re: Java source code for SDK API 11 12

2011-06-07 Thread Tomas Prochazka
Yes, Java was source.zip included also when it was not open sources :- ( But I Have real question. I use google ImageLoader in my app, it works on all Android, but not on 3.1 (Motorola Xoom) It is impossible to find solution without source of framework classes. I tried to use source code of

[android-developers] Re: Android MD5 Hash doesn't match Hash generated from .NET application

2011-06-07 Thread Jens
EncodingUtils#getString(byte[], String) is for byte array to String conversions, given a *character set* - not a *transfer encoding* (such as Base64). You want to use android.util.Base64 (available since 2.2). On 6 Juni, 13:13, Mark Murphy mmur...@commonsware.com wrote: You are not generating

[android-developers] method setDirty() for View?

2011-06-07 Thread wboe
Hi, For a custom ViewGroup class I need something to mark a child view as to be redrawn. In the 2006 source code View.java the statement was: child.mPrivateFlags |= View.DRAWN. Maybe now some method e.g. named setDirty() must be used? Can somebody from the android team please provide any

Re: [android-developers] method setDirty() for View?

2011-06-07 Thread Romain Guy
That's what invalidate() is for :) On Tue, Jun 7, 2011 at 12:16 AM, wboe w.bo...@chello.nl wrote: Hi, For a custom ViewGroup class I need something to mark a child view as to be redrawn. In the 2006 source code View.java the statement was: child.mPrivateFlags |= View.DRAWN. Maybe now some

Re: [android-developers] How to get internal storage path for music

2011-06-07 Thread Dianne Hackborn
No do not use magical absolute paths. Environment has various APIs to find out path to external storage. On Tue, Jun 7, 2011 at 12:02 AM, Chi Kit Leung michaelchi...@gmail.comwrote: Try to use this path /mnt/sdcard On Tue, Jun 7, 2011 at 2:23 PM, Goutham P N pn.gowt...@gmail.com wrote:

[android-developers] Updating to ADT 11

2011-06-07 Thread mlybrand
So, I can't update as Eclipse is telling me there are conflicts. The android site advises me to remove ADT and reinstall, but all options to do so are grayed out and unavailable to me. Has anyone else encountered this difficulty? Any advice as to the steps I should take to update my ADT plugins?

Re: [android-developers] Updating to ADT 11

2011-06-07 Thread Xavier Ducrohet
what exact errors do you see? On Tue, Jun 7, 2011 at 12:05 AM, mlybrand mlybr...@gmail.com wrote: So, I can't update as Eclipse is telling me there are conflicts. The android site advises me to remove ADT and reinstall, but all options to do so are grayed out and unavailable to me. Has anyone

Re: [android-developers] method setDirty() for View?

2011-06-07 Thread wboe
Hi Romain, Using invalidate() is the trivial View method that I wanted to circumvent, because it will adress its parent, which then will scan all of its children, and redraw the ones that are dirty. If you have a lot of children, and your app is an audio program that must not be interrupted,

[android-developers] Aw: Re: Invisible Activity

2011-06-07 Thread Marc
Thanks for all the replys, that helped a lot :] -- 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] method setDirty() for View?

2011-06-07 Thread Romain Guy
Using invalidate() is the trivial View method that I wanted to circumvent, because it will adress its parent, which then will scan all of its children, and redraw the ones that are dirty. If you have a lot of children, and your app is an audio program that must not be interrupted, then you

[android-developers] Re: Android LifeCycle and Singleton Instances

2011-06-07 Thread Indicator Veritatis
H-m-m-m. I see I was using my local copy instead of the online URLs when coming up with the URLS for the online docs. But I am sure the reader can figure out how to transform the one into the other. On Jun 6, 3:27 pm, Indicator Veritatis mej1...@yahoo.com wrote: You are right. It is not well

[android-developers] Why can't I get the Bluetooth adapter in a windows 7 environment?

2011-06-07 Thread mark2011
Dear All : When I click the Bluetooth icon to list all the devices, I can see the bluetooth devices in my near environment. I'm sure the bluetooth work in my notebook run a Windows 7. But I run a Android API to get BlueTooth Adapter, it failed. Can anyone know the why? How do I fix it?

[android-developers] Earn $1000-$2500 per month

2011-06-07 Thread roseanje...@rediffmail.com
Earn $1000-$2500 per month If you Register your name You Get Sign-up bonus $5 AND Get $.20 cent for each referral. Further details http://www.earnbyforex.com/index.php?id=35678365

Re: [android-developers] method setDirty() for View?

2011-06-07 Thread wboe
Hi Romain, Thanks for the fast response. Using invalidate() is the trivial View method that I wanted to circumvent, because it will adress its parent, which then will scan all of its children, and redraw the ones that are dirty. If you have a lot of children, and your app is an audio

[android-developers] preserve session

2011-06-07 Thread Knutsford Software
How do you preseerve the php session between call a login page then calling the index.php page from an android app? I thought having just one DefaultHttpClient should work but it isn't Thanks -- You received this message because you are subscribed to the Google Groups Android Developers

Re: [android-developers] method setDirty() for View?

2011-06-07 Thread Romain Guy
That's exactly what I was trying to do. The audio part can't be optimized anymore because it is native, so I tried to optimize the graphical part. What I mean is that if you have so many views that it's negatively impacting your application, you should try to reduce the number of views. Dare

Re: [android-developers] preserve session

2011-06-07 Thread Daniel Drozdzewski
On Tue, Jun 7, 2011 at 9:42 AM, Knutsford Software i...@knutsford-software.co.uk wrote: How do you preseerve the php session between call a login page then calling the index.php page from an android app? I thought having just one DefaultHttpClient should work but it isn't Thanks It

Re: [android-developers] Re: setBouncing() throws exception for ExpandableListview

2011-06-07 Thread Kostya Vasilyev
Ok, so you are not using sample code, but are using HTC's extensions to Android. Either way, that's not part of base standard Android itself. Try asking HTC how to work with their stuff. -- Kostya 2011/6/7 shipi yaso.r...@gmail.com Thanks for all replies. @TreKing - sorry i got comp err

Re: [android-developers] Re: Java source code for SDK API 11 12

2011-06-07 Thread Kostya Vasilyev
Chris, You don't need to sync up the entire repo just to get the framework sources. The base framework is here: http://android.git.kernel.org/?p=platform/frameworks/base.git;a=summary Using the web interface, you can use the tags / branches sections to browse to the version you need, then

Re: [android-developers] method setDirty() for View?

2011-06-07 Thread wboe
Hi Romain, Dare I disagree? I am using home-made widgets and I monitor when they are redrawn. I found out that they were redrawn often, also when not needed. So I used a ViewGroup derived from AbsoluteLayout, stripped as much as possible. The superfluous redrawing now happens less

[android-developers] Re: How to add a Greek description of my App in android market

2011-06-07 Thread dim5b
I am publish a free app!!1 On Jun 6, 6:17 pm, dim5b dmpou...@gmail.com wrote: Can anyone tell me how to add a Greek description for my app in the Market it does not seem to give me the option? Thanks Dimitri -- You received this message because you are subscribed to the Google Groups

[android-developers] keypad unlocked automatically

2011-06-07 Thread souissi haythem
Hi, can i do this in android? if something happen (my download finish), the keypad is unlocked automatically. i can detect when my download has finished. but i can't found how to unlock my phone automatically. Thanks -- You received this message because you are subscribed to the Google Groups

Re: [android-developers] method setDirty() for View?

2011-06-07 Thread Romain Guy
Maybe the last sentence should be That's just not how the UI toolkit is supposed to work? You made a simple assumption based on your application. There is nothing in the UI toolkit that does what you describe. There is not even a notion of not enough time to redraw some views. The only thing

Re: [android-developers] preserve session

2011-06-07 Thread Knutsford Software
- Original Message - From: Daniel Drozdzewski daniel.drozdzew...@gmail.com To: android-developers@googlegroups.com Sent: Tuesday, June 07, 2011 9:54 AM Subject: Re: [android-developers] preserve session On Tue, Jun 7, 2011 at 9:42 AM, Knutsford Software i...@knutsford-software.co.uk

Re: [android-developers] method setDirty() for View?

2011-06-07 Thread Romain Guy
Note also that for the framework, a visible view is simply a view that intersects with the clipping rectangle. The clipping rectangle is based on the dirty region used by the last series of invalidate calls. This means that if a view is redrawn, an invalidate with a dirty rectangle intersecting

[android-developers] Monkey tool Events dropped - Is it an error with application?

2011-06-07 Thread raki
Hello All, I have been using Monkey stress testing on Honeycomb OS on my Tablet. On all the applications I am getting the dropped events. Events injected: 1 :Dropped: keys=231 pointers=400 trackballs=0 flips=0 What are these dropped events? Are they errors with touch driver or problem with

[android-developers] Device/user identification and data security

2011-06-07 Thread Dani
Hi, I have a question about data protection in a client (app) - server communication. What is the best way to make data visibile only for your clients app? I know that the complete protection is impossible, 'cause that the source code is in the hand of the attacker and with a good reverse

[android-developers] Re: Java source code for SDK API 11 12

2011-06-07 Thread Tomas Prochazka
Yes and also exists plugin which can provide source code of framework automatically http://code.google.com/p/adt-addons/ (only to API level 9 for now) On Jun 7, 11:00 am, Kostya Vasilyev kmans...@gmail.com wrote: Chris, You don't need to sync up the entire repo just to get the framework

Re: [android-developers] Re: Java source code for SDK API 11 12

2011-06-07 Thread Kostya Vasilyev
Yep, that a nice one, but it only has a limited selection of versions, and I occasionally need the sources for debugging on the device. 2011/6/7 Tomas Prochazka tomas.procha...@gmail.com Yes and also exists plugin which can provide source code of framework automatically

[android-developers] java.net.SocketException: Address family not supported by protocol

2011-06-07 Thread Ankur Kumar
Not able to figure out the solution to this problem. Have searched many forums and blogs. Please help. My application is not loading in the emulator and in the* LogCat* I see the following: *DEBUG/SntpClient(64): request time failed: java.net.SocketException: Address family not supported by

[android-developers] getting time out message when installing sdk from Android SDK and AVD manager'

2011-06-07 Thread Rocky
I'm installing and configuring Android in my company, i'm getting error, whereas i bypass the proxy of company. -- Thanks Regards Rakesh Kumar Jha -- 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] preserve session

2011-06-07 Thread Daniel Drozdzewski
GET or POST does not matter. Does your server create any sessions? Does your client know to accept cookies? You have to read up on http sessions. Daniel On Tue, Jun 7, 2011 at 10:13 AM, Knutsford Software i...@knutsford-software.co.uk wrote: - Original Message - From: Daniel

[android-developers] Handle checkboxes in an expandable listview.

2011-06-07 Thread juliagrig
Hi All, I am working in an expandable list view by an simple expandable list adapter. Also, I have fixed a database, where I store my data.I managed to display the data in expandable list view. Each child has a textview and a checkbox. Here is what I'm trying to achieve: 1) the checkboxes change

[android-developers] Re: Android talk with NB through the BLUETOOTH device

2011-06-07 Thread Edam
Thanks. I have zipped the files and its on my dropbox here http://dl.dropbox.com/u/7071839/MyApp.zip I added an info.txt file to explain what's going on. Any help you be greatly appreciated. -- You received this message because you are subscribed to the Google Groups Android Developers

Re: [android-developers] How to customize a permission for a service in Framework ?

2011-06-07 Thread Mark Murphy
Questions regarding modifying the OS belong on: http://source.android.com On Tue, Jun 7, 2011 at 2:35 AM, xhy xhyg...@gmail.com wrote: Hi all, I want to customize a permission for a service in Framework. The service is also customized by me, the implement's mechanism is IPC (aidl) and boots

Re: [android-developers] How to get internal storage path for music

2011-06-07 Thread Rahul Garg
Hi Goutham, I guess http://developer.android.com/guide/topics/data/data-storage.html#filesInternal, this will help. -- Rahul -- 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: How to add a Greek description of my App in android market

2011-06-07 Thread Zsolt Vasvari
It doesn't matter. If the language is not there, you are sh*t out of luck. I was just actaually looking at that list again. As a challange, I will send $50 to the first person who can tell me what logical order the languages are listed in. The screen we are talking about is the Listing Details

Re: [android-developers] Device/user identification and data security

2011-06-07 Thread Mark Murphy
On Tue, Jun 7, 2011 at 5:23 AM, Dani eraofw...@gmail.com wrote: What is the best way to make data visibile only for your clients app? Put it in the internal storage (i.e., getFilesDir(), openOutputStream()). That will protect it against other apps. It will not protect it against users, which is

Re: [android-developers] Re: Installing platforms without internet access

2011-06-07 Thread Rahul Garg
Gheter, harsh told you the same, download the sdk in Zip format, it is available on android developer site. And then follow the steps suggested by harsh. you wont need any internet connection for it. -- Rahul -- You received this message because you are subscribed to the Google Groups

Re: [android-developers] Configuration change problem

2011-06-07 Thread Mark Murphy
On Tue, Jun 7, 2011 at 12:56 AM, janoti m.jan...@gmail.com wrote: I have an Activity. I am running a new thread from onCreate which is creating a socket. When the device goes from portrait to landscape mode or vice-versa the Activity is getting restarted. I have different UI (xml) file for

[android-developers] Re: keypad unlocked automatically

2011-06-07 Thread Rahul Garg
Hi, you can check KeyguardManager.java in framework. there is method called disableKeyGuard(). -- Rahul -- 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] JpcapCaptor.getDeviceList() Failes for Android

2011-06-07 Thread Vijay
Hello Everyone, I'm trying to make a Network sinnfer app on Android. I have build the libpcap.so. on NDK. using this .so I have compiled the jpcap-0.7 (C source fiiles) to generate libjpcap.so. (again on NDK). Then I have created my Sniffer Application on Android. I have added the jpcap.jar,

[android-developers] Re: Contacts DISPLAY_NAME format logic change...

2011-06-07 Thread Vasiliy Petrov
If somebody have interest in this topic (contacts useability for active business usage), please put the star on on Issue ticket which i opened yesterday in bugtracking (you can find it by DISPLAY_NAME keyword). Maybe somebody from Google will react on it faster. -- You received this message

Re: [android-developers] Handle checkboxes in an expandable listview.

2011-06-07 Thread Kostya Vasilyev
Hi, 1 - You are most likely seeing issues caused by the list view recycling item views. An ExpandableListView is a subclass of ListView, and item view recycling is common to both of them. Look it up, there are plenty of tutorials. The main thing is to always set your child view's state

Re: [android-developers] method setDirty() for View?

2011-06-07 Thread wboe
Hi Romain, Actually I tried everything to find out the cause of the superfluous redraws. I had an AbsoluteLayout with about 20 children, and often, after an invalidate of one child, all visible View's were redrawn. Then I stripped the AbsoluteLayout, and there were less redraws. Then I

[android-developers] slide show functionality

2011-06-07 Thread Laxmi Verma
Hi, Can anybody please help me in how to implement slide show functionality in Android application. Thanks Regards, Laxmi Verma -- 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: EditText stops displaying characters as I'm typing?

2011-06-07 Thread Eric Carman
The following extracts from IInputConnectionWrapper shed a little light on this - no solution, but a little light. This appears to be the area where the error is occurring. As such, either the mInputConnection is returning null or the isActive method is returning false case

[android-developers] Re: java.net.SocketException: Address family not supported by protocol

2011-06-07 Thread ThaMe90
What address are you trying to use? On 7 jun, 11:45, Ankur Kumar specialan...@gmail.com wrote: Not able to figure out the solution to this problem. Have searched many forums and blogs. Please help. My application is not loading in the emulator and in the* LogCat* I see the following:

Re: [android-developers] slide show functionality

2011-06-07 Thread Mark Murphy
On Tue, Jun 7, 2011 at 7:54 AM, Laxmi Verma laxmiverma.andr...@gmail.com wrote: Can anybody please help me in how to implement slide show functionality in Android application. What is slide show functionality? -- Mark Murphy (a Commons Guy) http://commonsware.com |

Re: [android-developers] Re: java.net.SocketException: Address family not supported by protocol

2011-06-07 Thread Kostya Vasilyev
This: DEBUG/SntpClient(64): does not look like your application, unless you're developing an NTP client that's built into the emulator's system image (process id = 64). Most likely harmless and can be ignored. -- Kostya 2011/6/7 ThaMe90 theprophes...@gmail.com What address are you trying to

[android-developers] Re: How to add a Greek description of my App in android market

2011-06-07 Thread Mike
man, that screen is a mess. I've never even looked in there, but just tried adding translations for one app - it really blows up when translating the promotional text - most of the translations were way over the generous 80 character count after translation. -- You received this message because

Re: [android-developers] preserve session

2011-06-07 Thread Knutsford Software
- Original Message - From: Daniel Drozdzewski daniel.drozdzew...@gmail.com To: android-developers@googlegroups.com Sent: Tuesday, June 07, 2011 10:58 AM Subject: Re: [android-developers] preserve session GET or POST does not matter. Does your server create any sessions? Does your

[android-developers] Re: Device/user identification and data security

2011-06-07 Thread Dani
Thank you for the answer and sorry for my English, I don't mean to protect data stored in the device, but I mean to protect the communication between client (my app) and server: for example, I want my web service is accessible only by my app. I don't want that someone, simply stealing the url, has

Re: [android-developers] Re: Device/user identification and data security

2011-06-07 Thread Mark Murphy
On Tue, Jun 7, 2011 at 8:18 AM, Dani eraofw...@gmail.com wrote: Is there a  way to identify (server side) an android device, like using google account or a device id? http://android-developers.blogspot.com/2011/03/identifying-app-installations.html -- Mark Murphy (a Commons Guy)

[android-developers] Internet and intranet is not working at the same time on emulator

2011-06-07 Thread pramod.deore
Hi all, In my emulator Internet and intranet is not working on same time on emulator. When I want to hit URL from internet then I have to set Run Configuration of emulator -http-proxy http://10.16.12.101:8080. After setting this I am able to hit internet URL but if I try for intranet URL then it

Re: [android-developers] How to get internal storage path for music

2011-06-07 Thread Prakash Iyer
There are some phones, eg the first HTC phone at VZW, which have 3 mount points for music. Basically the internal memory is partitioned into the internal filesystem a modifiable partition that can be mounted as a USB drive. Users can move music there this is scanned by the media player but is

[android-developers] Need a NFC compatible Desktop NFC-Reader

2011-06-07 Thread Ferit T
Hi everybody, i'm working on some simple NFC-Applications and i want to realize a simple scenario, where the Nexus S sends some Text / URI / SmartPoster to a desktop NFC-Reader. What i'm searching for is a NFC-Reader which is has the P2P- functionality. I'm using some simple nfc-read only USB

[android-developers] Dinamically TextView's

2011-06-07 Thread Diogo Salaberri
Hi everyone.. I need a help. I want to insert dinamically in a LinearLayout some TextView's. Example: - When my activity build my layout I want to put a *for* that will calculate a number of TextView's I'll create. I hope you can help me. Bye, thanks. -- Atenciosamente; Diogo Bonoto Salaberri

[android-developers] Re: Device/user identification and data security

2011-06-07 Thread Zsolt Vasvari
Have you looked into Google AppEngine? It tracks the users by their Google ID and also does a lot of other nice things for you. On Jun 7, 8:18 pm, Dani eraofw...@gmail.com wrote: Thank you for the answer and sorry for my English, I don't mean to protect data stored in the device, but I mean to

[android-developers] Re: keypad unlocked automatically

2011-06-07 Thread souissi haythem
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 email to android-developers+unsubscr...@googlegroups.com For more

Re: [android-developers] Dinamically TextView's

2011-06-07 Thread TreKing
On Tue, Jun 7, 2011 at 8:12 AM, Diogo Salaberri caxix...@gmail.com wrote: I want to insert dinamically in a LinearLayout some TextView's. Example: - When my activity build my layout I want to put a *for* that will calculate a number of TextView's I'll create. So do that. What's the

[android-developers] Re: Updating to ADT 11

2011-06-07 Thread mlybrand
They all seem to be related to DDMS at this point: Cannot complete the install because of a conflicting dependency. Software being installed: Android DDMS 11.0.0.v201105251008-128486 (com.android.ide.eclipse.ddms.feature.group 11.0.0.v201105251008-128486) Software currently installed: Shared

[android-developers] Re: Device/user identification and data security

2011-06-07 Thread Dani
thanks for the link, I gave it a look and it says that it's difficult to identify a particular device.. so I think the best way is to implement a standard web registration.. Dani On 7 Giu, 14:24, Mark Murphy mmur...@commonsware.com wrote: On Tue, Jun 7, 2011 at 8:18 AM, Dani eraofw...@gmail.com

[android-developers] Re: Dinamically TextView's

2011-06-07 Thread Zsolt Vasvari
You can dynamically add views to ViewGroups. You need to create the View and the LayoutParams appropriate for the ViewGroup and add it. On Jun 7, 9:12 pm, Diogo Salaberri caxix...@gmail.com wrote: Hi everyone.. I need a help. I want to insert dinamically in a LinearLayout some TextView's.

[android-developers] Eclipse lint plug-in

2011-06-07 Thread Zsolt Vasvari
Not strictly an Android question, but somewhat appropriate. Does anybody know a good lint type plug-in for Eclipse? The built-in checks are pretty useful, but I would like to have a few more, most importantly checking for passing null values to methods. -- You received this message because you

Re: [android-developers] Dinamically TextView's

2011-06-07 Thread Diogo Salaberri
I try many codes but I didn't solve that problem. On Tue, Jun 7, 2011 at 10:15 AM, TreKing treking...@gmail.com wrote: On Tue, Jun 7, 2011 at 8:12 AM, Diogo Salaberri caxix...@gmail.comwrote: I want to insert dinamically in a LinearLayout some TextView's. Example: - When my activity build

[android-developers] display index.ph in browser

2011-06-07 Thread Knutsford Software
This is my code String url = StrippedChars(Url.getText().toString().trim()); final SharedPreferences mPreferences; mPreferences = getSharedPreferences(CurrentUser, MODE_PRIVATE); HttpPost httppost = new HttpPost(http://www.extraplay.com/mobile/prcs_login-verify-mobile.php;);

[android-developers] Re: Java source code for SDK API 11 12

2011-06-07 Thread Chris
Thanks, this is exactly what I was looking for. Cheers, - C -- 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: Device/user identification and data security

2011-06-07 Thread Dani
Thank you, it may solve this problem.. I'm going to read the documentation Dani On 7 Giu, 15:15, Zsolt Vasvari zvasv...@gmail.com wrote: Have you looked into Google AppEngine?  It tracks the users by their Google ID and also does a lot of other nice things for you. On Jun 7, 8:18 pm, Dani

Re: [android-developers] Dinamically TextView's

2011-06-07 Thread Mohammed Hossain Doula
Dynamically adding views should be based upon some event trigger... What the trigger are you firing??? On Tue, Jun 7, 2011 at 7:25 PM, Diogo Salaberri caxix...@gmail.com wrote: I try many codes but I didn't solve that problem. On Tue, Jun 7, 2011 at 10:15 AM, TreKing treking...@gmail.com

Re: [android-developers] display index.ph in browser

2011-06-07 Thread Mark Murphy
On Tue, Jun 7, 2011 at 9:26 AM, Knutsford Software i...@knutsford-software.co.uk wrote: I want http://www.extraplay.com/mobile/index.php to display in a browser and I want the session variables preserved from http://www.extraplay.com/mobile/prcs_login-verify-mobile.php when in.php is called.

Re: [android-developers] Dinamically TextView's

2011-06-07 Thread Diogo Salaberri
I didn't have a trigger, when I show that view, I make a request that responses me some itens that I want to add in a textview, because I need do dinamically inclusion of textview. P.S That number of textview's can be 1 or 5 for example. Thanks On Tue, Jun 7, 2011 at 10:33 AM, Mohammed Hossain

Re: [android-developers] display index.ph in browser

2011-06-07 Thread Knutsford Software
- Original Message - From: Mark Murphy mmur...@commonsware.com To: android-developers@googlegroups.com Sent: Tuesday, June 07, 2011 2:41 PM Subject: Re: [android-developers] display index.ph in browser On Tue, Jun 7, 2011 at 9:26 AM, Knutsford Software i...@knutsford-software.co.uk

Re: [android-developers] preserve session

2011-06-07 Thread Daniel Drozdzewski
On Tue, Jun 7, 2011 at 1:17 PM, Knutsford Software i...@knutsford-software.co.uk wrote: - Original Message - From: Daniel Drozdzewski daniel.drozdzew...@gmail.com To: android-developers@googlegroups.com Sent: Tuesday, June 07, 2011 10:58 AM Subject: Re: [android-developers] preserve

Re: [android-developers] Eclipse lint plug-in

2011-06-07 Thread Nikolay Elenkov
On Tue, Jun 7, 2011 at 10:24 PM, Zsolt Vasvari zvasv...@gmail.com wrote: Not strictly an Android question, but somewhat appropriate. Does anybody know a good lint type plug-in for Eclipse?  The built-in checks are pretty useful, but I would like to have a few more, most importantly checking

Re: [android-developers] Re: Device/user identification and data security

2011-06-07 Thread Marcin Orlowski
On 7 June 2011 14:18, Dani eraofw...@gmail.com wrote: Thank you for the answer and sorry for my English, I don't mean to protect data stored in the device, but I mean to protect the communication between client (my app) and server: for example, I want my web service is accessible only by my

[android-developers] [android-porting] vold issue

2011-06-07 Thread Steven
Hi All, I am currently working on bringing up Gingerbread on a device. We have a partition, /dev/block/mmcblk0p18, which has a FAT32 filesystem to be used as /mnt/sdcard. My vold.fstab looks like this: dev_mount sdcard /mnt/sdcard auto /devices/platform/msm_sdcc.2/

[android-developers] Re: Menu options with Intent.createChooser

2011-06-07 Thread dillipk
Hi Murphy, Thanks for your valuable information. DK On Jun 6, 3:10 pm, Mark Murphy mmur...@commonsware.com wrote: On Mon, Jun 6, 2011 at 2:55 PM, dillipk codersnet2...@gmail.com wrote:  I am trying to list out the following email clients/social networking client in a menu by using

Re: [android-developers] Eclipse lint plug-in

2011-06-07 Thread Kristopher Micinski
+1 for FindBugs, go Terps : ) Kris On Jun 7, 2011 9:55 AM, Nikolay Elenkov nikolay.elen...@gmail.com wrote: On Tue, Jun 7, 2011 at 10:24 PM, Zsolt Vasvari zvasv...@gmail.com wrote: Not strictly an Android... Don't remember if the have a null passing rule, but try FindBugs, PMD, and maybe

Re: [android-developers] Dinamically TextView's

2011-06-07 Thread TreKing
On Tue, Jun 7, 2011 at 8:25 AM, Diogo Salaberri caxix...@gmail.com wrote: I try many codes but I didn't solve that problem. What problem? You've indicated what you kind of, sort of want to do, but not what you're actually having trouble on.

Re: [android-developers] Dinamically TextView's

2011-06-07 Thread Diogo Salaberri
How can I do this ? On Tue, Jun 7, 2011 at 11:10 AM, TreKing treking...@gmail.com wrote: On Tue, Jun 7, 2011 at 8:25 AM, Diogo Salaberri caxix...@gmail.comwrote: I try many codes but I didn't solve that problem. What problem? You've indicated what you kind of, sort of want to do, but not

Re: [android-developers] Re: Device/user identification and data security

2011-06-07 Thread Streets Of Boston
For authentication, let your users log in. Right now, if you have any sensitive data (personal user data or other sensitive data) or data that can lead to sensitive data, never ever use plain HTTP (remember when google needed to send out a patch quickly when Calendar and other Google apps sent

Re: [android-developers] Dinamically TextView's

2011-06-07 Thread TreKing
On Tue, Jun 7, 2011 at 9:13 AM, Diogo Salaberri caxix...@gmail.com wrote: How can I do this ? Do what? Explain your problem? - TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago

[android-developers] Re: preserve session

2011-06-07 Thread Streets Of Boston
Yes, you can use DefaultHttpClient. However, you should attach a org.apache.http.client.CookieStore to the client: Create a class that implements CookieStore. The implementation is straight-forward. Just maintain a list of cookies in memory if you only need session type cookies. When

[android-developers] stopService() crash problem

2011-06-07 Thread agrosner
Hello, I use a button to stop a service from running in my application, but I got stuck when the application keeps crashing. Here is the code and line 8 is the problem code I found by using breakpoints, any suggestions? public void onClick(View v) { switch (v.getId())

[android-developers] Re: preserve session

2011-06-07 Thread Knutsford Software
- Original Message - From: Streets Of Boston To: android-developers@googlegroups.com Cc: Knutsford Software Sent: Tuesday, June 07, 2011 3:23 PM Subject: Re: preserve session Yes, you can use DefaultHttpClient. However, you should attach a org.apache.http.client.CookieStore to the

[android-developers] Re: preserve session

2011-06-07 Thread Streets Of Boston
This would start your browser with the URL. Why do you need the DefaultHttpClient if you let the browser show your php page? -- 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] Dinamically TextView's

2011-06-07 Thread Diogo Salaberri
How can I put some textView in a LinearLayout dinamically ? On Tue, Jun 7, 2011 at 11:18 AM, TreKing treking...@gmail.com wrote: On Tue, Jun 7, 2011 at 9:13 AM, Diogo Salaberri caxix...@gmail.comwrote: How can I do this ? Do what? Explain your problem?

[android-developers] Re: preserve session

2011-06-07 Thread Knutsford Software
- Original Message - From: Streets Of Boston To: android-developers@googlegroups.com Cc: Knutsford Software Sent: Tuesday, June 07, 2011 3:35 PM Subject: Re: preserve session This would start your browser with the URL. Why do you need the DefaultHttpClient if you let the browser

[android-developers] ADT 11 and layout-editor errors under Android 3.0 and Android 3.1 layout styles

2011-06-07 Thread Streets Of Boston
Hi, It seems that the layout-editor cannot run this code successfully in our EditTime.java implemenation: ... TypedArray customTypedAttrs = context.obtainStyledAttributes(attrs, R.styleable.EditTime); (*line 279*) regularTextColor =

[android-developers] Re: preserve session

2011-06-07 Thread Streets Of Boston
Ah... you need to be able to communicate the session-cookies from your apps' logon into the browser (which you start by the startActivity call). Since you move your app's work-flow to a different application (the browser), I don't know how to send the cookies from your app to the browser-app.

  1   2   >