RE: [android-developers] Immediate Requirement :: .Net Developer L2/L3 support :: Indianapolis, IN :: 6 months

2018-04-02 Thread Knutsford-software
01565 653673 <https://www.linkedin.com/company/knutsford-software-ltd> Please leave a review on TrustPilot <https://www.trustpilot.com/evaluate/www.knutsford-software.co.uk> -- You received this message because you are subscribed to the Google Groups "Android Developer

Re: [android-developers] How to increase textsize

2012-09-10 Thread Knutsford Software
ah right SpannableStringBuilder seems to be the way to go. Thanks I will give it a go Pam - Original Message - From: Mark Murphy mmur...@commonsware.com To: android-developers@googlegroups.com Sent: Monday, September 10, 2012 12:12 PM Subject: Re: [android-developers] How to

Re: [android-developers] How to add a dynamic editable text area to a LinearLayout

2012-09-07 Thread Knutsford Software
I did but it wasn't very helpful. I have just this minute solved it though I needed something like EditText et = new EditText(v.getContext()); Thanks - Original Message - From: Justin Anderson To: android-developers@googlegroups.com Sent: Friday, September 07, 2012

Re: [android-developers] images

2012-03-09 Thread Knutsford Software
- Original Message - From: TreKing To: android-developers@googlegroups.com Sent: Thursday, March 08, 2012 10:14 PM Subject: Re: [android-developers] images On Thu, Mar 8, 2012 at 10:35 AM, Knutsford Software i...@knutsford-software.co.uk wrote: If you write an app that uses a lot

Re: [android-developers] images

2012-03-09 Thread Knutsford Software
Depends on the size of your images and how you're using them. Back it up, tell us what the problem you're trying to solve is and why you're looking at your current approach and then people can chip in. I was just a general question about what do people do if they want to write an App

Re: [android-developers] images

2012-03-09 Thread Knutsford Software
- Original Message - From: Kostya Vasilyev To: android-developers@googlegroups.com Sent: Friday, March 09, 2012 2:15 PM Subject: Re: [android-developers] images Since the original question was motivated by the limited amount of internal device storage ... using a SQLite

Re: [android-developers] images

2012-03-09 Thread Knutsford Software
From: Kostya Vasilyev kmans...@gmail.com To: android-developers@googlegroups.com Sent: Friday, March 09, 2012 3:22 PM Subject: Re: [android-developers] images On 03/09/2012 07:08 PM, Knutsford Software wrote: Having an external database or space on a server somewhere you mean? I meant

Re: [android-developers] images

2012-03-09 Thread Knutsford Software
- Original Message - From: Kostya Vasilyev To: android-developers@googlegroups.com Sent: Friday, March 09, 2012 3:53 PM Subject: Re: [android-developers] images On 03/09/2012 07:36 PM, Knutsford Software wrote: Is there a reasonable amount of space on there then? I was thinking

[android-developers] images

2012-03-08 Thread Knutsford Software
If you write an app that uses a lot of images where do you store them? I would imagine that sqllite won't have room to hold too many. I am curious as what the best practice is Thanks -- You received this message because you are subscribed to the Google Groups Android Developers group. To

[android-developers] Two problems

2011-12-16 Thread Knutsford Software
I have two problems 1) This one should be easy to spot but it is 10 years since I did any Java and I can' tsee what is wring TempTempstr[4]) is definately set to 1 but if (TempTempstr[4].equals(1)) { in this bit of code doesn't think it is and I have no ide why CheckBox cb = new

[android-developers] How do you loop through check boxes

