[android-developers] Error in the bowser in Android accessing my web site: The server failed to communicate. Try again later.

2010-09-15 Thread powder
Hi, I have a problem accessing my web site from the Android browser, see the error below. On a desktop in Chrome for instance it works perfectly. I think it has do do with DNS or something in the setup, Im using Google Apps as the WEB-site provider and another company as the domain registrar. Any

[android-developers] Re: Adding android:targetSdkVersion="4" gives me a sdcard (Permission denied)

2010-07-08 Thread powder
I finally found the problem, my post above and my code was wrong, moving the permissions outside tag worked: Many thanks for all the suggestions... On Jul 8, 6:37 pm, powder wrote: > It works und 2.2 in the emulator, so the new path is tested and wo

[android-developers] Re: Adding android:targetSdkVersion="4" gives me a sdcard (Permission denied)

2010-07-08 Thread powder
It works und 2.2 in the emulator, so the new path is tested and works, but changing to the following it stops working: instead of Is it a bug or what am I not doing correctly? On Jul 8, 2:31 pm, Adrian Vintu wrote: > thank you Mark. good to know :) > > > > On Thu, Jul 8, 2010 at 2:27 PM, M

[android-developers] Starting the emulator in QVGA screen size produces a skewded DatePicker in default Android settings

2010-07-08 Thread powder
Hi, Starting the emulator with 2.2 and QVGA screen size, going into Settings, Date & time, uncheck Automatic if set, Set date. The DatePicker year part is not displayed fully, Only 1/3 of the year is shown, the rest does not fit the screen. It seems Android DatePicker do not scale for small screen

[android-developers] Re: Adding android:targetSdkVersion="4" gives me a sdcard (Permission denied)

2010-07-08 Thread powder
n to your manifest. > > > > > > On Thu, Jul 8, 2010 at 7:28 AM, powder wrote: > > I have a piece of code that copies a file to the sdcard, it always > > worked. But changing the following > > line in the Manifest from: > > > > > > to > > >

[android-developers] Adding android:targetSdkVersion="4" gives me a sdcard (Permission denied)

