Re: [android-developers] Looking for Android language translation partners

2011-06-27 Thread Bernard T. Higonnet
It's not that I want to be cruel, but the English shown on your app's 
page is rather poor. For example, I doubt very much that Google 
translation would produce the word quite when the word should be quiet.


Though it is true that both users and possible translators could work 
from the present English version, starting with a good English one would 
help...


Bernard Higonnet

On 06/24/11 15:00, WeiLong wrote:

Dear whom may concern,

I'm looking for a language exchange partners of Android developing who
can help on various language translation.

This is the application that I developed , “Stop dog barking”
https://market.android.com/details?id=com.wuhome.stopDogBarking

Although I’m using “Google translation” to do roughly translation, I’m
searching for help to make it more colloquialism and easy to
understand.

As a partner, I will provide Traditional Chinese  simple Chinese
translation service for you.

Below is language exchange partners that I'm looking for.
1.  Russian,  http://dl.dropbox.com/u/25164515/Russian.doc
2.  Dutch,  http://dl.dropbox.com/u/25164515/Dutch.doc
3.  Italian,  http://dl.dropbox.com/u/25164515/Italian.doc
4.  Czech,  http://dl.dropbox.com/u/25164515/Czech.doc
5.  Polish,  http://dl.dropbox.com/u/25164515/Polish.doc
6.  Portuguese,  http://dl.dropbox.com/u/25164515/Portuguese.doc
7.  Finnish,  http://dl.dropbox.com/u/25164515/Finnish.doc
8.  Swedish,  http://dl.dropbox.com/u/25164515/Swedish.doc
9.  Norwegian Bokmål,  
http://dl.dropbox.com/u/25164515/Norwegian%20Bokm%C3%A5l.doc
10. Danish,  http://dl.dropbox.com/u/25164515/Danish.doc

If you are interesting, please contact me at wuwei...@gmail.com

Weilong 2011/6/24
Taiwan, Taipei



--
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en


Re: [android-developers] How does Android PhoneNumberUtils determin the international call prefix for a specific country?

2011-04-19 Thread Bernard T. Higonnet

On 04/19/11 10:29, Freddman wrote:

I noticed that when i recive an incoming international call, the call
screen will show the entire number e.g beginning with '00' because
Swedens call prefix is '00'. When i later dismissed the call, when the
notification was shown in the status bar, the '00' had been replaced
with '+'.


00 is not Sweden's prefix, which actually is 46.

00 is the caller's local what follows is an international number code



How does Android determin the call prefix, and is it compatible with
every country (e.g Indonesia can have 001 or 008 as call prefix)?

Im writing an app where i determin the origin of the calling
international number, but iv discovered the WAST number of
possibilites a number can have.

Example:
00 852  
This could be a call from Hong Kong  (00 +852  ) when living
in Sweden, but also a call from Mexico when living in Indonesia ( 008
+52   ).


852 is the code for Hong Kong everywhere...

Bernard Higonnet

--
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] peculiar or undocumented behavior of ExifInterface?

2011-03-13 Thread Bernard T. Higonnet

I have been trying to use ExifInterface and am either doing something very 
wrong or my subject line is correct.

If I run the following code

ExifInterface hoohaa;
hoohaa = new ExifInterface(filename);
hoohaa.saveAttributes();

on a photograph taken by the standard android Camera application, a whole bunch of exif fields previously defined have 
disappeared (as evidenced by inspection with Exiftool (Phil Harvey) and other such programs). I find this very peculiar.


On a much less important issue, if a photograph with a JPEG comment (NOT an 
exif UserComment) is the object of

ExifInterface hoohaa;
hoohaa = new ExifInterface(filename);
String haahoo=hoohaa.getAttribute(UserComment);

the JPEG comment will be returned as if it were an exif UserComment. I find this friendly in a way, but unwarranted and 
undocumented...


Have I got this all wrong?

Bernard Higonnet

--
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Am unable to make breakpoint work in Eclipse

2011-03-09 Thread Bernard T. Higonnet

Hello,

This actually an Eclipse question, but I hope someone will be kind enough to 
answer it.

I have an android application which I'm debugging with Eclipse.

I have defined a number of breakpoints all of which work except one. When I create it (toggle under right button) it 
creates the breakpoint but with a slightly different icon. Instead of getting a little icon which appears to be a circle 
with a little tail towards the lower left (which is what all my working breakpoints have) I get a circle without a tail.


When I inspect the properties of each breakpoint (with tail or without) in the breakpoints view, they all appear to be 
the same. I have searched around in the documentation without success.


The statement in question is executable and reachable.

Help!

Bernard Higonnet

--
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en


Re: [android-developers] Re: Am unable to make breakpoint work in Eclipse

2011-03-09 Thread Bernard T. Higonnet

On 03/09/11 19:41, Gregg Reno wrote:

Also make sure you have android:debuggable=true in theapplication
element of your manifest.


Don't think that's it as other breakpoints work...

Thanks
Bernard Higonnet

--
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Difficulty with repo, git getting source

2011-02-07 Thread Bernard T. Higonnet

Trying to follow the instructions at
http://source.android.com/source/git-repo.html, I got through

$ curl http://android.git.kernel.org/repo  ~/bin/repo
$ chmod a+x ~/bin/repo
$ mkdir working-directory-name
$ cd working-directory-name

but when I try

$ repo init-u git://android.git.kernel.org/platform/manifest.git

I get

error: command 'init-u' requires repo to be installed first.
   Use repo init to install it here.