2011-12-16 Thread Knutsford Software
I have written several check boxes to the screen plus an update button for(int x = 0 ; x Tempstr.length; x++){ String[] TempTempstr = Tempstr[x].split(@); CheckBox cb = new CheckBox(v.getContext()); if (TempTempstr[4].equals(1)) { cb.setChecked(true); } cb.setText(TempTempstr[0] + ,

Re: [android-developers] How do you loop through check boxes

2011-12-16 Thread Knutsford Software
- Original Message - From: TreKing To: android-developers@googlegroups.com Sent: Friday, December 16, 2011 3:16 PM Subject: Re: [android-developers] How do you loop through check boxes On Fri, Dec 16, 2011 at 9:08 AM, Knutsford Software i...@knutsford-software.co.uk wrote: How do

Re: [android-developers] How do you loop through check boxes

2011-12-16 Thread Knutsford Software
: TreKing To: android-d...@googlegroups.com Sent: Friday, December 16, 2011 3:16 PM Subject: Re: [android-developers] How do you loop through check boxes On Fri, Dec 16, 2011 at 9:08 AM, Knutsford Software in...@knutsford-software.co.uk wrote: How do you loop through all the check boxes in thee onclick

Re: [android-developers] How do you loop through check boxes

2011-12-16 Thread Knutsford Software
- Original Message - From: TreKing To: android-developers@googlegroups.com Sent: Friday, December 16, 2011 4:59 PM Subject: Re: [android-developers] How do you loop through check boxes On Fri, Dec 16, 2011 at 10:29 AM, Knutsford Software i...@knutsford-software.co.uk wrote

Re: [android-developers] How do you loop through check boxes

2011-12-16 Thread Knutsford Software
Sorry - ignore my last Email. I need isChecked() Thnaks for pointing me in the right direction Pam -- 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

[android-developers] Adding checkbox

2011-12-15 Thread Knutsford Software
I am new to android. I have this in my code CheckBox cb = new CheckBox(v.getContext()); Then a bit later on I have this String[] Tempstr = str.split(#); LinearLayout.removeAllViews(); for(int x = 0 ; x Tempstr.length; x++){ String[] TempTempstr = Tempstr[x].split(@);

Re: [android-developers] Adding checkbox

2011-12-15 Thread Knutsford Software
: Thursday, December 15, 2011 12:53 PM Subject: Re: [android-developers] Adding checkbox Did you read the log? On Thu, Dec 15, 2011 at 5:37 AM, Knutsford Software i...@knutsford-software.co.uk wrote: 12-15 11:21:58.510: E/AndroidRuntime(1136): java.lang.IllegalStateException: The specified

[android-developers] Adding new fields

2011-06-23 Thread Knutsford Software
My app needs to read a mysql database then display one or more check boxes on the screen depending on what is returned from the database. I have got it to read the database ok but I am not sure how to do the check boxes. Is it possible to get java to write them from scratch and if so how?

Re: [android-developers] Adding new fields

2011-06-23 Thread Knutsford Software
it to the container using addView(). On Thu, Jun 23, 2011 at 6:23 AM, Knutsford Software i...@knutsford-software.co.uk wrote: My app needs to read a mysql database then display one or more check boxes on the screen depending on what is returned from the database. I have got it to read

[android-developers] Preserve browser position

2011-06-15 Thread Knutsford Software
If you been using an app to browser the internet then use the phone to do something else then want to resume where you were when browsing how do you do it? Thanks -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send

Re: [android-developers] Preserve browser position

2011-06-15 Thread Knutsford Software
- Original Message - From: TreKing To: android-developers@googlegroups.com Sent: Wednesday, June 15, 2011 10:55 PM Subject: Re: [android-developers] Preserve browser position On Wed, Jun 15, 2011 at 8:12 AM, Knutsford Software i...@knutsford-software.co.uk wrote: If you been using

Re: [android-developers] Preserve browser position

2011-06-15 Thread Knutsford Software
- Original Message - From: TreKing To: android-developers@googlegroups.com Sent: Wednesday, June 15, 2011 11:30 PM Subject: Re: [android-developers] Preserve browser position On Wed, Jun 15, 2011 at 5:25 PM, Knutsford Software i...@knutsford-software.co.uk wrote: I take

Re: [android-developers] two questions from a newbie

2011-06-09 Thread Knutsford Software
- Original Message - From: Mark Murphy mmur...@commonsware.com To: android-developers@googlegroups.com Sent: Thursday, June 09, 2011 1:38 AM Subject: Re: [android-developers] two questions from a newbie On Wed, Jun 8, 2011 at 8:30 PM, Knutsford Software i...@knutsford-software.co.uk

[android-developers] two questions from a newbie

2011-06-08 Thread Knutsford Software
I have a couple of questions 1) If you have a form in in app what do you do if the app goes into the background while you are in the middle of completing the form? Do you need to do something in OnResume or will it resume in the state that you left it in before it went into the background?

Re: [android-developers] two questions from a newbie

2011-06-08 Thread Knutsford Software
- Original Message - From: Mark Murphy mmur...@commonsware.com To: android-developers@googlegroups.com Sent: Wednesday, June 08, 2011 11:24 PM Subject: Re: [android-developers] two questions from a newbie On Wed, Jun 8, 2011 at 6:14 PM, Knutsford Software i...@knutsford

[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] 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] 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] 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;);

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

[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

[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] 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:56 PM Subject: Re: preserve session Ah... you need to be able to communicate the session-cookies from your apps' logon into the browser (which

[android-developers] Login form

2011-06-06 Thread Knutsford Software
I am trying to build a login form to the mobile version of a web site but I am not sure of what the procces is. Do you post the login parameters to a php script on the server then return if they are ok or not then call the index.php from the app if they are or does the php script on the

Re: [android-developers] login form

2011-06-06 Thread Knutsford Software
- Original Message - From: TreKing To: android-developers@googlegroups.com Sent: Monday, June 06, 2011 5:17 PM Subject: Re: [android-developers] login form On Mon, Jun 6, 2011 at 10:20 AM, Knutsford Software i...@knutsford-software.co.uk wrote: 3) If it is correct then why