2010-07-08 Thread powder
Hi, I have a piece of code that copies a file to the sdcard, it always worked. But changing the following line in the Manifest from: to Gives me a error (have not changed anything else). Anyone have an explanation? 07-08 13:13:38.121: ERROR/myApp(266): /mnt/sdcard/myapp/customer.db (Permiss

[android-developers] Re: Certain apps not being shown in Android Market?

2010-06-12 Thread powder
s, so the copy protection apparently isn't doing > much good anyway and I can safely disable it ;-)! > > On Jun 9, 1:17 am, TreKing wrote: > > > > > On Tue, Jun 8, 2010 at 4:17 PM, powder wrote: > > > Google did a fix: > > > >http://android-developers.

[android-developers] Re: Certain apps not being shown in Android Market?

2010-06-08 Thread powder
Google did a fix: http://android-developers.blogspot.com/2010/06/application-visibility-issues.html On 29 Mai, 12:00, powder wrote: > Here I got it here: > > http://android.clients.google.com/packages/passion/signed-passion-FRF... > > But they removed the link now:-) > >

[android-developers] Re: Certain apps not being shown in Android Market?

2010-05-29 Thread powder
Here I got it here: http://android.clients.google.com/packages/passion/signed-passion-FRF50-from-ERE27.1e519a24.zip But they removed the link now:-) I still have the zip, if you want it I can send it to you... On May 28, 10:24 pm, Mark Murphy wrote: > powder wrote: > > I though

[android-developers] Re: Certain apps not being shown in Android Market?

2010-05-28 Thread powder
Hi, Thanks... I thought 2.2 was offical, I have installed a "true" 2.2 from Google on a non rooted Nexus phone. Should not Google make sure this works before even putting up the new SDK and before rolling out 2.2. Regards Jonas. On May 27, 9:19 am, String wrote: > On May 27, 3:

[android-developers] Re: Certain apps not being shown in Android Market?

2010-05-26 Thread powder
Hi, I have the same problem and its definitely the copy protection. I have a Nexus which I updated to Froyo and now I have to turn off the copy protection in order for my app to show up in the market. When is Google going to fix this problem? Not related but also a point to mention is that all r

[android-developers] Detect and pick up Gesture in a filled ListActivity

2010-04-24 Thread powder
Hi, I have a piece of code that enables me to detect fling/swipe left and right, thereby calling moveLeft() and moveRight(). This works fine in a normal Activity and ListActivity. When the ListActivity screen is fully filled with entries this code does not pick up the fling/swipe, but instead tri

[android-developers] Re: Weekpicker?

2010-04-23 Thread powder
ot; wrote: > On Thu, Apr 22, 2010 at 3:53 PM, powder wrote: > > Anyone have an idea how to code a WeekPicker much like existing DatePicker > > and TimePicker? > > You should probably define what it means to pick a

[android-developers] Weekpicker?

2010-04-22 Thread powder
Hi, Anyone have an idea how to code a WeekPicker much like existing DatePicker and TimePicker? Code example? Many Thanks, Regards Carl -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developer

[android-developers] Re: Cant login into android market. Market down?

2010-04-17 Thread powder
I had this too, next day it was gone... On Apr 16, 1:14 am, Joël Bourquard wrote: > When I go tohttp://market.android.com/publish/Home > > I get a HTTP 404 error. > > Hope this is resolved soon... > > -- > You received this message because you are subscribed to the Google > Groups "Android Devel

[android-developers] Re: Sending email with attachment

2010-04-16 Thread powder
Sorry for not responding earlier. This worked for me: public static void sendFile(Context context) { String emailPreference = PreferenceManager.getDefaultSharedPreferences(context).getString("emailPreference", ""); String subjectPreference = PreferenceManager.getDefaultSha

[android-developers] Re: Cant login into android market. Market down?

2010-04-15 Thread powder
Hi, Next day it was working, it seem google market had some temporary problems... On Apr 15, 10:43 pm, powder wrote: > Cant login into android market get the following error: > > Oops! This link appears to be broken. > Suggestions: > Access a cached copy of market. android. co

[android-developers] Cant login into android market. Market down?

2010-04-15 Thread powder
Cant login into android market get the following error: Oops! This link appears to be broken. Suggestions: Access a cached copy of market. android. com/ publish Go to android. com Go to market. android. com Search on Google: After login in to gmail and then using the link: http://market.android.

[android-developers] Re: Sending email with attachment

2010-04-07 Thread powder
                    "Send CSV file")); >                 } else { >                         Toast.makeText(context, "TTT", > Toast.LENGTH_LONG).show(); >                 } > > This piece of code works fine. I got the mail with the attachment. > > Thanks and Regards, > Kum

[android-developers] EXTRA_STREAM: Attachment URI size 0

2010-04-03 Thread powder
Hi, Upon attaching an email via the following code: Intent sendIntent = new Intent(Intent.ACTION_SEND); sendIntent.putExtra(Intent.EXTRA_SUBJECT, "CSV file"); sendIntent.putExtra(Intent.EXTRA_STREAM, Uri.parse("file://" + Environment.getExternalStorageDirectory() + "/mydir/file.csv")); sendIntent

[android-developers] Re: Sending email with attachment

2010-04-01 Thread powder
;> size: 0 ... and the file size is 0. My file is attached in the email as a file but always with 0 bytes (my file is 510 bytes)? On Apr 1, 1:27 pm, Kumar Bibek wrote: > Some logcat logs will be helpful in trying to figure out what went > wrong. > > Thanks and Regards, &

[android-developers] Sending email with attachment

2010-04-01 Thread powder
Hi, I never got this to work on a real device, got the email but no attachment, also when installing K9 on a emulator and then sending the email I see the mail in the outbox with a size of 0 bytes: public static void sendFile(Context context) { File exportDir = new File(Environment.getExternalS

[android-developers] Sending email with attachment does not include the attachment

2010-04-01 Thread powder
Hi, I never got this to work on a real device, got the email but no attachment, when installing K9 on a emulator and then sending the email I see the mail in the outbox with a size of 0 bytes: public static void sendFile(Context context) { File exportDir = new File(Envir