so I try repo init and get

Usage: repo init -u url [options]



I am running FreeBSD 8.1


TIA
Bernard Higonnet

--
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en


Re: [android-developers] Is it possible to create a two-line Toast?

2011-01-22 Thread Bernard T. Higonnet

Kostya Vasilyev wrote:

Have you tried \n?


I should have, because it works.

Thanks

Bernard Higonnet


Oh, and you can use your own layouts for toasts, with separate 
caption/message areas, if you like.


--
Kostya Vasilyev -- http://kmansoft.wordpress.com

22.01.2011 1:04 пользователь Bernard T. Higonnet bthigon...@gmail.com 
mailto:bthigon...@gmail.com написал:

  TreKing wrote:
  On Fri, Jan 21, 2011 at 4:06 PM, Bernard T. Higonnet
  bthigon...@gmail.com mailto:bthigon...@gmail.com 
mailto:bthigon...@gmail.com mailto:bthigon...@gmail.com wrote:

 
  That is, with a line break where I want it.
 
 
  Did you try it?
 
  I should indeed have indicated that I have tried all manner of x0D,
  x0D0A, \r, ...
 
  Bernard Higonnet
 
  --
  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 
mailto:android-developers@googlegroups.com

  To unsubscribe from this group, send email to
  android-developers+unsubscr...@googlegroups.com 
mailto:android-developers%2bunsubscr...@googlegroups.com

  For more options, visit this group at
  http://groups.google.com/group/android-developers?hl=en

--
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en


--
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Is it possible to create a two-line Toast?

2011-01-21 Thread Bernard T. Higonnet

That is, with a line break where I want it.

TIA
Bernard Higonnet

--
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en


Re: [android-developers] Is it possible to create a two-line Toast?

2011-01-21 Thread Bernard T. Higonnet

TreKing wrote:
On Fri, Jan 21, 2011 at 4:06 PM, Bernard T. Higonnet 
bthigon...@gmail.com mailto:bthigon...@gmail.com wrote:


That is, with a line break where I want it.


Did you try it?


I should indeed have indicated that I have tried all manner of x0D, 
x0D0A, \r, ...


Bernard Higonnet

--
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Is there a macro/script/utility to detect unlocalized strings in Eclipse (or elsewhere)?

2011-01-18 Thread Bernard T. Higonnet

TIA
Bernard Higonnet

--
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Particularity running modified standard app

2011-01-12 Thread Bernard T. Higonnet

Hello,

I have downloaded and slightly modified the Android 2.2 version of
Camera and have begun to make some changes to it.

Let's say I have renamed the app to X in Eclipse

If I run X from Eclipse (Helios), it behaves more or less the way I
expect. Running from Eclipse installs X on my device (Nexus One). But
when I run X from the app launcher, I get Camera!

I would be thankful to

1) know why
2) general info on modifying a standard app

TIA
Bernard Higonnet

--
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en


Re: [android-developers] Particularity running modified standard app

2011-01-12 Thread Bernard T. Higonnet

TreKing wrote:
On Wed, Jan 12, 2011 at 2:35 PM, Bernard T. Higonnet 
bthigon...@gmail.com mailto:bthigon...@gmail.com wrote:


But when I run X from the app launcher, I get Camera!


What does I get Camera! mean?


It means I get the standard factory camera application, and not my 
modified version which I have called X.


Bernard Higonnet

--
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en


Re: [android-developers] Re: Particularity running modified standard app

2011-01-12 Thread Bernard T. Higonnet

Kostya Vasilyev wrote:

12.01.2011 23:49, higonnet пишет:

I did not change the package name.


Do that then.


Well, it gets curioser and curioser.

Please fasten seatbelts for what follows.

Before describing what happened when I did change the package name, I 
have to say that without knowledge of how Android keeps different 
applications/tasks apart to protect the operating system and other 
tasks, I think the present scheme defective.


It seems to me that the standard expected behavior is that two distinct 
applications, even if one is a clone of the other, should operate 
completely independently (unless of course they are sharing peripheral 
hardware), and no matter what one does in one application (no matter how 
stupid) should cause anything to happen in the other. Just for the 
record, in all that follows, at no time are the two camera applications 
(factory and mine) running at the same time.


So. I uninstall the previous version of my app. I change all the 
com.android.camera to x.y.z everywhere with refactor and global 
search/replace. Eclipse is happy, says there are 14 warnings, which is 
what I got with the original camera app.


I now run my app from Eclipse and result is the same! (to recap: running 
from Eclipse I see my mods; running from my mods installed on phone by 
Eclipse I get standard camera app.).


So at this point, I impishly wonder what will happen if I power off (I 
get a reboot instead, but why argue...?)? I run my mods from app 
launcher. Hooray! I get my mods. I kill my mods with Taskiller. I now 
run standard camera app. I get my mods instead!!!


I am in a bit of a bad mood now, and ask what I have wondered silently 
for months just using the phone as a user, viz. is this thing ready for 
prime time?


Bernard Higonnet


--
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en


Re: [android-developers] I ask for power off but get reboot instead sometimes

2011-01-12 Thread Bernard T. Higonnet

TreKing wrote:
On Wed, Jan 12, 2011 at 4:01 PM, higonnet bthigon...@gmail.com 
mailto:bthigon...@gmail.com wrote:


Subject line basically says it all.


No it doesn't. Like what ask for power off means.


Press and hold power button, then press Power off in menu selection of 
Phone options pop-up menu.


Hope that's clear.

Bernard Higonnet

--
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en