Re: [android-developers] login form

2011-06-06 Thread Knutsford Software
Original Message - From: Chris To: android-developers@googlegroups.com Cc: Knutsford Software Sent: Monday, June 06, 2011 5:54 PM Subject: Re: [android-developers] login form 06-06 16:29:53.071: ERROR/AndroidRuntime(2145): java.lang.ArrayIndexOutOfBoundsException ... for (int

Re: [android-developers] login form

2011-06-06 Thread Knutsford Software
- Original Message - From: Miguel Morales To: android-developers@googlegroups.com Sent: Monday, June 06, 2011 5:46 PM Subject: Re: [android-developers] login form Wow, I really hope that's not for an enterprise application. I believe this is a candidate for http://thedailywtf.com

Re: [android-developers] login form

2011-06-06 Thread Knutsford Software
- Original Message - From: Miguel Morales To: android-developers@googlegroups.com Sent: Monday, June 06, 2011 7:26 PM Subject: Re: [android-developers] login form 1) Why are you trying to strip out SQL commands from the input? That's a losing battle on the client side. Your php

Re: [android-developers] login form

2011-06-06 Thread Knutsford Software
- Original Message - From: Miguel Morales To: android-developers@googlegroups.com Sent: Monday, June 06, 2011 8:24 PM Subject: Re: [android-developers] login form 2) Separate your UI code from your network code, otherwise your app will get an Application Not Responding dialog

Re: [android-developers] LOg in form

2011-06-05 Thread Knutsford Software
I should have said that I now have my login form working - I needes an onresstart 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,

[android-developers] LOg in form

2011-06-03 Thread Knutsford Software
I am doing my first login form public class login extends Activity { /** Called when the activity is first created. */ private EditText Email; private EditText Password; private Button btnLogin; private Button btnCancel; private TextView lblResult; public void

[android-developers] center buttons

2011-06-01 Thread Knutsford Software
I have this layout ?xml version=1.0 encoding=utf-8? LinearLayout xmlns:android=http://schemas.android.com/apk/res/android; android:orientation=vertical android:layout_width=fill_parent android:layout_height=fill_parent TextView

Re: [android-developers] center buttons

2011-06-01 Thread Knutsford Software
- Original Message - From: Shashidhar To: android-developers@googlegroups.com Sent: Wednesday, June 01, 2011 12:14 PM Subject: Re: [android-developers] center buttons see the text in red color below. On Wed, Jun 1, 2011 at 3:20 PM, Knutsford Software i...@knutsford

[android-developers] facebook and twitter

2011-05-17 Thread Knutsford Software
If you want to use twitter and facebook in you android app you need to download the apk but where do you put it so that it is picked up by Eclipse? I have been googling but I am still confused. Thanks -- You received this message because you are subscribed to the Google Groups Android

Re: [android-developers] ??:facebook and twitter

2011-05-17 Thread Knutsford Software
- Original Message - From: warenix To: android-developers@googlegroups.com Cc: Knutsford Software Sent: Tuesday, May 17, 2011 10:59 AM Subject: [android-developers] ??:facebook and twitter you don't have to install twitter facebook app but the java library sdk for facebook

Re: [android-developers] How did you get into Android development

2011-05-15 Thread Knutsford Software
- Original Message - From: Andrew Gregory To: android-developers@googlegroups.com Sent: Sunday, May 15, 2011 5:08 AM Subject: Re: [android-developers] How did you get into Android development Apart from the obvious of starting your own app from scratch, you could try searching for

Re: [android-developers] How did you get into Android development

2011-05-15 Thread Knutsford Software
- Original Message - From: Raghav Sood To: android-developers@googlegroups.com Sent: Sunday, May 15, 2011 8:15 AM Subject: Re: [android-developers] How did you get into Android development Search for Android on google code. Ahh - I thanks I didn't know that existed -- You

[android-developers] How did you get into Android development

2011-05-13 Thread Knutsford Software
How did people on this list get from learning about Android to getting paid work developing apps. In other words how did you get past the no experience no work stage? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group,

Re: [android-developers] How did you get into Android development

2011-05-13 Thread Knutsford Software
- Original Message - From: Marcin Orlowski To: android-developers@googlegroups.com Sent: Friday, May 13, 2011 12:15 PM Subject: Re: [android-developers] How did you get into Android development On 13 May 2011 12:24, Knutsford Software i...@knutsford-software.co.uk wrote: How did

Re: [android-developers] How did you get into Android development

2011-05-13 Thread Knutsford Software
- Original Message - From: Kostya Vasilyev kmans...@gmail.com To: android-developers@googlegroups.com Sent: Friday, May 13, 2011 2:45 PM Subject: Re: [android-developers] How did you get into Android development 13.05.2011 17:02, Knutsford Software пишет: I am a programmer

[android-developers] emulator

2011-05-06 Thread Knutsford Software
The emulator for eclipse is very slow to load. One it is loaded and I want to make a change to an app is there anyway to speed it up or do I have to do a run everytime? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group,

Re: [android-developers] emulator

2011-05-06 Thread Knutsford Software
- Original Message - From: Kostya Vasilyev To: android-developers@googlegroups.com Sent: Friday, May 06, 2011 9:47 AM Subject: Re: [android-developers] emulator You can keep the emulator running, just like you would a phone. Eclipse will then just reinstall your application, which

[android-developers] emulator again

2011-05-06 Thread Knutsford Software
Is there anyway that the contents left hand side of the eclipse emulator be made smaller? When you click on the oval button on the right to get the keyboard on the left the keybpad that appears is too wide and you can't see the bottom part. Thanks -- You received this message because you are

Re: [android-developers] emulator again

2011-05-06 Thread Knutsford Software
- Original Message - From: Kostya Vasilyev To: android-developers@googlegroups.com Sent: Friday, May 06, 2011 1:09 PM Subject: Re: [android-developers] emulator again When you launch the emulator, there is a checkbox labeled Scale display to real size. If you enable that, you can

[android-developers] eclipse locale setting

2011-05-06 Thread Knutsford Software
I am trying to do this http://developer.android.com/resources/tutorials/localization/index.html How do I change the locale setting fro the emulator? I can't find the setting Thanks -- You received this message because you are subscribed to the Google Groups Android Developers group. To

Re: [android-developers] eclipse locale setting

2011-05-06 Thread Knutsford Software
grid, and then select Custom Locale. On Fri, May 6, 2011 at 10:14 AM, Knutsford Software i...@knutsford-software.co.uk wrote: I am trying to do this http://developer.android.com/resources/tutorials/localization/index.html How do I change the locale setting fro the emulator? I can't find

[android-developers] deleting old apps

2011-05-06 Thread Knutsford Software
How do you delete old apps from the eclipse emulator? 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

Re: [android-developers] deleting old apps

2011-05-06 Thread Knutsford Software
- Original Message - From: Justin Anderson To: android-developers@googlegroups.com Sent: Friday, May 06, 2011 4:02 PM Subject: Re: [android-developers] deleting old apps Either wipe all user data on the next launch, or uninstall them just like you would any other app... And it is

Re: [android-developers] deleting old apps

2011-05-06 Thread Knutsford Software
- Original Message - From: Justin Anderson To: android-developers@googlegroups.com Sent: Friday, May 06, 2011 4:02 PM Subject: Re: [android-developers] deleting old apps Either wipe all user data on the next launch, or uninstall them just like you would any other app... And it is

Re: [android-developers] Books

2011-05-02 Thread Knutsford Software
- Original Message - From: a a harvey.a...@gmail.com To: android-developers@googlegroups.com Sent: Monday, May 02, 2011 1:41 AM Subject: Re: [android-developers] Books in fact, i have never writed with java. (i writed c/c++ before) but i can still good at android ^_^ If not Java

Re: [android-developers] Books

2011-05-02 Thread Knutsford Software
- Original Message - From: Mark Murphy mmur...@commonsware.com To: android-developers@googlegroups.com Sent: Sunday, May 01, 2011 3:44 PM Subject: Re: [android-developers] Books On Sun, May 1, 2011 at 3:30 AM, Knutsford Software i...@knutsford-software.co.uk wrote: I had suspected

Re: [android-developers] Books

2011-05-01 Thread Knutsford Software
- Original Message - From: Mark Murphy mmur...@commonsware.com To: android-developers@googlegroups.com Sent: Saturday, April 30, 2011 12:48 PM Subject: Re: [android-developers] Books On Sat, Apr 30, 2011 at 7:34 AM, Knutsford Software i...@knutsford-software.co.uk wrote: What books

Re: [android-developers] php enviroment

2011-04-30 Thread Knutsford Software
- Original Message - From: Miguel Morales To: android-developers@googlegroups.com Sent: Friday, April 29, 2011 9:30 PM Subject: Re: [android-developers] php enviroment http://www.phpforandroid.net/ first link when googling php + android On Thu, Apr 28, 2011 at 6:09 AM, Knutsford

[android-developers] Books

2011-04-30 Thread Knutsford Software
What books do you recommend for learning how to develop android apps - I don't want to relearn Java but I gather you can write them in PHP Thanks -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

[android-developers] php enviroment

2011-04-29 Thread Knutsford Software
Hi, How do I set up a testing environement on windows xp to test php apps for android. I have xamp loaded for normal xp development. I presume I need eclipse but I can't find any instructions for php only Java Thanks -- You received this message because you are subscribed to the Google