[android-developers] Re: MediaPlayer setDataSource or prepare issue

2008-12-19 Thread Xavier Mathews

Yea you could do it that way but its not going to stop where you want
it unless you use a b repeate.

On 12/19/2008, Dave Sparks davidspa...@android.com wrote:

 As a workaround, you can use seekTo followed by start to start
 playback partly into a file, and then call getCurrentPosition
 repeatedly until you get to the point where you want to stop and then
 call stop or pause. It's not going to be very precise.

 On Dec 19, 12:27 pm, Dave Sparks davidspa...@android.com wrote:
 No there is no way to play a segment of a media file.

 On Dec 19, 9:52 am, Kenneth Loafman kenneth.loaf...@gmail.com wrote:

  Is there a way to set the length of the segment to play like
  setDataSource() has?  I'm not seeing it.

  ...Thanks,
  ...Ken

  On Fri, 19 Dec 2008 09:03:30 -0800 (PST), Dave Sparks

  davidspa...@android.com wrote:

  setDataSource() with offset is for playing an embedded media file. In
  other words, there must be a valid WAVE header at the specified
  offset. An example use case is a resource file that contains many WAVE
  files with a table of contents at the beginning.

  You can call seekTo() to start playback at time offset.

  On Dec 19, 8:28 am, Kenneth Loafman kenneth.loaf...@gmail.com wrote:
   This code segment:

   path = /data/noise.wav;
   file = new File(path);

   tx.setText(Prepping audio...);
   Log.i(TAG, Prepping audio);

   for (int i = 0; i  nPlay; ++i) {
   myPlayers[i] = new MediaPlayer();
  randFile[i] = new RandomAccessFile(file, r);
   
myPlayers[i].setAudioStreamType(AudioManager.STREAM_MUSIC);
  myPlayers[i].setDataSource(randFile[i].getFD(),
   i * segSize,
   segSize);
   Log.i(TAG, Prepping:  + i);
  myPlayers[i].prepare();
   }

   produces this log:

   12-19 10:05:38.369: INFO/SilentSpeech(3427): Prepping audio
   12-19 10:05:38.409: INFO/SilentSpeech(3427): Prepping: 0
   12-19 10:05:38.449: INFO/SilentSpeech(3427): Prepping: 1
   12-19 10:05:38.469: ERROR/SilentSpeech(3427): error: Prepare
failed.: status=0xFFFC
   12-19 10:05:38.469: ERROR/SilentSpeech(3427): java.io.IOException:
Prepare failed.: status=0xFFFC
   12-19 10:05:38.469: ERROR/SilentSpeech(3427): at
android.media.MediaPlayer.prepare(Native Method)
   12-19 10:05:38.469: ERROR/SilentSpeech(3427): at
com.android.silentspeech.SSActivity.playAudio(SSActivity.java:55)
   12-19 10:05:38.469: ERROR/SilentSpeech(3427): at
com.android.silentspeech.SSActivity.onCreate(SSActivity.java:38)
   12-19 10:05:38.469: ERROR/SilentSpeech(3427): at
android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1122)
   12-19 10:05:38.469: ERROR/SilentSpeech(3427): at
android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2103)
   12-19 10:05:38.469: ERROR/SilentSpeech(3427): at
android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2156)
   12-19 10:05:38.469: ERROR/SilentSpeech(3427): at
android.app.ActivityThread.access$1800(ActivityThread.java:112)
   12-19 10:05:38.469: ERROR/SilentSpeech(3427): at
android.app.ActivityThread$H.handleMessage(ActivityThread.java:1580)
   12-19 10:05:38.469: ERROR/SilentSpeech(3427): at
android.os.Handler.dispatchMessage(Handler.java:88)
   12-19 10:05:38.469: ERROR/SilentSpeech(3427): at
android.os.Looper.loop(Looper.java:123)
   12-19 10:05:38.469: ERROR/SilentSpeech(3427): at
android.app.ActivityThread.main(ActivityThread.java:3742)
   12-19 10:05:38.469: ERROR/SilentSpeech(3427): at
java.lang.reflect.Method.invokeNative(Native Method)
   12-19 10:05:38.469: ERROR/SilentSpeech(3427): at
java.lang.reflect.Method.invoke(Method.java:515)
   12-19 10:05:38.469: ERROR/SilentSpeech(3427): at
com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:739)
   12-19 10:05:38.469: ERROR/SilentSpeech(3427): at
com.android.internal.os.ZygoteInit.main(ZygoteInit.java:497)
   12-19 10:05:38.469: ERROR/SilentSpeech(3427): at
dalvik.system.NativeStart.main(Native Method)

   If I replace i * segSize with 0 to always start at the front, it
   works.  Strange.

   Does this mean that:
   1) setDataSource() does not work with offset? -or-
   2) do I need to put a file header at each offset?

   If the answer is 2, is there an option to take raw input?

   ...Thanks,
   ...Ken
 



-- 
Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Client Based Tech Support Specialist
Hazel Crest Illinois
xavieruni...@gmail.com¥xavierunited@hotmail.com¥truestar...@yahoo.com
Fear of a name, only increases fear of the thing itself.

--~--~-~--~~~---~--~~
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: Thought's On Android CupCake?

2008-12-19 Thread Xavier Mathews

I thought there was another sd slot?

On 12/19/2008, Mark K mark.ka...@gmail.com wrote:


   Looks good, will have camcorder support which is huge! It needed to
 support recording video, since all the other 'smart phone' platforms
 do also. Hopefully it will be an easy upgrade for the G1.

  Mark

 On Dec 19, 9:37 am, TmobileG1Fans ilovetoar...@gmail.com wrote:
 I think it's going to be awesome OS update but then again I wish apps
 still would be installable from SD card and not OS, i mean this os is
 going to take more space and most people are already using 80% of
 their internal card.

 Hope they will address that issue:

 Info about
 CupCake:http://www.livecrunch.com/2008/12/19/android-cupcake-release-updates-...
 



-- 
Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Client Based Tech Support Specialist
Hazel Crest Illinois
xavieruni...@gmail.com¥xavierunited@hotmail.com¥truestar...@yahoo.com
Fear of a name, only increases fear of the thing itself.

--~--~-~--~~~---~--~~
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] Re: Android Dev Phone Battery life

2008-12-19 Thread Xavier Mathews

WI-FI kills battery life..i am on my slim line psp now and i use
its wifi all day to email etc just like the g1 with intermediate use
the batts last like 2 days but with constent use they last 1 day if
that...just get another batt at least they charge fast..

On 12/19/2008, Mark K mark.ka...@gmail.com wrote:


   More features (WiFi , GPS )  and bigger screen require more power.
 You can get spare batteries for around $25. I have a couple that I
 keep with me, just in case I juice the battery and am not near a plug.
 My BB had much better battery life, but then again my G1 does things
 that a BB never dreamed of!

  Mark

 On Dec 19, 8:57 am, Vladimir Kelman vkel...@gmail.com wrote:
 Hi! For how long do your Android Phone Batteries stay after being
 fully charged? It's kind of bad to me: just 3-4 days. My simple
 Samsung phone was working a week without recharging.
 



-- 
Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Client Based Tech Support Specialist
Hazel Crest Illinois
xavieruni...@gmail.com¥xavierunited@hotmail.com¥truestar...@yahoo.com
Fear of a name, only increases fear of the thing itself.

--~--~-~--~~~---~--~~
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] Re: Regarding android registration

2008-12-19 Thread Xavier Mathews

Android is open but it is also set you can not communicate properly
unless useing intents etc. So therefor you can not register or
install your app on the platform that is how it was created and set
up.

On 12/19/2008, Mark K mark.ka...@gmail.com wrote:


   In general, this can't be done, the only way for apps to comunicate
 is via aidl, if another app, or built in app doesn't implement an aidl
 interface that you can reach, then the only way for apps to
 communicate is via intents. Some information can be sent with intents
 using 'extras', and application data can be shared via content
 providers, outside of this apps cannot communicate, this is the way
 Android is designed.

 Mark



 On Dec 16, 9:31 pm, Naina kna...@gmail.com wrote:
 Hello,

 I am new to this android. I want to write my own application to
 interface with the application which is already present in the android
 mobile. Could anybody please let me know how to register our
 application in Android platform?

 Thanks
 



-- 
Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Client Based Tech Support Specialist
Hazel Crest Illinois
xavieruni...@gmail.com¥xavierunited@hotmail.com¥truestar...@yahoo.com
Fear of a name, only increases fear of the thing itself.

--~--~-~--~~~---~--~~
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] Re: Mobile Developers Research Project asking for Android's opinion, by Carnegie mellon University

2008-12-19 Thread Xavier Mathews

Appel would kill android if it was open. They all ready have over
10,000 apps..

On 12/19/2008, Mark K mark.ka...@gmail.com wrote:


   As a developer we generally don't get to decide which platform gets
 used. This decision is generally made by management and non-tech
 people, and is usually based more on business factors than technology.
 Of course if they ask for my opinion, I'd reccomend Android over other
 platforms because it is more capable than all other platforms, except
 perhaps I-Phone, but I-Phone is not an open platform, and you could
 loose all your development efforts if Apple doesn't like your app, or
 it competes with them or a perferred vendor.

  Mark

 On Dec 18, 10:53 am, alberto ing@gmail.com wrote:
 Hi guys, we're doing a research project on the mobile ecosystem
  in the Mobility Research Center at Carnegie Mellon Silicon Valley.
 Our main goal in our current study is to understand the decision-
 making process followed by mobile applications developers/start-ups.
 We are particularly interested in how they decide upon platform(s),
 device(s), carrier(s), and market, as well as the relative importance
 of technology and business factors.

 Our research process includes a formal survey, a series of interviews,
 and a public wiki. In the fast moving mobile world Android is a news
 full of promise and your experience should be taken into account in
 pur research.
 So we would like you to complete our SURVEY
 athttp://www.questionpro.com/akira/TakeSurvey?id=1108623

 We think that it will take about 15-20 minutes to complete the survey
 and will close be Jan. the 10th
 We will make the results public on our wiki, as well as through public
 presentations.
 It would be GREAT if you could pass along this message and this link
 to them.
 We want to follow up with some people in more detail. If you would
 have about 30 minutes for an informal interview, please let us know.

 We've just started a wiki on this topic and encourage you to visit,
 contribute, and let others know about it. It's
 athttp://mobiledevelopers.pbwiki.com/

 Thanks for your help, and best wishes for the holidays and for 2009.
 



-- 
Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Client Based Tech Support Specialist
Hazel Crest Illinois
xavieruni...@gmail.com¥xavierunited@hotmail.com¥truestar...@yahoo.com
Fear of a name, only increases fear of the thing itself.

--~--~-~--~~~---~--~~
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] Re: Android Dev Phone 1™

2008-12-19 Thread Xavier Mathews

All yea thats right just do usb.

On 12/19/2008, Jean-Baptiste Queru j...@google.com wrote:

 On the wall side, the power supply should accept international
 voltages (100-240V), so you just need a plain socket adapter
 (shouldn't cost more than a few dollars). This was mentioned on the
 ordering page.

 On the device side, did you try to plug the adapter the right way?
 (yes, try the other way).

 BTW, the device also charges over USB.

 JBQ

 On Fri, Dec 19, 2008 at 1:00 PM, baker craigbba...@gmail.com wrote:

 I have received my phone however it came with the wrong power cable
 that doesn't connect to the phone or  an Australian power socket.

 I email both brightstar and google market place, at the beginning of
 the week, with no reply.

 None of the emails from brightstar included any contact details should
 there be any problems. After paying $150US in shipping I getting a
 little frustrated with the whole process.

 Brightstar please send me the correct power cable so that I can charge
 my phone!

 Craig Baker.




 On Dec 11, 4:31 pm, kpowerinfinity kpowerinfin...@gmail.com wrote:
 Same problem here. I placed an order, but the order doesn't appear on
 the Brightstar tracking page. It says that no orders have been placed.
 I have sent 3 emails to andr...@brightstarcorp.com but not received
 any useful replies. Anybody here knows how long it will take the
 phones to ship?

 I am relying on somebody to bring the phone from the US to India for
 me ... and in fact I paid extra shipping to ensure it reaches in time.
 In case, they delay shipping too much, I would rather cancel the order
 because then I can't get the phone brought to India for me, but the
 customer services hasn't even replied. Anybody here can help?

 Thanks, Krishna.
 kkme...@gmail.com

 melp wrote:
  I have the same issue. I placed an order twice on 8 Dec and got the
  confirming email. Both times my credit card was charged(!) but my
  orders disappeared off the tracking page.

  Customer service is non-existent. Repeated emails have not received
  any replies and I have tried calling their number during their stated
  operating hours but always get a recorded message that says they are
  closed or serving someone else.

  Any google employees care to comment?

  On Dec 9, 9:33 pm, Logan logan.green...@gmail.com wrote:
   Does anyone know more about this company, I placed an order and all I
   got was an e-mail confirming my order but no way to check shipping
   status, etc. Are these phones actually shipping now?

   On Dec 8, 2:49 pm, Pastymage pastym...@gmail.com wrote:

Does anyone have a more detailed FAQ than the text
onhttp://android.brightstarcorp.com/?My main concern is that GPS is
not listed anywhere in the hardware features - does it actually
support GPS, or not?

Aside from that, I'm unclear on how the 3G bands work - what would
the actual bandwidth of this device be on ATT, for example?

-Dave
 




 --
 Jean-Baptiste M. JBQ Queru
 Android Engineer, Google.

 



-- 
Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Client Based Tech Support Specialist
Hazel Crest Illinois
xavieruni...@gmail.com¥xavierunited@hotmail.com¥truestar...@yahoo.com
Fear of a name, only increases fear of the thing itself.

--~--~-~--~~~---~--~~
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] Re: fitness or workout program

2008-12-19 Thread Xavier Mathews

What does the app do let you watch work out on the phone or time you
while you run or tell you what and when to eat for the day??? Ihave
never heard of this app..

On 12/19/2008, Mark K mark.ka...@gmail.com wrote:

 I think there's a new one at the app store 'WorkItOut' don't know
 anything else about. Please be kind to the developers, we are after
 all just giving away software.

   Mark

 On Dec 18, 5:12 am, Peli peli0...@googlemail.com wrote:
 What would you expect from a fitness or workout program?

 I've outlined a possible version
 here:http://groups.google.com/group/openintents/browse_frm/thread/2a07c31b...

 That one would be loosely based on our Timesheet application
 (http://www.openintents.org/en/node/153) - just instead of tracking
 jobs one would track a workout program that one could load from a
 file. Would this be something you would be looking for, or did you
 have something completely else in mind?

 Peli

 On Dec 17, 6:41 pm, Dave davidjschwart...@gmail.com wrote:



  I've been waiting for someone to create a workout or fitness program.
  Anything in the works?- Hide quoted text -

 - Show quoted text -
 



-- 
Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Client Based Tech Support Specialist
Hazel Crest Illinois
xavieruni...@gmail.com¥xavierunited@hotmail.com¥truestar...@yahoo.com
Fear of a name, only increases fear of the thing itself.

--~--~-~--~~~---~--~~
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] Re: Android Dev Phone 1™

2008-12-19 Thread Xavier Mathews

WOW i can not believe that it came with the wrong power cableand i
don't think anybody from bright star works this group...sorry

On 12/19/2008, baker craigbba...@gmail.com wrote:

 I have received my phone however it came with the wrong power cable
 that doesn't connect to the phone or  an Australian power socket.

 I email both brightstar and google market place, at the beginning of
 the week, with no reply.

 None of the emails from brightstar included any contact details should
 there be any problems. After paying $150US in shipping I getting a
 little frustrated with the whole process.

 Brightstar please send me the correct power cable so that I can charge
 my phone!

 Craig Baker.




 On Dec 11, 4:31 pm, kpowerinfinity kpowerinfin...@gmail.com wrote:
 Same problem here. I placed an order, but the order doesn't appear on
 the Brightstar tracking page. It says that no orders have been placed.
 I have sent 3 emails to andr...@brightstarcorp.com but not received
 any useful replies. Anybody here knows how long it will take the
 phones to ship?

 I am relying on somebody to bring the phone from the US to India for
 me ... and in fact I paid extra shipping to ensure it reaches in time.
 In case, they delay shipping too much, I would rather cancel the order
 because then I can't get the phone brought to India for me, but the
 customer services hasn't even replied. Anybody here can help?

 Thanks, Krishna.
 kkme...@gmail.com

 melp wrote:
  I have the same issue. I placed an order twice on 8 Dec and got the
  confirming email. Both times my credit card was charged(!) but my
  orders disappeared off the tracking page.

  Customer service is non-existent. Repeated emails have not received
  any replies and I have tried calling their number during their stated
  operating hours but always get a recorded message that says they are
  closed or serving someone else.

  Any google employees care to comment?

  On Dec 9, 9:33 pm, Logan logan.green...@gmail.com wrote:
   Does anyone know more about this company, I placed an order and all I
   got was an e-mail confirming my order but no way to check shipping
   status, etc. Are these phones actually shipping now?

   On Dec 8, 2:49 pm, Pastymage pastym...@gmail.com wrote:

Does anyone have a more detailed FAQ than the text
onhttp://android.brightstarcorp.com/?My main concern is that GPS is
not listed anywhere in the hardware features - does it actually
support GPS, or not?

Aside from that, I'm unclear on how the 3G bands work - what would
the actual bandwidth of this device be on ATT, for example?

-Dave
 



-- 
Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Client Based Tech Support Specialist
Hazel Crest Illinois
xavieruni...@gmail.com¥xavierunited@hotmail.com¥truestar...@yahoo.com
Fear of a name, only increases fear of the thing itself.

--~--~-~--~~~---~--~~
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] Re: How To Eliminate Preferences Values Database?

2008-12-18 Thread Xavier Mathews

Yea Delete your prefrence data... be sure that the xml can not convert
to rss! Then delete the older file from the explorer.

On 12/18/2008, Mark Murphy mmur...@commonsware.com wrote:

 Massimo Barbera wrote:
 For testing purposes I have changed the value of one preference
 (android:key=my_value) from a class external to my
 PreferenceActivity, trough editor.putBoolean(my_value, value);

 now each time the PreferenceActivity is started, I have an exception.

 How can I reset my_value ?

 Manually, you can reset it by deleting the preferences data in your
 emulator -- it's an XML file found in:

 /data/data/your.package.name.here/shared_preferences

 You can use adb shell, DDMS's File Explorer, or the like to get rid of
 the file.

 --
 Mark Murphy (a Commons Guy)
 http://commonsware.com

 Android Training on the Ranch! -- Mar 16-20, 2009
 http://www.bignerdranch.com/schedule.shtml

 



-- 
Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Client Based Tech Support Specialist
Hazel Crest Illinois
xavieruni...@gmail.com¥xavierunited@hotmail.com¥truestar...@yahoo.com
Fear of a name, only increases fear of the thing itself.

--~--~-~--~~~---~--~~
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] Re: Simple Text Editor

2008-12-18 Thread Xavier Mathews

Hello this has already been posted! Please don't post more than once.
Now I am guessing that you are talking about the G1. Flash memory
is kinda like ram so i am not sure if you can get into the phone flash
mem and start tranfering files on there. It also depends on how much
space you have normally you would just plug the flash drive into the
cpu and tranfer the files. You need the right api to accoplish this on
flash. Its not a removeable mem stick then you would not need a usb.
Hardware not software!

On 12/17/2008, nealpobr...@gmail.com nealpobr...@gmail.com wrote:

 Hi, i really need a simple text editor and to my surprise there does
 not appear to be one.  so i was thinking of creating one.  here is
 what i'd like to do:

 1. be able to place and retrieve text files on gphone flash memory via
 usb
 2. onclick of the text file create a full screen editable text box
 populated with the file's text contents
 3. the text should be modifiable and support copy/cut and paste
 4. have one button called save which overwrites the original
 textfile with the modified text
 5. upon closing the window, the memory/text is discarded without save
 (or warning - this is a simple app).

 questions:

 1. Is copy/paste is supported by android.widget.EditText?  If not, how
 can i create a textbox similar to an html textbox?
 2. What xml file/code handles registering a file type to launch a text
 editor app onclick?
 3. Does android.widget.EditText expect unicode?

 thanks for any help!

 



-- 
Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Client Based Tech Support Specialist
Hazel Crest Illinois
xavieruni...@gmail.com¥xavierunited@hotmail.com¥truestar...@yahoo.com
Fear of a name, only increases fear of the thing itself.

--~--~-~--~~~---~--~~
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] Re: support for encryption

2008-12-18 Thread Xavier Mathews

Aes yes. MD5 don't think so.

On 12/18/2008, sthustfo sthus...@gmail.com wrote:

 Hi,

 Does the current android SDK provide support for

 1. AES-128 encryption
 2. MD5 hash computation

 Thanks in advance.
 



-- 
Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Client Based Tech Support Specialist
Hazel Crest Illinois
xavieruni...@gmail.com¥xavierunited@hotmail.com¥truestar...@yahoo.com
Fear of a name, only increases fear of the thing itself.

--~--~-~--~~~---~--~~
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] Re: More MediaPlayer questions

2008-12-18 Thread Xavier Mathews

Don't hijack the post create your own.

On 12/18/2008, Rajendrakumar C rajendran.b...@gmail.com wrote:

 HI,

 Can anyone of you know how to extract the comosers info from Mp3 file.
 Please let me know if you know that.
 



-- 
Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Client Based Tech Support Specialist
Hazel Crest Illinois
xavieruni...@gmail.com¥xavierunited@hotmail.com¥truestar...@yahoo.com
Fear of a name, only increases fear of the thing itself.

--~--~-~--~~~---~--~~
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-beginners] Re: [android-developers] Re: G1 owners: A system update is available - is it safe?

2008-12-17 Thread Xavier Mathews

This Still involves android so its still the right place. If you
update from your phone then its safe.

On 12/17/2008, Disconnect dc.disconn...@gmail.com wrote:
 What he's not mentioning (and this is importnat if you are a developer) is
 that the update will remove root access, so you lose most of the (potential)
 control over your device.

 On Wed, Dec 17, 2008 at 10:45 AM, Stoyan Damov
 stoyan.da...@gmail.comwrote:


 @ JBQ, I'm sorry for the wrong place to ask. I got this impression
 that android-discuss was the android internals list, I don't know
 how this occurred to me. Sorry again and *thanks* for your reply!
 @ Cyril - Thanks mate!

 On Wed, Dec 17, 2008 at 5:39 PM, Jean-Baptiste Queru j...@google.com
 wrote:
 
  This'd be a question for android-discuss, actually.
 
  The SIM-locking in the G1 is unrelated to Android itself, it's a much
  deeper property of the underlying firmware. You can apply the upgrade
  and your device will still be SIM-unlocked.
 
  JBQ
 
  On Wed, Dec 17, 2008 at 7:35 AM, Stoyan Damov stoyan.da...@gmail.com
 wrote:
 
  Sorry for the cross-post, but it's kind of urgent.
 
  I got this message A system update is available. While your phone is
  updating, you cannot make emergency calls. Your phone will restart
  during the update.
  I own an unlocked G1 (I'm in Bulgaria), so I'm concerned that I'll
  have to unlock it again after the update. If anyone has got the
  update, can you verify that it didn't require a re-activation?
 
  Thanks a bunch
  Stoyan
 
  
 
 
 
 
  --
  Jean-Baptiste M. JBQ Queru
  Android Engineer, Google.
 
  
 

 


 



-- 
Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Client Based Tech Support Specialist
Hazel Crest Illinois
xavieruni...@gmail.com¥xavierunited@hotmail.com¥truestar...@yahoo.com
Fear of a name, only increases fear of the thing itself.

--~--~-~--~~~---~--~~
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] Re: Adb server probelm

2008-12-17 Thread Xavier Mathews

Well that error is annoying! Did you reset your connection to both
server and reconect your monitor. And diable the remote host.

On 12/17/2008, Atish atish...@gmail.com wrote:

 Hi i am new to android.Sometimes while running the emulator i get this
 error.I don't know what to do.I restart eclipse 3/4 times.Sometimes it
 works sometimes it takes even 15/20 times.What is permanent solution
 for this???i even tried kill adb server by adb kill-server.But it was
 of no use.

 Connection Failure when starting to monitor device 'emulator-5554' :
 device (emulator-5554) request rejected:
 [2008-12-17 18:13:30 - DeviceMonitor]Failed to start monitoring
 emulator-5554
 [2008-12-17 18:13:31 - DeviceMonitor]Adb connection Error:An existing
 connection was forcibly closed by the remote host
 [2008-12-17 18:13:32 - DeviceMonitor]Connection attempts: 1
 [2008-12-17 18:13:34 - DeviceMonitor]Connection attempts: 2


 



-- 
Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Client Based Tech Support Specialist
Hazel Crest Illinois
xavieruni...@gmail.com¥xavierunited@hotmail.com¥truestar...@yahoo.com
Fear of a name, only increases fear of the thing itself.

--~--~-~--~~~---~--~~
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] Re: Get message from inbox

2008-12-17 Thread Xavier Mathews

SMS Text or SMS Email?

On 12/16/2008, Syahreza Octadian syahreza.octad...@gmail.com wrote:
 Dear all,

 any one can help me, what API that i can use to manipulating SMS 


 --

 Regards
 Syahreza Octadian

 



-- 
Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Client Based Tech Support Specialist
Hazel Crest Illinois
xavieruni...@gmail.com¥xavierunited@hotmail.com¥truestar...@yahoo.com
Fear of a name, only increases fear of the thing itself.

--~--~-~--~~~---~--~~
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] Re: junit

2008-12-17 Thread Xavier Mathews

Excusse Me? Whats the problem. Can you please provide more detail?

On 12/17/2008, chinna skbara...@gmail.com wrote:

 Can anybody tell me how to run the junit program

 



-- 
Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Client Based Tech Support Specialist
Hazel Crest Illinois
xavieruni...@gmail.com¥xavierunited@hotmail.com¥truestar...@yahoo.com
Fear of a name, only increases fear of the thing itself.

--~--~-~--~~~---~--~~
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] Re: Has anybody received an android dev phone in the US yet?

2008-12-17 Thread Xavier Mathews

Who is faster fed-x or ups?

On 12/17/2008, Bob C bcopel...@gmail.com wrote:

 Ordered mine on 12/8 (in the evening).  Order screen still says
 ordered.  Sent an email without response on 12/16, and tracking by
 reference didn't work -- until today, 12/17.  Now tracking works and
 shows that it will be delivered on 12/18.  I ordered Fedex 2-day.

 



-- 
Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Client Based Tech Support Specialist
Hazel Crest Illinois
xavieruni...@gmail.com¥xavierunited@hotmail.com¥truestar...@yahoo.com
Fear of a name, only increases fear of the thing itself.

--~--~-~--~~~---~--~~
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] Re: question

2008-12-16 Thread Xavier Mathews

Congrads.

On 12/16/2008, ipalik p.christo...@googlemail.com wrote:



 On 16 Dez., 01:19, Xavier Mathews xavieruni...@gmail.com wrote:
 Did it show you via email?

 On 12/14/2008, ipalik p.christo...@googlemail.com wrote:



  yesterday the ups page showed me, I should get the phone at the 15
  december.
  Now, it shows me not the date, when i will get it.

  Does somebody know, why it is so?

 --
 Xavier A. Mathews
 Student/Browser Specialist/Developer/Web-Master
 Client Based Tech Support Specialist
 Hazel Crest Illinois
 xavieruni...@gmail.com¥xavieruni...@hotmail.com¥truestar...@yahoo.com
 Fear of a name, only increases fear of the thing itself.

 no on the page. but now, i am a lucky owner of the dev phone 1
 



-- 
Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Client Based Tech Support Specialist
Hazel Crest Illinois
xavieruni...@gmail.com¥xavierunited@hotmail.com¥truestar...@yahoo.com
Fear of a name, only increases fear of the thing itself.

--~--~-~--~~~---~--~~
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] Re: ATT

2008-12-16 Thread Xavier Mathews

Att is 3G!

On 12/16/2008, Dave dlarsonmob...@gmail.com wrote:

 Anyone know of a way to get 3G thru att
 



-- 
Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Client Based Tech Support Specialist
Hazel Crest Illinois
xavieruni...@gmail.com¥xavierunited@hotmail.com¥truestar...@yahoo.com
Fear of a name, only increases fear of the thing itself.

--~--~-~--~~~---~--~~
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] Re: How to generate tones for keys

2008-12-16 Thread Xavier Mathews

No oslitor and it would have to be made into the phone no Android app
can do that sorry.

On 12/16/2008, Mihai mihai...@gmail.com wrote:

 Great, thanks, I'll check it out.

 On Dec 16, 9:12 am, Dave Sparks davidspa...@android.com wrote:
 The radio firmware generates the tones for the far end. The local
 tones are generated algorithmically on the app processor. See
 ToneGenerator.

 On Dec 15, 10:55 pm, Mihai mihai...@gmail.com wrote:

  Hi,

I would also be interested in something like this - so I would like
  to ask if the G1 has an oscillator and if Android has a way of working
  with that?

  Thanks,
  Mihai

  On Dec 16, 6:49 am, shweta kumari shweta.n...@gmail.com wrote:

   Hi,

   Does android support tones when the keys are pressed? Moreover when I
   press
   any key on the device I dont see any message in logcat.Is it possible
   to get
   these messages?

   Thanks,
   Shweta
 



-- 
Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Client Based Tech Support Specialist
Hazel Crest Illinois
xavieruni...@gmail.com¥xavierunited@hotmail.com¥truestar...@yahoo.com
Fear of a name, only increases fear of the thing itself.

--~--~-~--~~~---~--~~
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] Re: Receiver to get outgoing phone number

2008-12-15 Thread Xavier Mathews

Hey there is an app allready on the market that does this made by one
of the developers in this group he/she has done a post on it also and
used a Broadcast Reciver! But i am not sure how.

Good Luck.

On 12/15/2008, bparker cbpar...@gmail.com wrote:

 What is the best way to retrieve the number of a currently outgoing
 phone call?

 I tried using a BroadcastReceiver with an intent-filter on
 android.intent.action.CALL but it seems to be ignored... because the
 same code with a different intent works fine. Am I doing something
 wrong?

 Thanks

 



-- 
Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Client Based Tech Support Specialist
Hazel Crest Illinois
xavieruni...@gmail.com¥xavierunited@hotmail.com¥truestar...@yahoo.com
Fear of a name, only increases fear of the thing itself.

--~--~-~--~~~---~--~~
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] Re: ATT on dev phone, data connection not working

2008-12-15 Thread Xavier Mathews

3g 2g this is all getting annoying. G1 well soon be on the 3G network
soon like every other phone.

On 12/15/2008, Josh Roesslein jroessl...@gmail.com wrote:
 I know 3g will not work with Att since the G1 does not support the band
 frequency ATT uses.
 But you should still be able to get data via EDGE (2g).

 On Mon, Dec 15, 2008 at 1:04 PM, bparker cbpar...@gmail.com wrote:


 Thanks for the link Al, but I have already tried those settings about
 a dozen times. ATT will not help because they do not support the
 G1. After I told them that it was unlocked, they also told me that
 unlocked devices do not work on their network, and that they tell
 people this all the time.

 On Dec 15, 3:50 am, Al Sutton a...@funkyandroid.com wrote:
  Seehttp://
 groups.google.com/group/android-developers/msg/e4a9172898b7d7cc
 
  Regards,
 
  Al.
 
  bparker wrote:
   I have exhausted all combinations of APN settings possible to get an
   ATT data connection to work, but nothing seems to help at all. I know
   what the settings are supposed to be (wap.cingular etc etc), it is
   simply not working. I even tried running logcat on the radio and it
   doesn't seem that it ever tries to dial out for a data connection.
 
   Anyone have some ideas?
 
   Thanks
 
  --
  ==
  Funky Android Limited is registered in England  Wales with the
  company number  6741909. The registered head office is Kemp House,
  152-160 City Road, London,  EC1V 2NX, UK.
 
  The views expressed in this email are those of the author and not
  necessarily those of Funky Android Limited, it's associates, or it's
  subsidiaries.
 


 



-- 
Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Client Based Tech Support Specialist
Hazel Crest Illinois
xavieruni...@gmail.com¥xavierunited@hotmail.com¥truestar...@yahoo.com
Fear of a name, only increases fear of the thing itself.

--~--~-~--~~~---~--~~
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] Re: question

2008-12-15 Thread Xavier Mathews

Did it show you via email?

On 12/14/2008, ipalik p.christo...@googlemail.com wrote:

 yesterday the ups page showed me, I should get the phone at the 15
 december.
 Now, it shows me not the date, when i will get it.

 Does somebody know, why it is so?

 



-- 
Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Client Based Tech Support Specialist
Hazel Crest Illinois
xavieruni...@gmail.com¥xavierunited@hotmail.com¥truestar...@yahoo.com
Fear of a name, only increases fear of the thing itself.

--~--~-~--~~~---~--~~
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] Re: The G1 (RC30) K-9 eMail client

2008-12-15 Thread Xavier Mathews

Did you try IMAP or POP2?

On 12/15/2008, David Orriss Jr codethou...@gmail.com wrote:

 On Sat, Dec 13, 2008 at 7:53 PM, SLSq slsqui...@gmail.com wrote:

 And, the update (v 0.21) ... continues to have the same problems !!!

 Such AS...???

 The guys who work on K-9 do want to resolve issues.. you just have to
 tell them which issue you are referring to.

 I know, for example, one issue that I have with K9 is that POP access
 to myemail.t-mobile.com still doesn't work (presumably the :1 at the
 end of the login ID is what's causing the problem).

 --
 David Orriss Jr.

 My blog: http://www.codethought.com/blog

 



-- 
Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Client Based Tech Support Specialist
Hazel Crest Illinois
xavieruni...@gmail.com¥xavierunited@hotmail.com¥truestar...@yahoo.com
Fear of a name, only increases fear of the thing itself.

--~--~-~--~~~---~--~~
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] Re: abusive, explicit language comments in the Android Software Market

2008-12-15 Thread Xavier Mathews

Google has the comments enable just like Cnet etc because of the fact
when other users want an app but don't want to download without
hearing a review on it first. This is only a problem because of the
retarted comment the users are not really leaving reviews like Cnet.

On 12/15/2008, Sundog michael_...@tmail.com wrote:

 I quite agree. I don't think the comments, good or bad, serve any
 useful purpose whatsoever. In the time someone takes to read comments,
 they can simply download the app and try it out! I think the comments
 should be abolished entirely. Open source should not be equivalent to
 complete anarchy.

 And yes, though I have one of the most popular games on the Market, I
 absolutely will not release anything else until it is worth the
 trouble. Frustration is watching your app hit 50,000 downloads, taking
 the abuse, and not knowing when or even if you're ever going to see a
 dime from it.Excuse the frustration, but for a freebie, who needs the
 aggravation?


 On Dec 15, 1:55 pm, Mark K mark.ka...@gmail.com wrote:
   Yes it seems some of the users of the store are quite acerbic and
 rude. They download applications for free that some one put time and
 effort into, and then make slanderous and rude comments if the
 application is not to their liking. I published an application, but
 then withdrew it after some very scathing comments. It was just a
 simple Black Jack game (no ads or commercial interest), yet some of
 the feedback was rather venomous. I don't itend to publish again until
 I can sell applications at the store. No point in giving away free
 stuff, if I'm just going to be slandered. It might be mistake to have
 a free app stores, too many users now expect to be able to get
 something for nothing. I just wrote the application for myself anyway,
 and I use it all the time. You'd think people would just be glad that
 they can get free software, and not complain. If I don't like an app,
 I just un-install it, and don't complain.

Mark

 On Dec 12, 11:46 am, Xavier Mathews xavieruni...@gmail.com wrote:



  Well Right about now Google has there hands tied. But with Android
  being the biggest project i am sure in the near future something will
  be done.

  On 12/12/2008, cvandro...@gmail.com cvandro...@gmail.com wrote:

   hi,
   as an Android developer I'm really surprised to see so many abusive
   comments on practically all Android application available in Software
   Market. Some of them are really just junk, porn ads and explicit
   language. Is Google going to do something about it? I think this
   really endangers the whole point of Software Market and hurts
   reputation of Android and Android developers!

   regards,
   Yes another Android developer

  --
  Xavier A. Mathews
  Student/Browser Specialist/Developer/Web-Master
  Google Group Client Based Tech Support Specialist
  Hazel Crest Illinois
  xavieruni...@gmail.com¥xavieruni...@hotmail.com¥truestar...@yahoo.com
  Fear of a name, only increases fear of the thing itself.- Hide quoted
  text -

 - Show quoted text -
 



-- 
Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Client Based Tech Support Specialist
Hazel Crest Illinois
xavieruni...@gmail.com¥xavierunited@hotmail.com¥truestar...@yahoo.com
Fear of a name, only increases fear of the thing itself.

--~--~-~--~~~---~--~~
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] Re: Developing on device(? is it possible)

2008-12-15 Thread Xavier Mathews

WOW i had no idea that Acer could run all the big OS.

On 12/15/2008, loty lev.pert...@gmail.com wrote:

 Hey Chris,

 How's performance on your Acer? I'm looking for a New Year gift for
 myself :)
 What do you have XP or Linux?

 On Dec 15, 1:39 pm, chris pick chris...@gmail.com wrote:
 I was wondering the same thing, and came to the same conclusion. As far as
 the netbook goes, I went and purchased one so I can carry it around and do
 some coding when I have some free time. They are quite inexpensive, and
 the
 Acer Aspire One can be used w/ Linux, WinXP or even OSX (OSX86). You can
 find some deals on the netbooks w/ discounts coupons, and I don't want to
 hijack the thread, but I picked one up for less than $300 on ebay w/ 1gb
 memory and 120gb drive.
 Cheers!

 On Mon, Dec 15, 2008 at 10:40 AM, loty lev.pert...@gmail.com wrote:

  There is no fundamental reason why it can't be done. The real question
  is not How but Why.
  Why would you ever want to develop/debug on an underpowered machine
  with minimal memory, tiny screen and keyboard made for thumbing?
  If you are looking for something small that you can carry with you
  look at small notebooks or even netbooks.

  On Dec 12, 2:38 am, mang3lo mang...@gmail.com wrote:
   Hey all! I've been lurking and searching (maybe I wasn't using the
   right key words =P), but hadn't found anyone addressing the issue or
   asking this question.  Is it possible to develop on the device
   itself?  (as in write, compile, and run applications.  Not merely
   putting code in a text file and waiting to get home to try it on your
   computer)

   I would assume the paltry storage space on the G1 limits the viable
   options, (as well as its trouble playing nice with the SD card) but
   nothing ends up correct when I assume. If it is not available now (due
   to what I mentioned earlier) would it be possible in the future when
   the applicable OS upgrades roll around?

   Due to my job and class schedule, I find myself with the proportional
   majority of my  time spent with my G1 phone in my hands, rather than
   in front of a keyboard, and I would become an android code junkie in a
   heartbeat if I can put all that mobile idle time to productive means.

   Thanks in advance!
   -Matt


 



-- 
Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Client Based Tech Support Specialist
Hazel Crest Illinois
xavieruni...@gmail.com¥xavierunited@hotmail.com¥truestar...@yahoo.com
Fear of a name, only increases fear of the thing itself.

--~--~-~--~~~---~--~~
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] Re: Has anybody received an android dev phone in the US yet?

2008-12-15 Thread Xavier Mathews

I'M Going to stick with iphone and g1

On 12/15/2008, Dashesy azarna...@gmail.com wrote:

 I got mine finally :)) it took 7 days but it came finally. New toy for
 the Christmas.

 On Dec 15, 3:21 pm, Yev yevm...@gmail.com wrote:
 Ordered mine on 12/9still nothing.  Brightstar rep says they have
 no record of it, and fedex tracking with ref doesn't show it either.

 Did anyone who ordered it on 12/9 received it yet?

 On Dec 14, 4:42 pm, mtz mtz2...@googlemail.com wrote:

  I was unsure too about the shipping of my phone and called at the
  brightstar headquarter, 305 421-6000. Got forwarded twice and talked
  to a lady from the Android-Team (or so) who advised me to send an
  eMail to andr...@brightstarcorp.com with my order number. after
  20hours they replied:

  I found your order and it will be processed shortly - to be shipped
  out from 1 to 3 days - you should be receiving an email once it does
  ship - if you would like - please let us know if you do not receive a
  tracking number within the next couple of days.

  I never received an shipping email but discovered a great hint in
  another forum. Entering the brighstar Order-number and destination
  postal code in the track by reference field at fedex.com shows the
  shipping status - no matter if brightstar has sent a shipping-
  confirmation.

  My phone is currently somewhere in Chicago and supposed to arrive on
  Dec 16. I'm quite disappointed by brighstar too and asked them if
  they're willing to refound the two days fedex fee.

  On 14 Dez., 22:19, Dashesy azarna...@gmail.com wrote:

   Can you kindly tell everybody the phone number you called, I can not
   find it anywhere in the only email Ireceivedconfirming the payment.
   Frankly, I can not wait more to get my hand on my Christmas toy!

   On Dec 12, 12:58 pm, Tammen Bruccoleri tammen.bruccol...@gmail.com
   wrote:

I called and left a message with the Android Dev 1 Phone sales team,
inquiring about the status of my Dev phone which was purchased on
12.09.
Thinking that I would never even get a reply. I went to the water
cooler and
came back, found a message on my voicemail. Donna or Dana pleasantly
left my
FedEx tracking number and phone number to call back if I had any
questions
or concerns. Not getting a tracking automatically was a bummer and I
was
kinda concerned about my order. However, I have not seen this type
of superb
customer service in such a long time. Donna or Dana if your reading
these
threads your doing a great job !!! Can't wait to open this early
Christmas
present... Should be at my door tomorrow according to the FedEx
tracking
number.

On Thu, Dec 11, 2008 at 4:40 PM, Clint Fisher
clintonefis...@gmail.comwrote:

 Ireceivedmine this morning as well.  Tried getting it to work with
 ATT unsuccessfully using various APN settings found on these
 boards.

 THEN, while the phone was charging (red charge light), I turned
 away,
 and the charge light and screen were off.After that, I have
 not
 been able to power the unit up at all.  I've tried resets,
 removing
 battery, etc.. all to no avail.  It's just DEAD.  WAH!

 So I'm RMA'ing the unit today.

 Much bummage.

 Maybe my Treo got jealous and killed it through the SIM card.  :-)

 -Clint

 On Dec 11, 9:57 am, Jackson Miller jackson.h.mil...@gmail.com
 wrote:
  I chose overnight shipping.

  FYI: here are my full APN settings for using my Android
  developer
  device on ATT.  It took me a while to search and try the
  various
  recommendations.  I am on the iPhone data package if that makes
  a
  difference:

  Name: ATT
  APN: wap.cingular
  Proxy: Not set
  Port: Not set
  Username: wap.cingulargprs.com
  Password: CINGULAR1
  Server: Not set
  MMSC: mmsc.cingular.com
  MMS proxy: Not set
  MMS port: 80
  MCC: 310
  MNC: 410
  APN type: Not set

  On Dec 11, 10:40 am, Mark K mark.ka...@gmail.com wrote:

  I'm using my G1 on ATT , I had to add wap.cingular as an
   apn, set
   'wap.cingular' as the name and apn, left all other settings
   blank.

  Mark

   On Dec 10, 12:05 pm, Jackson Miller
   jackson.h.mil...@gmail.com
   wrote:

I justreceivedmy phone.  I ordered it on Saturday.  I am in
Nashville, TN.

Unfortunately I am having a hard time getting the APN
settings for
ATT right.

-Jackson

On Dec 10, 12:45 pm, szeldon szeldon@gmail.com wrote:

 I have ordered G1 Dev 1 on Sunday and I didn't get it as
 yet. I
 assume
 that nobody got it:

http://groups.google.com/group/android-beginners/browse_thread/thread...

 On Dec 10, 1:02 pm, Rajesh raj...@aaraai.com wrote:

  Where in US are you? How long did it take 

[android-developers] Re: Menu Icons

2008-12-15 Thread Xavier Mathews

Yes i believe you can or just sub pair and attach icon but you would
have to rewrite everything for that. I thought it gave you the add
more icons option?

On 12/15/2008, Jamie L androidapp...@gmail.com wrote:
 If there are more than 6 menu items, the more menu item will appear, and
 the rest of the items go to a popup menu.  Can we set icons to those menu
 items?  I am not able get the icons to show for those menu items.

 Please advice.

 Thanks in advance,
 J

 



-- 
Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Client Based Tech Support Specialist
Hazel Crest Illinois
xavieruni...@gmail.com¥xavierunited@hotmail.com¥truestar...@yahoo.com
Fear of a name, only increases fear of the thing itself.

--~--~-~--~~~---~--~~
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] Re: Has anybody received an android dev phone in the US yet?

2008-12-15 Thread Xavier Mathews

It depends on what service you use fed-x or ups. Normaly 3 to 7 days.

On 12/15/2008, Aberakkrombie aberakkrom...@gmail.com wrote:

 howdy android user
 i placed my order today
 any idea how long shipping might take?
 that is shipping to canada

 On Dec 10, 3:08 pm, hoesing hoes...@gmail.com wrote:
 Seattle, ordered whenever the engadget article went up, fedex
 overnight.

 Received mine at 10am this morning.

 



-- 
Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Client Based Tech Support Specialist
Hazel Crest Illinois
xavieruni...@gmail.com¥xavierunited@hotmail.com¥truestar...@yahoo.com
Fear of a name, only increases fear of the thing itself.

--~--~-~--~~~---~--~~
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] Re: How to add new font to android browse ?

2008-12-15 Thread Xavier Mathews

Only selected fonts can be used others are not yet supported therefor
are not visable.

On 12/15/2008, Mike Reed r...@google.com wrote:

 Applications can add new fonts, but they are only visible within that
 application. The ability to add system-wide fonts is not supported at
 this time.

 On Dec 14, 2008, at 8:43 AM, Milad wrote:


 I can not see persian font's in my G1 browser,
 Is any way to add new set of font's to G1 ?




 



-- 
Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Client Based Tech Support Specialist
Hazel Crest Illinois
xavieruni...@gmail.com¥xavierunited@hotmail.com¥truestar...@yahoo.com
Fear of a name, only increases fear of the thing itself.

--~--~-~--~~~---~--~~
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] Re: WPA-Enterprise To Be Offered?

2008-12-15 Thread Xavier Mathews

WPA as in encryption key?

On 12/15/2008, Dashesy azarna...@gmail.com wrote:

 I had the same question.
 Also, is there any way to write an application for Android market to
 support WPA enterprise?

 Too bad, iPhone supports this but I do not like Apple products and
 closed source

 On Nov 10, 8:37 pm, VizionQuest vizionqu...@gmail.com wrote:
 Is it currently known whether or notWPA-Enterprisewill be added to
 the G1 anytime soon?
 



-- 
Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Client Based Tech Support Specialist
Hazel Crest Illinois
xavieruni...@gmail.com¥xavierunited@hotmail.com¥truestar...@yahoo.com
Fear of a name, only increases fear of the thing itself.

--~--~-~--~~~---~--~~
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] Re: Please help with android source making

2008-12-15 Thread Xavier Mathews

This is SDK... opensoure emlator are not supported.

On 12/15/2008, Andrew Stadler stad...@gmail.com wrote:

 Dr. Lu:

 As you may have seen from other posts, this mailing list is for
 developers using the SDK to create applications for Android devices.

 Questions about building from open source should be addressed to one
 of the open source or platform lists described at
 http://source.android.com/discuss.



 On Sat, Dec 13, 2008 at 8:26 PM, Dr. Tingrong Lu lutingr...@hotmail.com
 wrote:
 Hi,

 I downloaded android source and make according to the doc (I've set the
 ANDROID_JAVA_HOME). The webkit browser on the emulator made from source
 cannot access the Internet, meanwhile the webkit browser on the emulator
 come with android SDK 1.0r1 can. Can anyone help figure out what's wrong
 with the emulator made from source?

 Thanks

 


 



-- 
Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Client Based Tech Support Specialist
Hazel Crest Illinois
xavieruni...@gmail.com¥xavierunited@hotmail.com¥truestar...@yahoo.com
Fear of a name, only increases fear of the thing itself.

--~--~-~--~~~---~--~~
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] Re: WPA-Enterprise To Be Offered?

2008-12-15 Thread Xavier Mathews

I think so but you would be able to use wep wpa etc not just one form
of encryption key..

On 12/15/2008, Dashesy azarna...@gmail.com wrote:

 Currently Android only supports WPA Personal and WPA2 Personal.
 WPA enterprise is a different protocol for WiFi that asks username
 and password for wireless connection.
 I was wondering if it is possible to write an application for Android
 market that somehow (?) implements/emulates wireless for WPA
 enterprise.

 On Dec 15, 8:12 pm, Xavier Mathews xavieruni...@gmail.com wrote:
 WPA as in encryption key?

 On 12/15/2008, Dashesy azarna...@gmail.com wrote:



  I had the same question.
  Also, is there any way to write an application for Android market to
  support WPA enterprise?

  Too bad, iPhone supports this but I do not like Apple products and
  closed source

  On Nov 10, 8:37 pm, VizionQuest vizionqu...@gmail.com wrote:
  Is it currently known whether or notWPA-Enterprisewill be added to
  the G1 anytime soon?

 --
 Xavier A. Mathews
 Student/Browser Specialist/Developer/Web-Master
 Client Based Tech Support Specialist
 Hazel Crest Illinois
 xavieruni...@gmail.com¥xavieruni...@hotmail.com¥truestar...@yahoo.com
 Fear of a name, only increases fear of the thing itself.
 



-- 
Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Client Based Tech Support Specialist
Hazel Crest Illinois
xavieruni...@gmail.com¥xavierunited@hotmail.com¥truestar...@yahoo.com
Fear of a name, only increases fear of the thing itself.

--~--~-~--~~~---~--~~
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] Re: Picasa Implementation

2008-12-15 Thread Xavier Mathews

They released an app for picasa?

On 12/15/2008, Chris B. chrismbell...@gmail.com wrote:

 Wow I ask and one day later they release an app.  I should try this
 more often.

 On Dec 14, 6:00 pm, Chris chrismbell...@gmail.com wrote:
 I think in future updates there should be an option to automatically
 sync all photos with Picasa online.
 



-- 
Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Client Based Tech Support Specialist
Hazel Crest Illinois
xavieruni...@gmail.com¥xavierunited@hotmail.com¥truestar...@yahoo.com
Fear of a name, only increases fear of the thing itself.

--~--~-~--~~~---~--~~
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] Re: Picasa Implementation

2008-12-15 Thread Xavier Mathews

Yea but that m.google mobile realease online has always been out i use
it on my psp.

On 12/15/2008, Wesley sit06...@gmail.com wrote:
 m.google.com

 got android one...


 wesley.

 On Tue, Dec 16, 2008 at 12:53 PM, Xavier Mathews
 xavieruni...@gmail.comwrote:


 They released an app for picasa?

 On 12/15/2008, Chris B. chrismbell...@gmail.com wrote:
 
  Wow I ask and one day later they release an app.  I should try this
  more often.
 
  On Dec 14, 6:00 pm, Chris chrismbell...@gmail.com wrote:
  I think in future updates there should be an option to automatically
  sync all photos with Picasa online.
  
 


 --
 Xavier A. Mathews
 Student/Browser Specialist/Developer/Web-Master
 Client Based Tech Support Specialist
 Hazel Crest Illinois
 xavieruni...@gmail.com¥xavierunited@hotmail.com¥truestar...@yahoo.com
 Fear of a name, only increases fear of the thing itself.

 


 



-- 
Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Client Based Tech Support Specialist
Hazel Crest Illinois
xavieruni...@gmail.com¥xavierunited@hotmail.com¥truestar...@yahoo.com
Fear of a name, only increases fear of the thing itself.

--~--~-~--~~~---~--~~
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] Re: Has anybody received an android dev phone in the US yet?

2008-12-14 Thread Xavier Mathews

What does this phone even look like?

On 12/14/2008, Tammen Bruccoleri tammen.bruccol...@gmail.com wrote:
 The telephone number she left was 877-727-9789

 On Sun, Dec 14, 2008 at 4:19 PM, Dashesy azarna...@gmail.com wrote:


 Can you kindly tell everybody the phone number you called, I can not
 find it anywhere in the only email I received confirming the payment.
 Frankly, I can not wait more to get my hand on my Christmas toy!

 On Dec 12, 12:58 pm, Tammen Bruccoleri tammen.bruccol...@gmail.com
 wrote:
  I called and left a message with the Android Dev 1 Phone sales team,
  inquiring about the status of my Dev phone which was purchased on 12.09.
  Thinking that I would never even get a reply. I went to the water cooler
 and
  came back, found a message on my voicemail. Donna or Dana pleasantly
  left
 my
  FedEx tracking number and phone number to call back if I had any
 questions
  or concerns. Not getting a tracking automatically was a bummer and I was
  kinda concerned about my order. However, I have not seen this type of
 superb
  customer service in such a long time. Donna or Dana if your reading
  these
  threads your doing a great job !!! Can't wait to open this early
 Christmas
  present... Should be at my door tomorrow according to the FedEx tracking
  number.
 
  On Thu, Dec 11, 2008 at 4:40 PM, Clint Fisher clintonefis...@gmail.com
 wrote:
 
 
 
   I received mine this morning as well.  Tried getting it to work with
   ATT unsuccessfully using various APN settings found on these boards.
 
   THEN, while the phone was charging (red charge light), I turned away,
   and the charge light and screen were off.After that, I have not
   been able to power the unit up at all.  I've tried resets, removing
   battery, etc.. all to no avail.  It's just DEAD.  WAH!
 
   So I'm RMA'ing the unit today.
 
   Much bummage.
 
   Maybe my Treo got jealous and killed it through the SIM card.  :-)
 
   -Clint
 
   On Dec 11, 9:57 am, Jackson Miller jackson.h.mil...@gmail.com wrote:
I chose overnight shipping.
 
FYI: here are my full APN settings for using my Android developer
device on ATT.  It took me a while to search and try the various
recommendations.  I am on the iPhone data package if that makes a
difference:
 
Name: ATT
APN: wap.cingular
Proxy: Not set
Port: Not set
Username: wap.cingulargprs.com
Password: CINGULAR1
Server: Not set
MMSC: mmsc.cingular.com
MMS proxy: Not set
MMS port: 80
MCC: 310
MNC: 410
APN type: Not set
 
On Dec 11, 10:40 am, Mark K mark.ka...@gmail.com wrote:
 
I'm using my G1 on ATT , I had to add wap.cingular as an apn,
 set
 'wap.cingular' as the name and apn, left all other settings blank.
 
Mark
 
 On Dec 10, 12:05 pm, Jackson Miller jackson.h.mil...@gmail.com
 wrote:
 
  I just received my phone.  I ordered it on Saturday.  I am in
  Nashville, TN.
 
  Unfortunately I am having a hard time getting the APN settings
 for
  ATT right.
 
  -Jackson
 
  On Dec 10, 12:45 pm, szeldon szeldon@gmail.com wrote:
 
   I have ordered G1 Dev 1 on Sunday and I didn't get it as yet.
   I
   assume
   that nobody got it:
 
  http://groups.google.com/group/android-beginners/browse_thread/thread.
 ..
 
   On Dec 10, 1:02 pm, Rajesh raj...@aaraai.com wrote:
 
Where in US are you? How long did it take to reach and what
 was
   the
mode of shipping you used?
I plan to order one if it is sure to reach in two weeks.
 
And is it illegal to personally carry a single phone from US
 to
   UK?
(Well without the carton box for myself).- Hide quoted text
-
 
  - Show quoted text -
 


 



-- 
Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Google Group Client Based Tech Support Specialist
Hazel Crest Illinois
xavieruni...@gmail.com¥xavierunited@hotmail.com¥truestar...@yahoo.com
Fear of a name, only increases fear of the thing itself.

--~--~-~--~~~---~--~~
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] Re: how to install the 'Radar' package to the android platform?

2008-12-14 Thread Xavier Mathews

Just make sure its from android market and not from a
developer.there should be information on how to download and
install the radar.

On 12/14/2008, ben rosenberg ben.rosenb...@gmail.com wrote:

 Radar can be downloaded from the Android Market.

 On Dec 13, 6:39 pm, ying...@gmail.com ying...@gmail.com wrote:
 Hi,

 How to install the 'Radar' package to the android platform?
 When I run an application it said 'Please install Radar package'

 Thank you.
 



-- 
Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Google Group Client Based Tech Support Specialist
Hazel Crest Illinois
xavieruni...@gmail.com¥xavierunited@hotmail.com¥truestar...@yahoo.com
Fear of a name, only increases fear of the thing itself.

--~--~-~--~~~---~--~~
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] Re: Including classes from system namespaces causes build fail

2008-12-14 Thread Xavier Mathews

With the new SDK you have to mod your app base on the api for the cup
or device for the app. Or the Core lib just will keep on aborting. So
i think it want you to install and run the new java. I think.

On 12/14/2008, fry bender...@gmail.com wrote:

 Hello,

 In my app I have to put the custom class to javax package. This did
 work on the old SDK's, but now with released 1.0 I receive the
 following error message during compile time and the app refuses to
 install:




 [2008-12-15 03:12:31 - HelloWorld] Failed to upload HelloWorld.apk on
 'emulator-5554': Local file doesn't exist.
 [2008-12-15 03:12:38 - HelloWorld]
 trouble processing javax/Hello.class:
 [2008-12-15 03:12:38 - HelloWorld]
 Attempt to include a core VM class in something other than a core
 library.
 It is likely that you have attempted to include the core library from
 a desktop
 virtual machine into an application, which will most assuredly not
 work. If
 you really intend to build a core library -- which is only appropriate
 as
 part of creating a full virtual machine binary, as opposed to
 compiling an
 application -- then use the --core-library option to suppress this
 error
 message. If you go ahead and use --core-library but are in fact
 building
 an application, then please be aware that your build will still fail
 at some
 point; you will simply be denied the pleasure of reading this helpful
 error
 message.
 [2008-12-15 03:12:38 - HelloWorld] 1 error; aborting
 [2008-12-15 03:12:38 - HelloWorld] Conversion to Dalvik format failed
 with error 1



 To reproduce, just create javax.Hello.java class in any android
 project and you will receive the same message. After deleting it the
 app would install/run again.

 I want to avoid this and to install application with javax.Hello class
 anyway - the message states that I can use --core-library option for
 that, but I do not know where to put it.

 Can someone please clarify the situation with this error mechanism,
 how it works and what are ways to deal with it?

 thank's

 



-- 
Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Google Group Client Based Tech Support Specialist
Hazel Crest Illinois
xavieruni...@gmail.com¥xavierunited@hotmail.com¥truestar...@yahoo.com
Fear of a name, only increases fear of the thing itself.

--~--~-~--~~~---~--~~
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] Re: sim needed for accessing market?

2008-12-14 Thread Xavier Mathews

Do you have the Dev phone. I belive that you can download from the
market to the phone via usb through dsl. I have never tried.

On 12/14/2008, Craig csab...@gmail.com wrote:

 Does anyone know what is required to use the dev phone? Specifically,
 do I need a phone contract, or can I get online through my DSL
 connection at home? If I can get online through my home connection,
 would I have access to the Android Market?

 I'm asking because I would like a device to develop on and test, but
 I'm not interested in another phone contract, and I don't have ATT or
 TMobile.


 



-- 
Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Google Group Client Based Tech Support Specialist
Hazel Crest Illinois
xavieruni...@gmail.com¥xavierunited@hotmail.com¥truestar...@yahoo.com
Fear of a name, only increases fear of the thing itself.

--~--~-~--~~~---~--~~
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] Re: AndroidManifest.xml file missing!

2008-12-14 Thread Xavier Mathews

If you dont use xml why cant you sub and use rss.

On 12/14/2008, Ralf ralfo...@gmail.com wrote:

 On Tue, Dec 9, 2008 at 6:43 PM, billt@gmail.com billt@gmail.com
 wrote:

 Hi Ralf,

 If I create it as Android Project and Select Create project from
 existing source, it won't proceed further because the
 AndroidManifest.xml doesn't exist in the top path of the source (The
 Finish button keeps disabled). Where can I copy it from?

 It's not clear what you're trying to achieve.
 The Android Project Wizard  create from source is meant to import
 an existing Android source code into Eclipse. If you don't have an
 AndroidManifest.xml, your existing source code is probably not for
 Android, is it?

 Would you be, by any chance, trying to create an android project based
 on a Java library? In this case you'd want to create a new empty
 Android project and then import your existing source code into it.

 Feel free to elaborate and what you're trying to achieve.

 R/


 Thanks,

 Bill


 On Dec 9, 12:05 am, Ralf ralfo...@gmail.com wrote:
 On Fri, Dec 5, 2008 at 5:49 PM, Bill Tan billt@gmail.com wrote:
  Hi all,

  I created a project for Android development in eclipse according to
 http://source.android.com/using-eclipse:

  If Eclipse asks you for a workspace location, choose the default.
  If you have a Welcome screen, close it to reveal the Java
  perspective.
  File  New  Java Project

 This wizard is for creating standard Java projects (i.e. non android).

 What you want is to use File  New  Android  Project instead.
 If you don't see it try resetting your perspective (Windows  Reset
 Perspective) or use File  New  Other  Android  Android Project.

 Make sure you set the SDK path in Preferences  Android first.

 R/

  Pick a project name, android or anything you like.
  Select Create project from existing source, enter the path to your
  Android
  root directory, and click Finish.
  Wait while it sets up the project. (You'll see a subtle progress meter
  in
  the lower right corner.)

  After the build finished, I got two errors:
  AndroidManifest.xml filemissing!
  The type IGearsDialogService is already defined

  I am sure I followed the instructions. Is there anything I missed?

  Thanks in advance.

  Bill
 


 



-- 
Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Google Group Client Based Tech Support Specialist
Hazel Crest Illinois
xavieruni...@gmail.com¥xavierunited@hotmail.com¥truestar...@yahoo.com
Fear of a name, only increases fear of the thing itself.

--~--~-~--~~~---~--~~
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] Re: Service not able to download network data while in standby

2008-12-14 Thread Xavier Mathews

Try the alarm/alert manager. When in sms and device on stand by it
does not alert you unless your device is compatiable with gmail sms or
another email service.

On 12/14/2008, Jean-Baptiste Queru j...@google.com wrote:

 Sounds like you want to use AlarmManager.

 JBQ

 On Sun, Dec 14, 2008 at 9:54 AM, ChisterNordvik cnord...@gmail.com wrote:

 Hi!

 I have a service polling data at regular time intervals and this works
 great except when the phone goes into standby. Then the service never
 runs the timer thread and it never receives data. How does the SMS/
 Email application do this since I get those notifications while in
 standby?

 When I did a Windows Mobile application this was just the same, and I
 had to resort to a third party timer (SDF) to solve this

 -Christer
 




 --
 --
 Jean-Baptiste M. Queru
 Android Engineer, Google.

 



-- 
Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Google Group Client Based Tech Support Specialist
Hazel Crest Illinois
xavieruni...@gmail.com¥xavierunited@hotmail.com¥truestar...@yahoo.com
Fear of a name, only increases fear of the thing itself.

--~--~-~--~~~---~--~~
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] Re: Using resources in WebView

2008-12-14 Thread Xavier Mathews

Duplicate them to where?

On 12/14/2008, Ralf ralfo...@gmail.com wrote:

 You might have to duplicate them. Resources in /res/drawable and in
 /assets are not handled the same way.

 R/

 On Sat, Dec 13, 2008 at 10:50 AM, Eric rellimc...@gmail.com wrote:

 My app has ImageButtons that use icons in drawable. I want a help page
 that can refer to those icons. I made a help html file and put it in
 assets/help/help.html. Now I can load it using file:///android_asset/
 help/help.html.

 The problem is how do I access the ImageButton icons? Is there a way
 for my html file to refer to the resource directory?

 I could not find a way, so I thought I'd put the icons in my help
 directory. Now they are easy to acces from my help.html. However, I
 have trouble referring to them from my code. My src code looks like
 this:

ImageButton correctAnswerButton = (ImageButton)
 findViewById
 (R.id.correct_answer);
File imgFile = new File(/android_asset/help/
 check_icon.png);
correctAnswerButton.setImageURI(Uri.fromFile(imgFile));

 This fails. I presume android_asset only works for WebView. I cannot
 find documentation on it anywhere -- I only found out about it from
 this group.

 Is there a way to load an image from assets? Or better, is there a way
 to refer to resources from an html asset?


 


 



-- 
Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Google Group Client Based Tech Support Specialist
Hazel Crest Illinois
xavieruni...@gmail.com¥xavierunited@hotmail.com¥truestar...@yahoo.com
Fear of a name, only increases fear of the thing itself.

--~--~-~--~~~---~--~~
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] Re: How to power off the emulator

2008-12-14 Thread Xavier Mathews

Close the E win at the time you power it off.

On 12/14/2008, Ralf ralfo...@gmail.com wrote:

 I believe that is not properly handled by the emulator.
 Just close the emulator window when you're done with it.

 Note that if you're going to relaunch an app on the emulator you don't
 need to stop it between.

 R/

 On Sat, Dec 13, 2008 at 5:40 PM, Xiongzh zx.zhangxi...@gmail.com wrote:

 Hi friends,

 A small issue in my emulator in Vista: Either I pressed the red phone
 button for long time or pressed the power off button in the up-left
 side, the emulator was in 'Shutting down ...' status for long time.

 How can it be powered off as the real device?

 Is it OK to just close the window at this time?
 


 



-- 
Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Google Group Client Based Tech Support Specialist
Hazel Crest Illinois
xavieruni...@gmail.com¥xavierunited@hotmail.com¥truestar...@yahoo.com
Fear of a name, only increases fear of the thing itself.

--~--~-~--~~~---~--~~
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] Re: Using G1 as modem

2008-12-14 Thread Xavier Mathews

Wow i am not a troll get a grip i thought that he was talking about a
diffrent modem sorry that i miss understodd. The sig is for my class i
have to keep it on for about another 6weeks for the semester. Also the
Google Guys dont care some of them may had to do the same thing when
the were in there google api class. Like i said get a grip.

On 12/13/2008, Al Sutton a...@funkyandroid.com wrote:

 Please see the following informational poster in relation to Xavier
 http://tinyurl.com/2yqfx2

 I'm not sure how the Google guys feel about him describing himself as a
 Google Group Client Based Tech Support Specialist in his signature
 (especially as it comes from a gmail address), but personally I wouldn't
 be overly concerned if he was banned from this group.

 Now to address your point you may want to look at
 http://graha.ms/androidproxy/


 Al.

 Tee wrote:
 If you are not going to make a productive comment, its best to make no
 comment at all...Every other HTC phone can be used as a modem, like my
 previous mda vario 3 and the new mda vario iv...so theres no reason
 why there cant be one for G1..i just hope someone can make it
 quickas I recently hard the new G1 phone when it comes out will
 have hdpa usdpa and sat nav progam built in

 On Dec 11, 7:04 pm, Xavier Mathews xavieruni...@gmail.com wrote:

 U No and why would anybody want to use the G1 as a phonemodem?

 On 12/11/2008, Tee gurt...@gmail.com wrote:




 Hi, the burning question on everyones lips are when is a developer
 going to make an app that allows us to use the G1 phone as amodem?

 Is there anything in progress out there...besides the hacked version
 which seems like too much hassle

 --
 Xavier A. Mathews
 Student/Browser Specialist/Developer/Web-Master
 Google Group Client Based Tech Support Specialist
 Hazel Crest Illinois
 xavieruni...@gmail.com¥xavieruni...@hotmail.com¥truestar...@yahoo.com
 Fear of a name, only increases fear of the thing itself.

 



 --
 ==
 Funky Android Limited is registered in England  Wales with the
 company number  6741909. The registered head office is Kemp House,
 152-160 City Road, London,  EC1V 2NX, UK.

 The views expressed in this email are those of the author and not
 necessarily those of Funky Android Limited, it's associates, or it's
 subsidiaries.


 



-- 
Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Google Group Client Based Tech Support Specialist
Hazel Crest Illinois
xavieruni...@gmail.com¥xavierunited@hotmail.com¥truestar...@yahoo.com
Fear of a name, only increases fear of the thing itself.

--~--~-~--~~~---~--~~
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] Re: sim needed for accessing market?

2008-12-14 Thread Xavier Mathews

I read it on markek dev phone updated blog. Joel is right.

On 12/14/2008, Joel Knighton joel.knigh...@gmail.com wrote:
 Yes, the Market application is on the Android Dev Phone 1.

 On Sun, Dec 14, 2008 at 8:27 PM, strazzere str...@gmail.com wrote:


 @Xavier
 Can I asked exactly where you are getting your information? Did
 someone tell you this?

 @Craig

 The developer phone can go on networks like T-Mobile if a sim card is
 provided, though it is not nessicary for the phone to work. It can
 access the internet without any card via usb connection. The real
 question is, is does it come with the market application on it.
 Hopefully someone with a developer phone can answer this, as it isn't
 on googles page concerning the phone;
 http://code.google.com/android/dev-devices.html

 The way everything is worded. I would assume that the market is NOT on
 the device since it's intended to test YOUR applications. It also
 notes that it is not intented for everyday users as it is not
 supported by anyway... So I'd (hopefully safely) assume that you could
 not expect the market to be on there.

 -Tim Strazzere
 http://www.strazzere.com/blog/

 On Dec 14, 8:19 pm, Xavier Mathews xavieruni...@gmail.com wrote:
  Do you have the Dev phone. I belive that you can download from the
  market to the phone via usb through dsl. I have never tried.
 
  On 12/14/2008, Craig csab...@gmail.com wrote:
 
 
 
   Does anyone know what is required to use the dev phone? Specifically,
   do I need a phone contract, or can I get online through my DSL
   connection at home? If I can get online through my home connection,
   would I have access to the Android Market?
 
   I'm asking because I would like a device to develop on and test, but
   I'm not interested in another phone contract, and I don't have ATT or
   TMobile.
 
  --
  Xavier A. Mathews
  Student/Browser Specialist/Developer/Web-Master
  Google Group Client Based Tech Support Specialist
  Hazel Crest Illinois
  xavieruni...@gmail.com¥xavieruni...@hotmail.com¥truestar...@yahoo.com
  Fear of a name, only increases fear of the thing itself.
 



 --
 Joel Knighton

 



-- 
Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Client Based Tech Support Specialist
Hazel Crest Illinois
xavieruni...@gmail.com¥xavierunited@hotmail.com¥truestar...@yahoo.com
Fear of a name, only increases fear of the thing itself.

--~--~-~--~~~---~--~~
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] Re: ATT on dev phone, data connection not working

2008-12-14 Thread Xavier Mathews

I would call att if i were you.

On 12/14/2008, bparker cbpar...@gmail.com wrote:

 I have exhausted all combinations of APN settings possible to get an
 ATT data connection to work, but nothing seems to help at all. I know
 what the settings are supposed to be (wap.cingular etc etc), it is
 simply not working. I even tried running logcat on the radio and it
 doesn't seem that it ever tries to dial out for a data connection.

 Anyone have some ideas?

 Thanks
 



-- 
Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Client Based Tech Support Specialist
Hazel Crest Illinois
xavieruni...@gmail.com¥xavierunited@hotmail.com¥truestar...@yahoo.com
Fear of a name, only increases fear of the thing itself.

--~--~-~--~~~---~--~~
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] Re: Using resources in WebView

2008-12-13 Thread Xavier Mathews

Cant you just convert you image to the image type you want and then
format it to html? All your images should be page file that is where
you should find the drawabldm icons unless they are placed on a
toolbar.

On 12/13/2008, Eric rellimc...@gmail.com wrote:

 My app has ImageButtons that use icons in drawable. I want a help page
 that can refer to those icons. I made a help html file and put it in
 assets/help/help.html. Now I can load it using file:///android_asset/
 help/help.html.

 The problem is how do I access the ImageButton icons? Is there a way
 for my html file to refer to the resource directory?

 I could not find a way, so I thought I'd put the icons in my help
 directory. Now they are easy to acces from my help.html. However, I
 have trouble referring to them from my code. My src code looks like
 this:

   ImageButton correctAnswerButton = (ImageButton) findViewById
 (R.id.correct_answer);
   File imgFile = new File(/android_asset/help/
 check_icon.png);
   correctAnswerButton.setImageURI(Uri.fromFile(imgFile));

 This fails. I presume android_asset only works for WebView. I cannot
 find documentation on it anywhere -- I only found out about it from
 this group.

 Is there a way to load an image from assets? Or better, is there a way
 to refer to resources from an html asset?


 



-- 
Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Google Group Client Based Tech Support Specialist
Hazel Crest Illinois
xavieruni...@gmail.com¥xavierunited@hotmail.com¥truestar...@yahoo.com
Fear of a name, only increases fear of the thing itself.

--~--~-~--~~~---~--~~
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] Re: How to remove Gallery drop shadow

2008-12-12 Thread Xavier Mathews

Can you post the code or a link.

On 12/12/2008, devile...@gmail.com devile...@gmail.com wrote:

 The gallery view creates a shadow around all gallery items.  Is there
 a way to remove this?  Going through the source code, I can't even
 find where this shadow is added.
 



-- 
Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Google Group Client Based Tech Support Specialist
Hazel Crest Illinois
xavieruni...@gmail.com¥xavierunited@hotmail.com¥truestar...@yahoo.com
Fear of a name, only increases fear of the thing itself.

--~--~-~--~~~---~--~~
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] Re: Please Unsubscribe

2008-12-12 Thread Xavier Mathews

You Can do it yourself Group»edit sub»unsub

On 12/12/2008, Dipen Dalal dalaldi...@gmail.com wrote:
 Please unsubscribe dalaldi...@gmail.com form the 'Android - Developers'
 group.

 Thanks,

 Dipen Dalal

 



-- 
Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Google Group Client Based Tech Support Specialist
Hazel Crest Illinois
xavieruni...@gmail.com¥xavierunited@hotmail.com¥truestar...@yahoo.com
Fear of a name, only increases fear of the thing itself.

--~--~-~--~~~---~--~~
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] Re: Developing on device(? is it possible)

2008-12-12 Thread Xavier Mathews

You can't mod the device based on rules and regs. But i know with the
right Script java and code you could develop on the phone via
internet. Write»Compile»Run»Debug. Let us know if you are going to try
it.

On 12/12/2008, Steve Oldmeadow st...@smoco.com wrote:

 On Dec 13, 5:27 am, zero zeroo...@googlemail.com wrote:
 i remember someone had a working on-device
 development app for android m5 (?)
 but what happened to that i don't know.


 It was PowerGUI, the product is called PhoneIDE.  Not sure what the
 current status is.
 



-- 
Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Google Group Client Based Tech Support Specialist
Hazel Crest Illinois
xavieruni...@gmail.com¥xavierunited@hotmail.com¥truestar...@yahoo.com
Fear of a name, only increases fear of the thing itself.

--~--~-~--~~~---~--~~
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] Re: Tracking the CALL button from a service? - Possible?

2008-12-12 Thread Xavier Mathews

Dang thats a good question. I think that you can but I am not sure if
you would do it using the BroadCast.R i will go searh on it.

On 12/12/2008, code_android_festival_way festival.s...@googlemail.com wrote:

 Hello.

 Is it possible to track the CALL button with a BroadcastReceiver? I
 have tried that but can't get it to work. So it would be interesting
 if there is a possibility to track the pressing of the call button by
 a service.

 Looking forward reading your answer.
 



-- 
Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Google Group Client Based Tech Support Specialist
Hazel Crest Illinois
xavieruni...@gmail.com¥xavierunited@hotmail.com¥truestar...@yahoo.com
Fear of a name, only increases fear of the thing itself.

--~--~-~--~~~---~--~~
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] Re: G1

2008-12-11 Thread Xavier Mathews

That what we all are hopeing for there was a whole post on this.

On 12/11/2008, Andrei Craciun avcrac...@gmail.com wrote:
 Hi All,

 Will the G1 phone be capable to support future Android SDK versions?

 Thanks in advance,
 Andrei

 



-- 
Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Google Group Client Based Tech Support Specialist
Hazel Crest Illinois
xavieruni...@gmail.com¥xavierunited@hotmail.com¥truestar...@yahoo.com
Fear of a name, only increases fear of the thing itself.

--~--~-~--~~~---~--~~
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] Re: Allocation too large for this process

2008-12-11 Thread Xavier Mathews

Well how would you trim it down without takeing away from the app.

On 12/11/2008, fala70 fal...@gmail.com wrote:

 my application open in sequence 3 activities, on last I've this
 situation heap:
 ID Heap Size Allocated   Free Used Objs.
 1 2,945 MB1,936 MB1,009 MB65,75%  38.365

 at any case I've a problem that I can't solve againg after much time
 that I am on. I need to show a list, grid or gallery of a few photo
 selected from user from internal or external memory. For that I used:

 Uri target = Media.INTERNAL_CONTENT_URI;
 Intent intent = new Intent(Intent.ACTION_PICK, target);
 startActivityForResult(intent, GET_IMAGE_FROM_FOLDER);

 and that work good. Then I know the picture id and if it is in
 internal or external media.. Now I need to show the thumbnail of these
 picture selected but that is impossible I can't do it for too much
 memory request. All picture are taked from camera.

 is there a solution for resize the images without goi out of memory ?


 On 11 Dic, 13:51, Romain Guy romain...@google.com wrote:
 It works when you load a smaller file because you simply have very
 little amount of memory left. Your application is using too much
 memory, you need to trim it down.







 On Thu, Dec 11, 2008 at 1:00 AM,fala70fal...@gmail.com wrote:

  I 've a similar problem. I am going crazy from several days Is
  impossible to show images from internal or external memory captured
  from camera. Also I tried to read a file jpg of 700KB and use
  BitmapFactory.decodeByteArray to get the bitmap, but I receive that
  exeption:

  12-11 00:50:27.819: ERROR/dalvikvm-heap(3547): 6291456-byte external
  allocation too large for this process.

  if I try to load an image smaller (around 4K)
  BitmapFactory.decodeByteArray work good.

  somebody has a solution ?

 --
 Romain Guywww.curious-creature.org
 



-- 
Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Google Group Client Based Tech Support Specialist
Hazel Crest Illinois
xavieruni...@gmail.com¥xavierunited@hotmail.com¥truestar...@yahoo.com
Fear of a name, only increases fear of the thing itself.

--~--~-~--~~~---~--~~
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] Re: Anyone get a tracking number for the dev phone?

2008-12-11 Thread Xavier Mathews

Everyone get a tracking code via email or phone so they can track there package.

On 12/11/2008, jeroen020 jer...@exmachina.nl wrote:

 I ordered the dev phone on December 6th but other than receiving
 instant confirmation that my order was received via e-mail I have not
 heard anything since. I'm in The Netherlands and paid 578$ incl
 shipping.

 I know that some people here (in the US) have now received their dev
 phone, but I was wondering if you guys got a tracking code first. It's
 supposed to ship via 'UPS Innovation' and on their site you can only
 track shipments if you have a code.

 If you got a tracking code, how many days after you placed your order
 did you get it? And how long did it take for the phone to arrive after
 you got the tracking code?

 I can't find a way to contact customer support at the order site and
 the confirmation was sent from nore...@brightstarcorp.com so that
 sounds pointless too.

 Waiting for it to arrive is a lot less annoying when you're at least
 kept up to date on shipping status...

 



-- 
Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Google Group Client Based Tech Support Specialist
Hazel Crest Illinois
xavieruni...@gmail.com¥xavierunited@hotmail.com¥truestar...@yahoo.com
Fear of a name, only increases fear of the thing itself.

--~--~-~--~~~---~--~~
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] Re: Using G1 as modem

2008-12-11 Thread Xavier Mathews

U No and why would anybody want to use the G1 as a phone modem?

On 12/11/2008, Tee gurt...@gmail.com wrote:

 Hi, the burning question on everyones lips are when is a developer
 going to make an app that allows us to use the G1 phone as a modem?

 Is there anything in progress out there...besides the hacked version
 which seems like too much hassle

 



-- 
Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Google Group Client Based Tech Support Specialist
Hazel Crest Illinois
xavieruni...@gmail.com¥xavierunited@hotmail.com¥truestar...@yahoo.com
Fear of a name, only increases fear of the thing itself.

--~--~-~--~~~---~--~~
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] Re: New SDK Available

2008-12-09 Thread Xavier Mathews

Samsung Omima Does Not Run Android Does It? NO! So Why the Dev?

On 12/09/2008, anthony bisong [EMAIL PROTECTED] wrote:
 In January 2009 Android Quad band (worldwide usage) phone made by Kogan can
 be ordered from Australia and ship worldwide.
 Read more at:  http://news.cnet.com/8301-1035_3-10113308-94.html


 You can pre order from http://www.kogan.com.au/

 Anthony Bisong

 On Sat, Dec 6, 2008 at 5:55 PM, gjs [EMAIL PROTECTED] wrote:


 Hi,

 Many many thanks for finally making an unlocked DEV phone available
 (largely) worldwide.

 This is great news for us folks in the non T-Mobile regions and will
 help provide a level playing field for ADC II participants.

 ( In my own case I decided not to wait as no news of DEV phones was
 forthcoming before now, so I took the *big* gamble of procuring a US
 G1 privately through ebay - for a premium. I managed to get it working
 after purchasing an unlock code and configuring the GPRS setting to
 work with Optus 3G in Australia. )

 If the DEV phone is to automatically receive 'OTA' updates - without
 warning like the G1 - I would suggest that people double check their
 local mobile data plans to ensure they don't get slugged for excessive
 download charges.

 Once again thanks, this is a great (xmas/holiday) present for many
 Android devs :-)

 Regards

 On Dec 7, 4:31 am, Romain Guy [EMAIL PROTECTED] wrote:
  The Android Dev Phone 1 supports 3G in Europe. It depends on the
  carrier, the country, etc. though. But it should work in most cases.
 
 
 
  On Sat, Dec 6, 2008 at 3:21 AM, Paulo Sergio [EMAIL PROTECTED] wrote:
   Hi
   very nice news!!!
 
   2 questions:
   whats the band frenquency of the phone? will it have 3g in europe?
   from where is it shipped? if outside europe will be expensive to who
 live
   here
 
   ordering online is a huge help, but i'm just sad that a lot of country
 where
   left out! it's online, why do this??
 
   thanks,
   paulo
 
   On Sat, Dec 6, 2008 at 9:52 AM, Al Sutton [EMAIL PROTECTED]
 wrote:
 
   The development phones are an excellent and much needed help
 (especially
   since they are available in markets where the G1 currently isn't).
 
   And I'd personally like to give a BIG hug to whoever fixed installing
   apps via the browser from places such as AndAppStore in the new SDK
   release :) :) :).
 
   Nice work and well done all at Google.
 
   Al.
  http://andappstore.com/
 
   Dan Morrill wrote:
Hello, developers!  I wanted to call your attention to the new
 Android
1.0 SDK, release 2 that we just made available.
 
For full details, please see our blog post:
 
   
 http://android-developers.blogspot.com/2008/12/new-resources-for-deve...
 
- Dan
 
  --
  Romain Guywww.curious-creature.org
 



 --
 Anthony Bisong
 Cell: 770-827-5941

 



-- 
Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Google Group Client Based Tech Support Specialist
Hazel Crest Illinois
[EMAIL PROTECTED]@[EMAIL PROTECTED]
Fear of a name, only increases fear of the thing itself.

--~--~-~--~~~---~--~~
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
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: G1 and PS3 question

2008-12-08 Thread Xavier Mathews

What does this have to do with android? To answer your question i dont
think that there an applaction for it you will have to do it manualy.

On 12/08/2008, Ryan [EMAIL PROTECTED] wrote:

 I plan on putting 4-6 gigs of music on my G1.  I then want to stream
 that music using bluetooth or wi-fi to my stereo system.  I figured
 the best way to do this would be to use the bluetooth/ wi-fi abilities
 of the PS3.  The idea is to control the music heard throughout the
 house using the G1.  I can see that it's possible.  But, my question
 is does an application(s) or software exist to make this happen?
 Thanks and cheers, Ryan

 



-- 
Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Google Group Client Based Tech Support Specialist
Hazel Crest Illinois
[EMAIL PROTECTED]@[EMAIL PROTECTED]
Fear of a name, only increases fear of the thing itself.

--~--~-~--~~~---~--~~
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
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: New SDK Available

2008-12-08 Thread Xavier Mathews

Well anyone can use the tmobile network i have it on my psp slim.

On 12/08/2008, Michael [EMAIL PROTECTED] wrote:

 Except the phones that don't support the networks they use.  I.e. the
 T-Mobile G1.
 



-- 
Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Google Group Client Based Tech Support Specialist
Hazel Crest Illinois
[EMAIL PROTECTED]@[EMAIL PROTECTED]
Fear of a name, only increases fear of the thing itself.

--~--~-~--~~~---~--~~
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
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: New SDK Available

2008-12-08 Thread Xavier Mathews

UGH none of use of us no anything. officaly...

On 12/08/2008, Josh Roesslein [EMAIL PROTECTED] wrote:
 Here are some specs on the G1 --
 http://www.htc.com/www/product/g1/specification.html

 Of interest is the networking section.

 HSPA/WCDMA and Quad-band GSM/GPRS/EDGE are supported.

 Keep in mind WCDMA is a lot different than the standard CDMA. Its often
 called UMTS and the only major
 telecoms in the USA that support it are T-mobile and Att.

 On Mon, Dec 8, 2008 at 2:05 PM, don rhummy [EMAIL PROTECTED] wrote:


 Thanks for the reply.

 Sorry to be a pest about this but no where in the Google press release did
 i see anything saying it's only GSM. Where was that specified?


 --- On Mon, 12/8/08, Josh Roesslein [EMAIL PROTECTED] wrote:

  From: Josh Roesslein [EMAIL PROTECTED]
  Subject: [android-developers] Re: New SDK Available
  To: android-developers@googlegroups.com
  Date: Monday, December 8, 2008, 2:43 PM
  Sprint uses cdma in most of its coverage areas. Since the g1
  is a GSM phone
  it probably will not work.
 
  On Mon, Dec 8, 2008 at 1:38 PM, don rhummy
  [EMAIL PROTECTED] wrote:
 
  
Well any phone works with sprint you will just
  have to pay
more if it
is not a sprint phone.
  
   Wait, I thought the phone didn't work with Sprint.
  Does it?
  
  
  
  
   
  
 
 



 


 



-- 
Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Google Group Client Based Tech Support Specialist
Hazel Crest Illinois
[EMAIL PROTECTED]@[EMAIL PROTECTED]
Fear of a name, only increases fear of the thing itself.

--~--~-~--~~~---~--~~
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
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: G1 and PS3 question

2008-12-08 Thread Xavier Mathews

YOU can download one and how long does the batt last?

On 12/08/2008, Michael [EMAIL PROTECTED] wrote:

 I'm doing this right now with Music Player Daemon (http://
 www.musicpd.org/) and an application I wrote for Android to control
 the player (currently unreleased).  It works great but my music is
 stored on the server, not on the G1.  If you want to keep your music
 on the G1, you'd need a player that streamed to the internet, and I
 suspect that it'd drain your battery fast.  As far as I know, there is
 no such player yet available - but one could be written.

 - michael
 



-- 
Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Google Group Client Based Tech Support Specialist
Hazel Crest Illinois
[EMAIL PROTECTED]@[EMAIL PROTECTED]
Fear of a name, only increases fear of the thing itself.

--~--~-~--~~~---~--~~
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
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Wifi Ip Address

2008-12-08 Thread Xavier Mathews

create your own post.

On 12/08/2008, androidfromCordoba [EMAIL PROTECTED] wrote:

 Hello again,
 Another question:
 How could I simulate whit the emulator a connection with a configured
 local wifi netwok in which my localhost is in?
 Is that possible or I must get the real device?

 Thaks very much

 On 3 dic, 14:57, Marcio Alexandroni [EMAIL PROTECTED] wrote:
 Would it be:

 WiFiManager wifi = (WifiManager) getSystemService(WIFI_SERVICE);
 DhcpInfo info = wifi.getDhcpInfo();

 DhcpInfo has all the WiFi configurations. Of course you have to add the
 permissions below to the manifest. I'm not sure you need both but it
 worked
 with those.

 uses-permission
 android:name=android.permission.ACCESS_NETWORK_STATE/uses-permission
 uses-permission
 android:name=android.permission.ACCESS_WIFI_STATE/uses-permission

 Marcio Alexandroniwww.cialogica.com
 w  Tel. 55 11 3717-2345
Cel. 55 11 9989-8316
   [EMAIL PROTECTED]
  marcioalexandroni



 -Original Message-
 From: android-developers@googlegroups.com

 [mailto:[EMAIL PROTECTED] On Behalf Of Andrea
 Sent: Monday, December 01, 2008 19:43
 To: Android Developers
 Subject: [android-developers] Re: Wifi Ip Address

 Xavier: I don't want to change the ip. I want only to know the ip that
 is assigned to the NIC of the phone.
 Ed: Sure, but showipaddress.com shows only the ip with which you go
 out on the Internet: for example you could be connected to Internet
 behind NAT.

 I try to explain better my problem:
 I'm developing on the emulator because I'm in italy and here there
 aren't devices. My app creates a server listening on a port for
 incoming connections. On the emulator the address used to bind the
 socket is 10.0.2.15, if I want to connect to that server, say from
 another host, i have to:
 1) make a redirection on the local interface of the host that runs the
 emulator (so 127.0.0.1: forwards to 10.0.2.15:)
 2) redirect my NIC interface to the local interface (say
 192.168.2.1: forwards to 127.0.0.1:) with a datapipe tool
 3) connect from a client to 192.168.2.1:
 4) start communicating.

 Now, in a real device how is this achieved? How many interfaces the
 device has? I think it has 10.0.2.15, 127.0.0.1 and the ip address
 assigned to the phone by a wifi network. Am I wrong?

 Thanks- Ocultar texto de la cita -

 - Mostrar texto de la cita -

 



-- 
Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Google Group Client Based Tech Support Specialist
Hazel Crest Illinois
[EMAIL PROTECTED]@[EMAIL PROTECTED]
Fear of a name, only increases fear of the thing itself.

--~--~-~--~~~---~--~~
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
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: New SDK Available

2008-12-08 Thread Xavier Mathews

Do You Have A Link?

On 12/08/2008, Dan [EMAIL PROTECTED] wrote:

 Just wanted to point out that I'm still having trouble extracting the
 Mac edition of the 1.0r2 SDK. I've tried downloading via Safari,
 Firefox, and Curl. Strangely, I get different MD5 values from
 subsequent downloads. Same file size, but a binary diff reveals a LOT
 of differences, but not apparent corruption. There will be a few bytes
 inserted here, and a few bytes removed there. I can't explain it.
 



-- 
Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Google Group Client Based Tech Support Specialist
Hazel Crest Illinois
[EMAIL PROTECTED]@[EMAIL PROTECTED]
Fear of a name, only increases fear of the thing itself.

--~--~-~--~~~---~--~~
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
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: New SDK Available

2008-12-07 Thread Xavier Mathews

I thought att only did 3G network.

On 12/07/2008, Jean-Baptiste Queru [EMAIL PROTECTED] wrote:

 Sprint moved away from GSM a very long time ago, and this phone is
 GSM-only and therefore doesn't work on Sprint's network. If you're in
 the US, T-Mobile is the best operator to use the Android Dev Phone 1
 on (and if you already have a G1 you can swap the SIM between the
 phones). It'll work on ATT's network but you won't have any 3G data.

 JBQ

 On Sat, Dec 6, 2008 at 10:31 PM, don rhummy [EMAIL PROTECTED] wrote:

 Will this unlocked phone work with a Sprint/Nextel SIM card? I've heard
 they're not compatible with most SIM-capable phones.


 --- On Sat, 12/6/08, gjs [EMAIL PROTECTED] wrote:

 From: gjs [EMAIL PROTECTED]
 Subject: [android-developers] Re: New SDK Available
 To: Android Developers android-developers@googlegroups.com
 Date: Saturday, December 6, 2008, 5:55 PM
 Hi,

 Many many thanks for finally making an unlocked DEV phone
 available
 (largely) worldwide.

 This is great news for us folks in the non T-Mobile regions
 and will
 help provide a level playing field for ADC II participants.

 ( In my own case I decided not to wait as no news of DEV
 phones was
 forthcoming before now, so I took the *big* gamble of
 procuring a US
 G1 privately through ebay - for a premium. I managed to get
 it working
 after purchasing an unlock code and configuring the GPRS
 setting to
 work with Optus 3G in Australia. )

 If the DEV phone is to automatically receive 'OTA'
 updates - without
 warning like the G1 - I would suggest that people double
 check their
 local mobile data plans to ensure they don't get
 slugged for excessive
 download charges.

 Once again thanks, this is a great (xmas/holiday) present
 for many
 Android devs :-)

 Regards

 On Dec 7, 4:31 am, Romain Guy [EMAIL PROTECTED]
 wrote:
  The Android Dev Phone 1 supports 3G in Europe. It
 depends on the
  carrier, the country, etc. though. But it should work
 in most cases.
 
 
 
  On Sat, Dec 6, 2008 at 3:21 AM, Paulo Sergio
 [EMAIL PROTECTED] wrote:
   Hi
   very nice news!!!
 
   2 questions:
   whats the band frenquency of the phone? will it
 have 3g in europe?
   from where is it shipped? if outside europe will
 be expensive to who live
   here
 
   ordering online is a huge help, but i'm just
 sad that a lot of country where
   left out! it's online, why do this??
 
   thanks,
   paulo
 
   On Sat, Dec 6, 2008 at 9:52 AM, Al Sutton
 [EMAIL PROTECTED] wrote:
 
   The development phones are an excellent and
 much needed help (especially
   since they are available in markets where the
 G1 currently isn't).
 
   And I'd personally like to give a BIG hug
 to whoever fixed installing
   apps via the browser from places such as
 AndAppStore in the new SDK
   release :) :) :).
 
   Nice work and well done all at Google.
 
   Al.
  http://andappstore.com/
 
   Dan Morrill wrote:
Hello, developers!  I wanted to call
 your attention to the new Android
1.0 SDK, release 2 that we just made
 available.
 
For full details, please see our blog
 post:
 
  
 http://android-developers.blogspot.com/2008/12/new-resources-for-deve...
 
- Dan
 
  --
  Romain Guywww.curious-creature.org




 


 



-- 
Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Google Group Client Based Tech Support Specialist
Hazel Crest Illinois
[EMAIL PROTECTED]@[EMAIL PROTECTED]
Fear of a name, only increases fear of the thing itself.

--~--~-~--~~~---~--~~
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
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Dialog with No Title

2008-12-07 Thread Xavier Mathews

Did you set it to invisable and shorten it? I have never heard of a
Dialog with no title.

On 12/07/2008, cyntacks [EMAIL PROTECTED] wrote:

 Sure, that is what I had originally thought. But how do you get the
 Title view in order to set it to GONE (I believe INVISIBLE still takes
 up some space)?


 On Dec 7, 6:58 am, Christine [EMAIL PROTECTED] wrote:
 When you set the view to invisible, it won't take up space:
 yourTextView.setVisibility(TextView.INVISIBLE)

 On Dec 7, 4:09 am, cyntacks [EMAIL PROTECTED] wrote:

  I'm just bumping this, I have been trying to figure this out for the
  past 2 hours... anyone know how this can be done?

  On Nov 13, 1:26 pm, G [EMAIL PROTECTED] wrote:

   I've got the following NumberPickerDialog class which extendsDialog.
   Currently the pick_number.xml contains only a LinearLayout and 1
   button (this is all incomplete as i'm still in early dev stages). When
   I show thisdialog, I get a blank space for thetitleeven though I do
   not specify one. I would like that blank space gone, so i have more
   room on screen for more buttons. How do I create thisdialogwith
   notitle/empty spot fortitle? I've tried setTitle(null) which didnt
   work, and setTheme(android.R.style.Theme_NoTitle) which is not
   supported by theDialogclass.

   Thanks a lot.
   /g

   public class NumberPickerDialog extendsDialog{

   public interface OnNumberChangedListener {
   void numberChanged(int number);
   }

   private OnNumberChangedListener mListener;
   private int mInitialNumber;
   private int mMinNumber;
   private int mMaxNumber;

   @Override
   protected void onCreate(Bundle savedInstanceState) {

   super.onCreate(savedInstanceState);

   setContentView(R.layout.pick_number);
   //setTitle(THIS SHOULDNT BE HERE);

   Button btn = (Button)findViewById(R.id.Button01);
   btn.setOnClickListener(new Button.OnClickListener() {

   public void onClick(View v) {
   // TODO Auto-generated method stub
   String num =
   ((Button)v).getText().toString();
  
   mListener.numberChanged(Integer.parseInt(num));
   dismiss();
   }

   });
   }

   public NumberPickerDialog(Context ctx, OnNumberChangedListener
   listener, int initialNumber, int minNumber, int maxNumber) {
   super(ctx);
   mListener = listener;
   mInitialNumber = initialNumber;
   mMinNumber = minNumber;
   mMaxNumber = maxNumber;
   }

   }
 



-- 
Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Google Group Client Based Tech Support Specialist
Hazel Crest Illinois
[EMAIL PROTECTED]@[EMAIL PROTECTED]
Fear of a name, only increases fear of the thing itself.

--~--~-~--~~~---~--~~
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
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: OpenGL context = how to load non power of two dimension bitmap?

2008-12-07 Thread Xavier Mathews

Hi I think there is a program app or something for power two bitmap
for the G1 did you check the market. I can't remember what it was
called but someone was having this problen with support and found the
app.

On 12/07/2008, Mathias Agopian [EMAIL PROTECTED] wrote:

 Hi,

 The G1 h/w doesn't support non power-of-two texture (NPOT) dimensions.
 However, Android's software implementation does.
 In order to know if a particular opengl context supports NPOT, you
 need to check for the npot extension string.

 When the extension is not available, you have to use a bigger texture
 that has POT dimensions (or use several smaller textures, but that's
 harder). An easy way to deal with it, is to set a texture matrix which
 scales the texture coordinates in pixels (glScalef(1/w, 1/h, 1)),
 which allows you to specify the texcoord in texels.

 Of course, if you want to use the texture with GL_REPEAT wrapping
 mode, you're out of luck -- well, things get harder, you need to scale
 your original image to POT dimensions, and then use appropriate down-
 scaling to map  repeat it (exercise left to the reader [hint: use
 texture transformations to simplify your life]).

 Also, for 2D rendering, consider using the draw_texture extension
 (glDrawTexi), it's available on most h/w implementations and is
 usually faster than using geometry.

 Information about OpenGL and OpenGL ES extensions is available on the
 intertubes.


 Good luck!

 Mathias


 On Dec 4, 8:48 am, Guian [EMAIL PROTECTED] wrote:
 in the OpenGL android API  (android.opengl.GLUtils.texImage2D() )
 (http://code.google.com/android/reference/android/opengl/GLUtils.html
 )
  we can read=

 Whether or not bitmap can have non power of two dimensions depends
 on
 the current OpenGL context.

 I load my OpenGL context using :
 mEglContext = mEgl.eglCreateContext(mEglDisplay,
 mEglConfig,EGL10.EGL_NO_CONTEXT, null);

 do you know what do I have to do in order to load non power of two
 dimensions bitmap?
 



-- 
Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Google Group Client Based Tech Support Specialist
Hazel Crest Illinois
[EMAIL PROTECTED]@[EMAIL PROTECTED]
Fear of a name, only increases fear of the thing itself.

--~--~-~--~~~---~--~~
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
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: How to send email programmatically?

2008-12-07 Thread Xavier Mathews

Java Mail?

On 12/07/2008, Christine [EMAIL PROTECTED] wrote:

 I use Javamail,  works fine.

 On Dec 6, 8:32 pm, Sunit Katkar [EMAIL PROTECTED] wrote:
 Yes I would prefer this. However, can you please post a code example of
 how
 to do this?Thanks,

 - Sunit Katkar

 On Sat, Dec 6, 2008 at 11:13 AM, Dianne Hackborn
 [EMAIL PROTECTED]wrote:

  You need to go through the UI of the mailer activity, so the user can
  select which app to use etc.  Adding support for allowing applications
  to
  get at the user's personal e-mail information and send on their behalf
  without their interaction (but some other way to inform them that the
  app is
  doing this) is not a high priority for the platform; actually, I would
  personally much prefer that apps go through the mail UI so the user can
  be
  aware of and confirm whatever some non-mail app is sending on their
  behalf.

  As a user, wouldn't you prefer this too? :}

  On Mon, Dec 1, 2008 at 4:23 PM, Jay-andro [EMAIL PROTECTED] wrote:

  I too want to send email programmtaically (i.e without a send form).
  I've got it working with my hardcoded credentials, but I want my app
  to use the user's account to send the email from the user's account
  and receive replies to his account. How do I do this?

  On Nov 12, 10:51 am, Sunit Katkar [EMAIL PROTECTED] wrote:
   Thank you. I will try this.

   On Wed, Nov 12, 2008 at 12:44 AM, Peli [EMAIL PROTECTED]
   wrote:

You can find a code snippet here:
   http://www.openintents.org/en/node/121

There is also a related SENDTO action which you can look up in the
documentation.

Peli
   www.openintents.org

On Nov 12, 8:52 am, Sunit Katkar [EMAIL PROTECTED] wrote:
 Ok how would I implement the 'send form'. Do you mean that I
 should
launch a
 web browser and use some webmail type of application hosted on a
  server?
 I was thinking about the Email Outbox. How can I put a simple
 text
message
 as an email in the Outbox? I know I could do this long long ago
 with
  Palm
OS
 ver3.0. Hope there is a way to do it on Android.

 - Sunit

 On Tue, Nov 11, 2008 at 5:25 PM, Andrew Burgess
 [EMAIL PROTECTED]
wrote:
  If you don't want to direct the user to the typical send form,
  then
you're
  going to have to either try and adapt an existing java based
  mailer to
  android or write an SMTP client from scratch.  The SMTP
  standard
  isn't
too
  hard to implement.

  On Tue, Nov 11, 2008 at 8:05 PM, Sunit Katkar 
  [EMAIL PROTECTED]
wrote:

  Any ideas? Any pointers to some examples?

  On Tue, Nov 11, 2008 at 9:42 AM, Sunit Katkar 
  [EMAIL PROTECTED]
wrote:

  Suppose I have an Activity which has couple of text fields -
  one
  for
the
  subject and one for body text.
  And there is a simple Button. When user clicks the button, I
  wish to
send
  the text in the textfields via email to a predetermined email
address.
  How can I achieve this?

  Sorry for being lazy and not looking up the SDK docs :)

  PS: I have configured the EMAIL app on G1 using the Email
  setup
steps, so
  it can receive and send email from my email account.

  --
  - Sunit Katkar
 http://sunitkatkar.blogspot.com/-AndroidOS Tutorials

  --
  - Sunit Katkar
 http://sunitkatkar.blogspot.com/-AndroidOS Tutorials

  --
  Andrew Burgess

 --
 - Sunit Katkarhttp://sunitkatkar.blogspot.com/-AndroidOS
 Tutorials

   --
   - Sunit Katkarhttp://sunitkatkar.blogspot.com/-Android OS Tutorials

  --
  Dianne Hackborn
  Android framework engineer
  [EMAIL PROTECTED]

  Note: please don't send private questions to me, as I don't have time to
  provide private support.  All such questions should be posted on public
  forums, where I and others can see and answer them.
 



-- 
Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Google Group Client Based Tech Support Specialist
Hazel Crest Illinois
[EMAIL PROTECTED]@[EMAIL PROTECTED]
Fear of a name, only increases fear of the thing itself.

--~--~-~--~~~---~--~~
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
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Dialog with No Title

2008-12-07 Thread Xavier Mathews

Nope i think Kevin is right. Get A bigger screen. lol jokeing.

On 12/07/2008, cyntacks [EMAIL PROTECTED] wrote:

 I guess it depends on how you define dialog. As it stands in the SDK
 now a dialog can be used for almost anything, for example you can
 display an error to the user or even get input from the user. The
 issue mainly revolves around spacing, especilly when the device is in
 Landscape.

 1) If I were to show an AlertDialog, of course I want to have a title
 (something like Error: Nothing Found...).

 2) But, if I am attempting to use the dialog to retrieve user input
 like for example user information (address, email, phone, etc etc)
 there is no need for the title. Using the EditText's hint text, I
 can simply add Email Address as a hint, and the title becomes
 redundant.

 Again, this is really a question of screen real estate and the title
 just takes up too much room on a device in Landscape mode.

 Any ideas besides writing an activity that looks like a dialog?

 Kevin

 On Dec 7, 10:25 am, Xavier Mathews [EMAIL PROTECTED] wrote:
 Did you set it to invisable and shorten it? I have never heard of
 aDialogwith notitle.

 On 12/07/2008, cyntacks [EMAIL PROTECTED] wrote:





  Sure, that is what I had originally thought. But how do you get the
 Titleview in order to set it to GONE (I believe INVISIBLE still takes
  up some space)?

  On Dec 7, 6:58 am, Christine [EMAIL PROTECTED] wrote:
  When you set the view to invisible, it won't take up space:
  yourTextView.setVisibility(TextView.INVISIBLE)

  On Dec 7, 4:09 am, cyntacks [EMAIL PROTECTED] wrote:

   I'm just bumping this, I have been trying to figure this out for the
   past 2 hours... anyone know how this can be done?

   On Nov 13, 1:26 pm, G [EMAIL PROTECTED] wrote:

I've got the following NumberPickerDialog class which
extendsDialog.
Currently the pick_number.xml contains only a LinearLayout and 1
button (this is all incomplete as i'm still in early dev stages).
When
I show thisdialog, I get a blank space for thetitleeven though I do
not specify one. I would like that blank space gone, so i have more
room on screen for more buttons. How do I create thisdialogwith
notitle/empty spot fortitle? I've tried setTitle(null) which didnt
work, and setTheme(android.R.style.Theme_NoTitle) which is not
supported by theDialogclass.

Thanks a lot.
/g

public class NumberPickerDialog extendsDialog{

public interface OnNumberChangedListener {
void numberChanged(int number);
}

private OnNumberChangedListener mListener;
private int mInitialNumber;
private int mMinNumber;
private int mMaxNumber;

@Override
protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.pick_number);
//setTitle(THIS SHOULDNT BE HERE);

Button btn = (Button)findViewById(R.id.Button01);
btn.setOnClickListener(new Button.OnClickListener()
{

public void onClick(View v) {
// TODO Auto-generated method stub
String num =
((Button)v).getText().toString();

mListener.numberChanged(Integer.parseInt(num));
dismiss();
}

});
}

public NumberPickerDialog(Context ctx,
OnNumberChangedListener
listener, int initialNumber, int minNumber, int maxNumber) {
super(ctx);
mListener = listener;
mInitialNumber = initialNumber;
mMinNumber = minNumber;
mMaxNumber = maxNumber;
}

}

 --
 Xavier A. Mathews
 Student/Browser Specialist/Developer/Web-Master
 Google Group Client Based Tech Support Specialist
 Hazel Crest Illinois
 [EMAIL PROTECTED]@[EMAIL PROTECTED]
 Fear of a name, only increases fear of the thing itself.
 



-- 
Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Google Group Client Based Tech Support Specialist
Hazel Crest Illinois
[EMAIL PROTECTED]@[EMAIL PROTECTED]
Fear of a name, only increases fear of the thing itself.

--~--~-~--~~~---~--~~
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
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: New SDK Available

2008-12-07 Thread Xavier Mathews

I phone does not have a sim card!

On 12/07/2008, Logan [EMAIL PROTECTED] wrote:

 What makes you believe that it will not work on ATT's 3G network? I
 am planning on seeing how ATT reacts to my request for the SIM card
 from my iPhone, ha ha.

 On Dec 7, 9:14 am, Jean-Baptiste Queru [EMAIL PROTECTED] wrote:
 Sprint moved away from GSM a very long time ago, and this phone is
 GSM-only and therefore doesn't work on Sprint's network. If you're in
 the US, T-Mobile is the best operator to use the Android Dev Phone 1
 on (and if you already have a G1 you can swap the SIM between the
 phones). It'll work on ATT's network but you won't have any 3G data.

 JBQ

 On Sat, Dec 6, 2008 at 10:31 PM, don rhummy [EMAIL PROTECTED] wrote:

  Will this unlocked phone work with a Sprint/Nextel SIM card? I've heard
  they're not compatible with most SIM-capable phones.

  --- On Sat, 12/6/08, gjs [EMAIL PROTECTED] wrote:

  From: gjs [EMAIL PROTECTED]
  Subject: [android-developers] Re: New SDK Available
  To: Android Developers android-developers@googlegroups.com
  Date: Saturday, December 6, 2008, 5:55 PM
  Hi,

  Many many thanks for finally making an unlocked DEV phone
  available
  (largely) worldwide.

  This is great news for us folks in the non T-Mobile regions
  and will
  help provide a level playing field for ADC II participants.

  ( In my own case I decided not to wait as no news of DEV
  phones was
  forthcoming before now, so I took the *big* gamble of
  procuring a US
  G1 privately through ebay - for a premium. I managed to get
  it working
  after purchasing an unlock code and configuring the GPRS
  setting to
  work with Optus 3G in Australia. )

  If the DEV phone is to automatically receive 'OTA'
  updates - without
  warning like the G1 - I would suggest that people double
  check their
  local mobile data plans to ensure they don't get
  slugged for excessive
  download charges.

  Once again thanks, this is a great (xmas/holiday) present
  for many
  Android devs :-)

  Regards

  On Dec 7, 4:31 am, Romain Guy [EMAIL PROTECTED]
  wrote:
   The Android Dev Phone 1 supports 3G in Europe. It
  depends on the
   carrier, the country, etc. though. But it should work
  in most cases.

   On Sat, Dec 6, 2008 at 3:21 AM, Paulo Sergio
  [EMAIL PROTECTED] wrote:
Hi
very nice news!!!

2 questions:
whats the band frenquency of the phone? will it
  have 3g in europe?
from where is it shipped? if outside europe will
  be expensive to who live
here

ordering online is a huge help, but i'm just
  sad that a lot of country where
left out! it's online, why do this??

thanks,
paulo

On Sat, Dec 6, 2008 at 9:52 AM, Al Sutton
  [EMAIL PROTECTED] wrote:

The development phones are an excellent and
  much needed help (especially
since they are available in markets where the
  G1 currently isn't).

And I'd personally like to give a BIG hug
  to whoever fixed installing
apps via the browser from places such as
  AndAppStore in the new SDK
release :) :) :).

Nice work and well done all at Google.

Al.
   http://andappstore.com/

Dan Morrill wrote:
 Hello, developers!  I wanted to call
  your attention to the new Android
 1.0 SDK, release 2 that we just made
  available.

 For full details, please see our blog
  post:

  http://android-developers.blogspot.com/2008/12/new-resources-for-deve...

 - Dan

   --
   Romain Guywww.curious-creature.org
 



-- 
Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Google Group Client Based Tech Support Specialist
Hazel Crest Illinois
[EMAIL PROTECTED]@[EMAIL PROTECTED]
Fear of a name, only increases fear of the thing itself.

--~--~-~--~~~---~--~~
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
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: New SDK Available

2008-12-07 Thread Xavier Mathews

I thought that iphone was also an ipod and has over 10,000 apps what
is the point of a sim?

On 12/07/2008, GasBot [EMAIL PROTECTED] wrote:

 Because ATT's 3G runs off of a different frequency band than T-
 Mobile's.  So the phone will work and you can make calls with ATT and
 use their Edge network, but you'll never get 3G connectivity.

 On Dec 7, 8:43 am, Logan [EMAIL PROTECTED] wrote:
 What makes you believe that it will not work on ATT's 3G network? I
 am planning on seeing how ATT reacts to my request for the SIM card
 from my iPhone, ha ha.

 On Dec 7, 9:14 am, Jean-Baptiste Queru [EMAIL PROTECTED] wrote:

  Sprint moved away from GSM a very long time ago, and this phone is
  GSM-only and therefore doesn't work on Sprint's network. If you're in
  the US, T-Mobile is the best operator to use the Android Dev Phone 1
  on (and if you already have a G1 you can swap the SIM between the
  phones). It'll work on ATT's network but you won't have any 3G data.

  JBQ

  On Sat, Dec 6, 2008 at 10:31 PM, don rhummy [EMAIL PROTECTED] wrote:

   Will this unlocked phone work with a Sprint/Nextel SIM card? I've
   heard they're not compatible with most SIM-capable phones.

   --- On Sat, 12/6/08, gjs [EMAIL PROTECTED] wrote:

   From: gjs [EMAIL PROTECTED]
   Subject: [android-developers] Re: New SDK Available
   To: Android Developers android-developers@googlegroups.com
   Date: Saturday, December 6, 2008, 5:55 PM
   Hi,

   Many many thanks for finally making an unlocked DEV phone
   available
   (largely) worldwide.

   This is great news for us folks in the non T-Mobile regions
   and will
   help provide a level playing field for ADC II participants.

   ( In my own case I decided not to wait as no news of DEV
   phones was
   forthcoming before now, so I took the *big* gamble of
   procuring a US
   G1 privately through ebay - for a premium. I managed to get
   it working
   after purchasing an unlock code and configuring the GPRS
   setting to
   work with Optus 3G in Australia. )

   If the DEV phone is to automatically receive 'OTA'
   updates - without
   warning like the G1 - I would suggest that people double
   check their
   local mobile data plans to ensure they don't get
   slugged for excessive
   download charges.

   Once again thanks, this is a great (xmas/holiday) present
   for many
   Android devs :-)

   Regards

   On Dec 7, 4:31 am, Romain Guy [EMAIL PROTECTED]
   wrote:
The Android Dev Phone 1 supports 3G in Europe. It
   depends on the
carrier, the country, etc. though. But it should work
   in most cases.

On Sat, Dec 6, 2008 at 3:21 AM, Paulo Sergio
   [EMAIL PROTECTED] wrote:
 Hi
 very nice news!!!

 2 questions:
 whats the band frenquency of the phone? will it
   have 3g in europe?
 from where is it shipped? if outside europe will
   be expensive to who live
 here

 ordering online is a huge help, but i'm just
   sad that a lot of country where
 left out! it's online, why do this??

 thanks,
 paulo

 On Sat, Dec 6, 2008 at 9:52 AM, Al Sutton
   [EMAIL PROTECTED] wrote:

 The development phones are an excellent and
   much needed help (especially
 since they are available in markets where the
   G1 currently isn't).

 And I'd personally like to give a BIG hug
   to whoever fixed installing
 apps via the browser from places such as
   AndAppStore in the new SDK
 release :) :) :).

 Nice work and well done all at Google.

 Al.
http://andappstore.com/

 Dan Morrill wrote:
  Hello, developers!  I wanted to call
   your attention to the new Android
  1.0 SDK, release 2 that we just made
   available.

  For full details, please see our blog
   post:

   http://android-developers.blogspot.com/2008/12/new-resources-for-deve...

  - Dan

--
Romain Guywww.curious-creature.org
 



-- 
Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Google Group Client Based Tech Support Specialist
Hazel Crest Illinois
[EMAIL PROTECTED]@[EMAIL PROTECTED]
Fear of a name, only increases fear of the thing itself.

--~--~-~--~~~---~--~~
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
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Weird Map Problem (Controlling same map)

2008-12-07 Thread Xavier Mathews

This Has Already Been Posted.

On 12/07/2008, Tom Gibara [EMAIL PROTECTED] wrote:


 I have a weird issue, which is probably easily solvable - but the
 cause is alluding me.

 I have two activities, one is created as an intent from the first
 activity. Each activity features a MapView.



 Only one MapActivity is supported per process. Multiple MapActivities
 running simultaneously are likely to interfere in unexpected and undesired
 ways.

 http://code.google.com/android/reference/com/google/android/maps/MapActivity.html

 



-- 
Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Google Group Client Based Tech Support Specialist
Hazel Crest Illinois
[EMAIL PROTECTED]@[EMAIL PROTECTED]
Fear of a name, only increases fear of the thing itself.

--~--~-~--~~~---~--~~
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
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: AuthenticationException when accessing Google Spreadsheets

2008-12-06 Thread Xavier Mathews

Google Spreadsheet On Android?

On 12/06/2008, schtieF [EMAIL PROTECTED] wrote:

 i also tried this with an older version of the android sdk, there was
 a hidden api in the android jar. but there was no authentication stuff
 see here

 http://www.anddev.org/google_data_apis-t2771.html

 now i'll try with the latest sdk if there is some additional api

 otherwise lets work directly with the http interface of google
 spreadsheat.

 On Nov 15, 3:50 am, Waldo [EMAIL PROTECTED] wrote:
 I'm having the same not verified problem myself.  Anyone come up
 with a solution?

 w

 On Oct 30, 6:28 am, atrus123 [EMAIL PROTECTED] wrote:

  Did you ever have any luck getting this to work?  I'm also interested
  in accessing Google Spreadsheets, but before I spend a bunch of man
  hours trying, I'd like to know if it's even possible.
 



-- 
Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Google Group Client Based Tech Support Specialist
Hazel Crest Illinois
[EMAIL PROTECTED]@[EMAIL PROTECTED]
Fear of a name, only increases fear of the thing itself.

--~--~-~--~~~---~--~~
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
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: ::CPU usage

2008-12-06 Thread Xavier Mathews

Yes it will depending on the processor speed of the device. 50% Is Alot.

On 12/06/2008, Mark Murphy [EMAIL PROTECTED] wrote:

 Imran wrote:
 Hi All...!!!

i have developed a small  game application... i have a
 problem... when i run the application  it is using 50% of CPU (mine is
 2Ghz processor )... will this create a problem in actual device..

 Possibly.

 The emulator is inefficient, in that it has to convert ARM instructions
 into x86 instructions for execution on your development PC. This adds a
 fair bit of overhead, which results in a higher-than-expected CPU
 utilization.

 However, it is very difficult to project how a certain CPU utilization
 on the development PC will translate into CPU utilization on a device.

 --
 Mark Murphy (a Commons Guy)
 http://commonsware.com
 _The Busy Coder's Guide to Android Development_ Version 1.9 Available!

 



-- 
Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Google Group Client Based Tech Support Specialist
Hazel Crest Illinois
[EMAIL PROTECTED]@[EMAIL PROTECTED]
Fear of a name, only increases fear of the thing itself.

--~--~-~--~~~---~--~~
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
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: The G1 (RC30) K-9 eMail client

2008-12-05 Thread Xavier Mathews

The problem was stated.

On 12/05/2008, Michael [EMAIL PROTECTED] wrote:

 Which problems exactly?
 



-- 
Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Google Group Client Based Tech Support Specialist
Hazel Crest Illinois
[EMAIL PROTECTED]@[EMAIL PROTECTED]
Fear of a name, only increases fear of the thing itself.

--~--~-~--~~~---~--~~
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
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Getting information from the Internet

2008-12-02 Thread Xavier Mathews

What Are You Talking About? If You Don't Know What Htp is Then Why Are
You Even In This Group! ANYWAYS

On 12/02/2008, Michael [EMAIL PROTECTED] wrote:

 Who's Code Would That Be? And what about the difference between http and
 htp
 is there a code for each one?

 See, now I'm starting to think you're a troll.  What is 'htp'?
 



-- 
Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Google Group Client Based Tech Support Specialist
Hazel Crest Illinois
[EMAIL PROTECTED]@[EMAIL PROTECTED]
Fear of a name, only increases fear of the thing itself.

--~--~-~--~~~---~--~~
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
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Getting information from the Internet

2008-12-02 Thread Xavier Mathews

Thats Nice.

On 12/02/2008, Michael [EMAIL PROTECTED] wrote:


 Heh.  Clearly a troll.
 



-- 
Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Google Group Client Based Tech Support Specialist
Hazel Crest Illinois
[EMAIL PROTECTED]@[EMAIL PROTECTED]
Fear of a name, only increases fear of the thing itself.

--~--~-~--~~~---~--~~
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
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Getting information from the Internet

2008-12-02 Thread Xavier Mathews

YOU NEED TO GO FIND YOU SOME BUSINESS.

On 12/02/2008, Xavier Mathews [EMAIL PROTECTED] wrote:
 Thats Nice.

 On 12/02/2008, Michael [EMAIL PROTECTED] wrote:


 Heh.  Clearly a troll.
 



 --
 Xavier A. Mathews
 Student/Browser Specialist/Developer/Web-Master
 Google Group Client Based Tech Support Specialist
 Hazel Crest Illinois
 [EMAIL PROTECTED]@[EMAIL PROTECTED]
 Fear of a name, only increases fear of the thing itself.



-- 
Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Google Group Client Based Tech Support Specialist
Hazel Crest Illinois
[EMAIL PROTECTED]@[EMAIL PROTECTED]
Fear of a name, only increases fear of the thing itself.

--~--~-~--~~~---~--~~
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
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: ice-e on Android?

2008-12-02 Thread Xavier Mathews

But Keep In Mind There Are Diffrent Java's One Of Them May Work i.e If
Compatiable It Is Need To Match The API i.e And What Ever Format But
Android Has It Own Interface So When It Come Down To It You Can
Try But It May Not Work!

On 12/02/2008, Michael [EMAIL PROTECTED] wrote:


 By default, that J2SE application would not run at all on Android,
 since it doesn't support native Java classes - all Android apps are
 run in a Dalvik virtual machine, so must be converted to DEX format.
 Not to mention that Android has its own GUI interface, which is not
 the standard stuff used for desktop applications...

 So you're probably out of luck.

 - michael
 



-- 
Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Google Group Client Based Tech Support Specialist
Hazel Crest Illinois
[EMAIL PROTECTED]@[EMAIL PROTECTED]
Fear of a name, only increases fear of the thing itself.

--~--~-~--~~~---~--~~
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
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Error generating final archive: null

2008-12-02 Thread Xavier Mathews
Can You Provide Us With A Link Or Error MSG? Plug in Maker Or Add-on Maker
And Tell You Exactly What You Did When Saving And Where You Archived It!

Thank You!

Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Google Group Client Based Tech Support Specialist
Hazel Crest Illinois
[EMAIL PROTECTED]@[EMAIL PROTECTED]
Fear of a name, only increases fear of the thing itself.










On Tue, Dec 2, 2008 at 12:23 PM, Ralf [EMAIL PROTECTED] wrote:


 Could you give us a bit more details?
 - Which number is the ADT plugin ? (eclipse  help  about eclipse 
 plugins)
 - What are the exact steps you do to get this error? E.g. right-click
 and context menu somewhere, and are you clicking one of the links or
 buttons and which view is currently open.

 Thanks in advance,
 R/

 On Tue, Nov 18, 2008 at 7:16 PM, Alam [EMAIL PROTECTED] wrote:
 
  When I save the manifest file I get
 
  [2008-11-18 22:13:18 - DeleteMe] Error generating final archive: null
 
  I am using Eclipse Ganymede on Ubuntu 8.04.
  Any ideas why I am getting this error.
 
  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
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: ice-e on Android?

2008-12-02 Thread Xavier Mathews

So Even If He Writes It Still Won't Run The Java Right?

On 12/02/2008, Michael [EMAIL PROTECTED] wrote:

 On Dec 2, 12:44 pm, Xavier Mathews [EMAIL PROTECTED] wrote:
 But Keep In Mind There Are Diffrent Java's One Of Them May Work i.e If
 Compatiable It Is Need To Match The API i.e And What Ever Format But
 Android Has It Own Interface So When It Come Down To It You Can
 Try But It May Not Work!

 No, you don't seem to understand.  Android cannot run compiled class
 files from any java without having them be converted to the Dalvik
 format, since it runs everything in the Dalvik virtual machine.  And
 this only really works for libraries.

 Ultimately, you wouldn't have a working application unless you write
 it specifically for the Android SDK.

 - michael
 



-- 
Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Google Group Client Based Tech Support Specialist
Hazel Crest Illinois
[EMAIL PROTECTED]@[EMAIL PROTECTED]
Fear of a name, only increases fear of the thing itself.

--~--~-~--~~~---~--~~
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
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Getting information from the Internet

2008-12-02 Thread Xavier Mathews

It Was Of Substance! So...

On 12/02/2008, loty [EMAIL PROTECTED] wrote:

 Yes Xavier,
 Please stop posting if you have nothing of substance to say.

 On Dec 2, 12:21 pm, Xavier Mathews [EMAIL PROTECTED] wrote:
 YOU NEED TO GO FIND YOU SOME BUSINESS.

 On 12/02/2008, Xavier Mathews [EMAIL PROTECTED] wrote:



  Thats Nice.

  On 12/02/2008, Michael [EMAIL PROTECTED] wrote:

  Heh.  Clearly a troll.

  --
  Xavier A. Mathews
  Student/Browser Specialist/Developer/Web-Master
  Google Group Client Based Tech Support Specialist
  Hazel Crest Illinois
  [EMAIL PROTECTED]@[EMAIL PROTECTED]
  Fear of a name, only increases fear of the thing itself.

 --
 Xavier A. Mathews
 Student/Browser Specialist/Developer/Web-Master
 Google Group Client Based Tech Support Specialist
 Hazel Crest Illinois
 [EMAIL PROTECTED]@[EMAIL PROTECTED]
 Fear of a name, only increases fear of the thing itself.
 



-- 
Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Google Group Client Based Tech Support Specialist
Hazel Crest Illinois
[EMAIL PROTECTED]@[EMAIL PROTECTED]
Fear of a name, only increases fear of the thing itself.

--~--~-~--~~~---~--~~
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
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: G1 Linux

2008-12-02 Thread Xavier Mathews

Why Did You Say That?

On 12/02/2008, Eric Mill [EMAIL PROTECTED] wrote:

 This has been an awesome thread.

 On Dec 1, 5:33 pm, Xavier Mathews [EMAIL PROTECTED] wrote:
 So that means the G1 Does!

 Xavier A. Mathews
 Student/Browser Specialist/Developer/Web-Master
 Google Group Client Based Tech Support Specialist
 Hazel Crest Illinois
 [EMAIL PROTECTED]@[EMAIL PROTECTED]
 Fear of a name, only increases fear of the thing itself.

 On Mon, Dec 1, 2008 at 4:31 PM, Jean-Baptiste Queru [EMAIL PROTECTED]
 wrote:

  Android is and has always been built on top of Linux.

  JBQ

  On Mon, Dec 1, 2008 at 2:30 PM, Xavier Live Tech.S
  [EMAIL PROTECTED] wrote:

   Will G1 be running Linux like Iphone anytime soon?
 



-- 
Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Google Group Client Based Tech Support Specialist
Hazel Crest Illinois
[EMAIL PROTECTED]@[EMAIL PROTECTED]
Fear of a name, only increases fear of the thing itself.

--~--~-~--~~~---~--~~
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
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: flash player

2008-12-02 Thread Xavier Mathews
Yeah just full html browser so even with flash you can't watch vids on
youtube etc untill upgraded browser that supports flash!

Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Google Group Client Based Tech Support Specialist
Hazel Crest Illinois
[EMAIL PROTECTED]@[EMAIL PROTECTED]
Fear of a name, only increases fear of the thing itself.










On Tue, Dec 2, 2008 at 5:30 PM, Mark Murphy [EMAIL PROTECTED] wrote:


 bryan wrote:
  How do I get a flash player on this phone it never let's me download
  one

 There is no Flash player as yet, though apparently one is in the works.

 --
 Mark Murphy (a Commons Guy)
 http://commonsware.com
 _The Busy Coder's Guide to Android Development_ Version 1.9 Available!

 


--~--~-~--~~~---~--~~
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
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Music file format supported by Android

2008-12-02 Thread Xavier Mathews
Dave just gave us a full list!

Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Google Group Client Based Tech Support Specialist
Hazel Crest Illinois
[EMAIL PROTECTED]@[EMAIL PROTECTED]
Fear of a name, only increases fear of the thing itself.










On Tue, Dec 2, 2008 at 5:30 PM, Mark Murphy [EMAIL PROTECTED] wrote:


 Jatin wrote:
  Hello,
   Can u please let me know the list of the Music file format supported
  by Android and the Music Player supported by Android.

 MP3 and OGG, perhaps others.

 --
 Mark Murphy (a Commons Guy)
 http://commonsware.com
 _The Busy Coder's Guide to Android Development_ Version 1.9 Available!

 


--~--~-~--~~~---~--~~
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
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: market problem

2008-12-02 Thread Xavier Mathews

Oh that sucks sorry to hear.

On 12/02/2008, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:

 Because It said this app is out of date I resigned my app with
 another key and then since I couldnt upload the file again I deleted
 and remade the app. Still wont let me publish however.

 On Dec 2, 9:26 pm, Xavier Mathews [EMAIL PROTECTED] wrote:
 why did you all delete them?

 On 12/02/2008, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:



  Right there with ya buddy - just wasted my droidftp app trying to
  publish a new version. WTF

  On Dec 2, 7:51 pm, jacek [EMAIL PROTECTED] wrote:
  I just tried to upgrade my app (nyt.flix -- for browsing The New York
  Times Movie Reviews) to a subsequent higher version using the usual
  mechanism that so far has worked. Today, however, nothing happens
  after I click publish. Worse, the application has disappeared from
  the market altogether (it used to be in the Entertainment area)
  and was first published a week ago. Anybody knows what's going on?

 --
 Xavier A. Mathews
 Student/Browser Specialist/Developer/Web-Master
 Google Group Client Based Tech Support Specialist
 Hazel Crest Illinois
 [EMAIL PROTECTED]@[EMAIL PROTECTED]
 Fear of a name, only increases fear of the thing itself.
 



-- 
Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Google Group Client Based Tech Support Specialist
Hazel Crest Illinois
[EMAIL PROTECTED]@[EMAIL PROTECTED]
Fear of a name, only increases fear of the thing itself.

--~--~-~--~~~---~--~~
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
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: market problem

2008-12-02 Thread Xavier Mathews

Did anybody post it in the issue tracker?

On 12/02/2008, Waterflea [EMAIL PROTECTED] wrote:

 I'm having the same problem I think. I just 'unpublished' two of my
 app that I tried to update. The Developer Console just says 'Saved
 Draft.
 Are you having the same problems?

 On Dec 2, 9:43 pm, Xavier Mathews [EMAIL PROTECTED] wrote:
 Oh that sucks sorry to hear.

 On 12/02/2008, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:





  Because It said thisappis out of date I resigned myappwith
  another key and then since I couldnt upload the file again I deleted
  and remade theapp. Still wont let mepublishhowever.

  On Dec 2, 9:26 pm, Xavier Mathews [EMAIL PROTECTED] wrote:
  why did you all delete them?

  On 12/02/2008, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:

   Right there with ya buddy - just wasted my droidftpapptrying to
  publisha new version. WTF

   On Dec 2, 7:51 pm, jacek [EMAIL PROTECTED] wrote:
   I just tried to upgrade myapp(nyt.flix -- for browsing The New York
   Times Movie Reviews) to a subsequent higher version using the usual
   mechanism that so far has worked. Today, however, nothing happens
   after I click publish. Worse, the application has disappeared from
   the market altogether (it used to be in the Entertainment area)
   and was first published a week ago. Anybody knows what's going on?

  --
  Xavier A. Mathews
  Student/Browser Specialist/Developer/Web-Master
  Google Group Client Based Tech Support Specialist
  Hazel Crest Illinois
  [EMAIL PROTECTED]@[EMAIL PROTECTED]
  Fear of a name, only increases fear of the thing itself.

 --
 Xavier A. Mathews
 Student/Browser Specialist/Developer/Web-Master
 Google Group Client Based Tech Support Specialist
 Hazel Crest Illinois
 [EMAIL PROTECTED]@[EMAIL PROTECTED]
 Fear of a name, only increases fear of the thing itself.
 



-- 
Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Google Group Client Based Tech Support Specialist
Hazel Crest Illinois
[EMAIL PROTECTED]@[EMAIL PROTECTED]
Fear of a name, only increases fear of the thing itself.

--~--~-~--~~~---~--~~
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
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: XML parsing prob

2008-12-02 Thread Xavier Mathews

I Believe This Is In The Archives.

On 12/02/2008, eyedol [EMAIL PROTECTED] wrote:

 Can't figure out how to achieve this. I was to get the values for the
 tag thumb it works fine if the thumb tag shows once, but if it
 increases, I get an exception thrown. Exception
 java.lang.IndexOutOfBoundsException: Invalid location 1, size is 1

 Sample xml
 response

 payload

 jobs

 job0

 job
 jobid1/jobid
 jobtitleThe book/jobtitle

 jobdescription
 An enterprise or desktop gateway that connects data sources to mobile
 networks. Intelligent routing can map messages via GSM modems or SMPP
 connections to the lowest-cost delivery channel. Routing by service
 and content provider is also configurable. Offline versions for off-
 net delivery via modems is available.
 /jobdescription
 locationid1/locationid
 locationnameAddis/locationname
 categoryid2/categoryid
 categorytitleWhite Color/categorytitle
 /job

 media

 mediaitem0
 id1/id
 title/
 type1/type
 thumb1_1_12277.jpg/thumb
 /mediaitem0

 mediaitem1
 id8/id
 title/
 type1/type
 thumb1_1_12282.jpg/thumb
 /mediaitem1
 /media
 /job0
 /jobs
 /payload

 error
 code0/code
 messageNo Error/message
 /error
 /response

 The Java code to fetch the values
 ...
 NodeList thumbnails = doc.getElementsByTagName(thumb);

   for (int i=0;i thumbnails.getLength();i++) {

   Element thumbnail= (Element) thumbnails.item(i);
   Job job = jobs.get(i);
   t +=thumbnail.getFirstChild().getNodeValue()+,;
   Job.setThumbnail(t);
   }
 ...

 All I want to achieve is get the values for the thumb tag. What am I
 doing wrong and how do I achieve that.
 



-- 
Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Google Group Client Based Tech Support Specialist
Hazel Crest Illinois
[EMAIL PROTECTED]@[EMAIL PROTECTED]
Fear of a name, only increases fear of the thing itself.

--~--~-~--~~~---~--~~
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
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Testing application

2008-12-02 Thread Xavier Mathews

Yes It Can Be Tested Once Uploaded Approved  Downloaded Via Network
Or USB. Then It Can Be Tested On A Selected Android Ran Device!

On 12/02/2008, indiabolbol.com [EMAIL PROTECTED] wrote:

 I am interested in how the developers tested the application before
 putting the application on the android market. I know it can be tested
 on the device, but what about testing on the real device.

 In other words, if I have the real device can I upload the application
 to the device and perform the test? If so, how do I connect my
 development environment to real device, rather than the emulator.
 



-- 
Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Google Group Client Based Tech Support Specialist
Hazel Crest Illinois
[EMAIL PROTECTED]@[EMAIL PROTECTED]
Fear of a name, only increases fear of the thing itself.

--~--~-~--~~~---~--~~
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
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: market problem

2008-12-02 Thread Xavier Mathews

So let me get this stright.all of you all have created a
appand because android has updated your apps have became outdated
and can not be updated and uploaded. So now you must go through the
trouble of recreating your app. Right?

On 12/02/2008, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:

 This is starting to annnoy me. I didnt spend all day coding bug fixes
 etc to lose my app and not be able to upload a new version.

 On Dec 2, 11:59 pm, joshv [EMAIL PROTECTED] wrote:
 Same thing happened to me.  I still have the original app id entry in
 the developer console, but all of the ratings are gone, I can't
 publish it, and it's not in the store any longer.  All I tried to do
 was upload a newer version with a new icon.  Let's hope somebody will
 restore my app.

 On Dec 2, 6:51 pm, jacek [EMAIL PROTECTED] wrote:

  I just tried to upgrade my app (nyt.flix -- for browsing The New York
  Times Movie Reviews) to a subsequent higher version using the usual
  mechanism that so far has worked. Today, however, nothing happens
  after I click publish. Worse, the application has disappeared from
  the market altogether (it used to be in the Entertainment area)
  and was first published a week ago. Anybody knows what's going on?


 



-- 
Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Google Group Client Based Tech Support Specialist
Hazel Crest Illinois
[EMAIL PROTECTED]@[EMAIL PROTECTED]
Fear of a name, only increases fear of the thing itself.

--~--~-~--~~~---~--~~
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
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: How about making an internet-less GPS system?

2008-12-01 Thread Xavier Mathews

No Problem :)

On 12/01/2008, Fred Grott(shareme) [EMAIL PROTECTED] wrote:

 Thank you Xavier I did not realize that ..it helps me in my Loopt
 clone for Android :)

 On Nov 30, 7:28 pm, Xavier Mathews [EMAIL PROTECTED] wrote:
 You Download The Whole Map It Will Work It Also Works With Your GPS.
 Great On BlackBerrys!

 On 11/30/2008, joshv [EMAIL PROTECTED] wrote:





  Xavier, I think the point is to have something that works even when
  data networks are not available.  Google Maps won't work without a
  data network.

  -josh

  On Nov 30, 3:55 pm, Xavier Mathews [EMAIL PROTECTED] wrote:
  But there is also Google Maps on the phones!

  Xavier A. Mathews
  Student/Browser Specialist/Developer/Web-Master
  Google Group Client Based Tech Support Specialist
  Hazel Crest Illinois
  [EMAIL PROTECTED]@[EMAIL PROTECTED]
  Fear of a name, only increases fear of the thing itself.

  On Sun, Nov 30, 2008 at 12:28 AM, Vendetta [EMAIL PROTECTED]
  wrote:

   Just as normal GPS systems, how about having local area maps saved
   onto the micro SD instead of having to use google maps via internet?

   For instance, I'm lost and somehow 3g doesn't work and I don't have
   any other type of internet access. Wham! I'll use my offline normal
   GPS system!

   I think this app would be awesome, be sure to make one for Dallas, TX
   first! 3

 --
 Xavier A. Mathews
 Student/Browser Specialist/Developer/Web-Master
 Google Group Client Based Tech Support Specialist
 Hazel Crest Illinois
 [EMAIL PROTECTED]@[EMAIL PROTECTED]
 Fear of a name, only increases fear of the thing itself.
 



-- 
Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Google Group Client Based Tech Support Specialist
Hazel Crest Illinois
[EMAIL PROTECTED]@[EMAIL PROTECTED]
Fear of a name, only increases fear of the thing itself.

--~--~-~--~~~---~--~~
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
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Is there any documentation of RIL layer architecture in android

2008-12-01 Thread Xavier Mathews
http://www.mail-archive.com/android-developers@googlegroups.com/msg12887.html

Other than this i don't think sonot yet!

Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Google Group Client Based Tech Support Specialist
Hazel Crest Illinois
[EMAIL PROTECTED]@[EMAIL PROTECTED]
Fear of a name, only increases fear of the thing itself.










On Mon, Dec 1, 2008 at 3:38 AM, sunil kumar [EMAIL PROTECTED] wrote:

 RIL layer in 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
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Wifi Ip Address

2008-12-01 Thread Xavier Mathews
IP Address?

Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Google Group Client Based Tech Support Specialist
Hazel Crest Illinois
[EMAIL PROTECTED]@[EMAIL PROTECTED]
Fear of a name, only increases fear of the thing itself.










On Mon, Dec 1, 2008 at 4:49 AM, Andrea [EMAIL PROTECTED] wrote:


 How can I get the Ip address assigned by a WiFi network to which my
 device is connected?
 


--~--~-~--~~~---~--~~
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
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: mp3s for games?

2008-12-01 Thread Xavier Mathews
Was there any other phone you wanted to do this for?

Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Google Group Client Based Tech Support Specialist
Hazel Crest Illinois
[EMAIL PROTECTED]@[EMAIL PROTECTED]
Fear of a name, only increases fear of the thing itself.










On Mon, Dec 1, 2008 at 11:21 AM, Dave Sparks [EMAIL PROTECTED]wrote:


 Decoding a single MP3 for a background audio track is not too bad. On
 the G1, OGG is a better format, less memory overhead and startup
 latency, plus you get seamless looping which MP3 does not do.

 I don't recommend using compressed audio like MP3 or OGG if you have
 lots of sound effects, because of the CPU overhead in decompressing
 them.

 On Nov 27, 10:18 am, Craig [EMAIL PROTECTED] wrote:
  I'm making a game, and I have an mp3 I would like to use to play in a
  loop for this game. This mp3 is several times larger than a midi file
  would be, but recreating my mp3 as a midi has proven to be a non-
  trivial task.
 
  What would the effects be of just using an mp3 of a few hundred kb in
  size instead of a midi file of around 10kb in size? I.e., would
  downloading the larger game be much of an issue? Would there be any
  significant penalties in performance or resource usage?
 


--~--~-~--~~~---~--~~
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
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: ice-e on Android?

2008-12-01 Thread Xavier Mathews
Possible yes but with runner i don't think so!

Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Google Group Client Based Tech Support Specialist
Hazel Crest Illinois
[EMAIL PROTECTED]@[EMAIL PROTECTED]
Fear of a name, only increases fear of the thing itself.










On Mon, Dec 1, 2008 at 7:28 AM, supernova [EMAIL PROTECTED] wrote:


 Is ist possible to run Ice-e on Android? Maybe with J2ME MIDP Runner?

 


--~--~-~--~~~---~--~~
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
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Wifi Ip Address

2008-12-01 Thread Xavier Mathews
I am nt sure you can change it. Which IP?

Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Google Group Client Based Tech Support Specialist
Hazel Crest Illinois
[EMAIL PROTECTED]@[EMAIL PROTECTED]
Fear of a name, only increases fear of the thing itself.










On Mon, Dec 1, 2008 at 12:22 PM, Ed [EMAIL PROTECTED] wrote:


 You could use the browser to access sites like
 http://www.showipaddress.com/

 On Dec 1, 12:18 pm, Andrea [EMAIL PROTECTED] wrote:
  Yes, the ip address that the dhcp server of a wifi net assigns to my
  device.
 
  Xavier Mathews wrote:
   IP Address?
 
   Xavier A. Mathews
   Student/Browser Specialist/Developer/Web-Master
   Google Group Client Based Tech Support Specialist
   Hazel Crest Illinois
   [EMAIL PROTECTED] [EMAIL PROTECTED] [EMAIL PROTECTED]
   Fear of a name, only increases fear of the thing itself.
 
   On Mon, Dec 1, 2008 at 4:49 AM, Andrea [EMAIL PROTECTED]
 wrote:
 
How can I get the Ip address assigned by a WiFi network to which my
device is connected?
 
 
 


--~--~-~--~~~---~--~~
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
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Parsing RSS feeds, encoding problems

2008-12-01 Thread Xavier Mathews
Ok Great!

Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Google Group Client Based Tech Support Specialist
Hazel Crest Illinois
[EMAIL PROTECTED]@[EMAIL PROTECTED]
Fear of a name, only increases fear of the thing itself.










On Mon, Dec 1, 2008 at 12:58 AM, ChisterNordvik [EMAIL PROTECTED] wrote:


 It's been added:
 http://code.google.com/p/android/issues/detail?id=1398

 -Christer

 On 1 Des, 01:55, Xavier Mathews [EMAIL PROTECTED] wrote:
  Same Problem Here. Post It In The Issue Tracker!
 
  On 11/30/2008, [EMAIL PROTECTED] [EMAIL PROTECTED]
 wrote:
 
 
 
 
 
   Yes, I have also encountered the same problem. Any suggestions?
 
   On Nov 30, 10:53 pm, ChisterNordvik [EMAIL PROTECTED] wrote:
   Hi!
 
   Does anyone have a workingRSSparser with Android? I tried doing
   simple DOM parsing of the XML but the character encoding isn't handled
   properly so the norwegian characters aren't displayed. I have tried
   everything but when I get the description element I just get the text
   until the norwegian character. Any sample code of parsing
   internationalRSSfeeds would be very welcome!
 
   Here is the feed that I am having problems
   with:http://www.dagbladet.no/rss/fotball/
 
   -Christer
 
   Sample code that I started out with (have tried lots of encoding
   tricks to no avail):
 
   Feed feed = createFeed(this,
   new
   java.net.URI(http://www.dagbladet.no/rss/fotball/;));
   ...
   public Feed createFeed(Context ctx, URI rssurl) {
   Feed feed = new Feed();
   try {
DocumentBuilder builder =
 
DocumentBuilderFactory.newInstance().newDocumentBuilder();
Document doc =
   builder.parse(rssurl.toURL().openStream());
 
NodeList nodes =
 doc.getElementsByTagName(item);
for (int i = 0; i  nodes.getLength(); i++) {
  Element element = (Element) nodes.item(i);
 
  NodeList title =
   element.getElementsByTagName(title);
  Element line = (Element) title.item(0);
 
  String feedTitle =
   getCharacterDataFromElement(line);
  String url = getCharacterDataFromElement
   (element.getElementsByTagName(link).item(0));
  Article art = new Article();
  art.title = feedTitle;
  art.url = url;
  art.description = getCharacterDataFromElement
   (element.getElementsByTagName(description).item(0));
  feed.articles.add(art);
 
}
  }
  catch (Exception e) {
 e.printStackTrace();
  }
  return feed;
   }
   public static String getCharacterDataFromElement(Node e) {
  Node child = e.getFirstChild();
  if(child == null)
  return ?;
  if (child instanceof CharacterData) {
CharacterData cd = (CharacterData) child;
  return cd.getData();
}
  return ?;
}
 
  --
  Xavier A. Mathews
  Student/Browser Specialist/Developer/Web-Master
  Google Group Client Based Tech Support Specialist
  Hazel Crest Illinois
  [EMAIL PROTECTED]@[EMAIL PROTECTED]
  Fear of a name, only increases fear of the thing itself.
 


--~--~-~--~~~---~--~~
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
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: How to enable screen transition when launching Activity

2008-12-01 Thread Xavier Mathews
This needs to go to the issue tracker!

Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Google Group Client Based Tech Support Specialist
Hazel Crest Illinois
[EMAIL PROTECTED]@[EMAIL PROTECTED]
Fear of a name, only increases fear of the thing itself.










On Sun, Nov 30, 2008 at 4:45 PM, Jeremy Bornstein [EMAIL PROTECTED] wrote:


 A relevant question might be: if an external developer contributed
 high-quality inter-activity transition code to the open source Android
 codebase, would it be likely to be accepted?

 I do not believe that such a feature is covered by any patents, but it
 may be relevant that Google CEO Eric Schmidt is reportedly good
 friends with Apple CEO Steve Jobs, and Schmidt sits on Apple's board.
 It does not seem totally out of the question that these relationships
 would result in certain features being missing from Android for
 reasons which are not strictly in the interests of people using the
 Android platform.


 On Sun, Nov 30, 2008 at 11:43:24AM -0500, Dave Kong wrote:
  Will it be? Is it disabled due to possible bug or patent issues?
 
  On Sun, Nov 30, 2008 at 12:59 AM, Dianne Hackborn [EMAIL PROTECTED]
 wrote:
 
   Inter-activity transitions are not supported at this point, sorry.
  
   On Tue, Nov 25, 2008 at 11:51 PM, Tomei Ningen [EMAIL PROTECTED]
 wrote:
  
  
   This question was asked before
  
  
 http://groups.google.com/group/android-developers/browse_thread/thread/d5baa0831af53d80?q=android+G1+screen+transition#8cb9752ead82d2eb
  
   but I'll ask it again :-)
  
   On earlier Android SDK, when you are in home screen, and you launch an
   app (like Contacts), there's an iphone-like transition effect, where
   the new app is zoomed out.
  
   On G1 phone, this is disabled (probably due to poor performance). Is
   there anyway to turn it back on?
  
   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
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: searchs in Android

2008-12-01 Thread Xavier Mathews
How To Search Using Android?
Search On Android?
Search In Android?

Which One? I am not understanding the question!

Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Google Group Client Based Tech Support Specialist
Hazel Crest Illinois
[EMAIL PROTECTED]@[EMAIL PROTECTED]
Fear of a name, only increases fear of the thing itself.










On Mon, Dec 1, 2008 at 10:58 AM, Peterman [EMAIL PROTECTED] wrote:


 Hi

 Someone know how to do a search in android? I would like make a search
 that it give me the coordenates of the locations founded. I heard
 about the class Geocoder but I don't know to use it or it this class
 is the solution.


 thanks 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
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: How to draw an image on top of another drawable?

2008-12-01 Thread Xavier Mathews
Yeah you can't do that even with xml when the program was written it was
scripted somewhere in there so its kinda like blocking and other abnormal
adjustments to itself from and user or program exe. The only way to do this
would be too rewrite it on windows platform or hack it using a unblocking
code for the script embedded!

Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Google Group Client Based Tech Support Specialist
Hazel Crest Illinois
[EMAIL PROTECTED]@[EMAIL PROTECTED]
Fear of a name, only increases fear of the thing itself.










On Mon, Dec 1, 2008 at 1:42 AM, Romain Guy [EMAIL PROTECTED] wrote:


 You have to use a LayerDrawable but it can be used only from XML (for
 now.) You can also simply create your own Drawable, it's pretty easy.

 On Sun, Nov 30, 2008 at 11:40 PM, Kakyoin [EMAIL PROTECTED] wrote:
 
  Hi.
 
  I'm playing with the Home sample (the one that is bundled with the
  SDK)
 
  I can change the Home screen background using this:
 
 
  getWindow().setBackgroundDrawable(image_mountain);
 
  Now I have a mountain as a background of my Home screen.
 
  Now let's assume I have a picture of a moon. (image_moon)
 
 
 
  Question: Is it possible to...
 
  1. programmatically put the moon on my mountain image.
  2. then set the new drawable: Mountain with the Moon on top as my
  Home screen background?
 
  I've explored the LayerDrawable class but it doesn't seem to solve my
  problem.
 
  Thank you in advance.
 
 
  
 



 --
 Romain Guy
 www.curious-creature.org

 


--~--~-~--~~~---~--~~
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
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Theme setting for all applications

2008-12-01 Thread Xavier Mathews
Well It Was Not About Open Source at first but now it is. Still Android is
an open source!

Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Google Group Client Based Tech Support Specialist
Hazel Crest Illinois
[EMAIL PROTECTED]@[EMAIL PROTECTED]
Fear of a name, only increases fear of the thing itself.










On Mon, Dec 1, 2008 at 1:12 PM, Dianne Hackborn [EMAIL PROTECTED] wrote:

 Btw, discussion about modifying the open-source platform should be moved to
 one of the open-source groups.


 On Mon, Dec 1, 2008 at 11:09 AM, Dianne Hackborn [EMAIL PROTECTED]wrote:

 You can modify any of the resources however you want if you are rebuilding
 the system.  These will be used without having to do anything.

 Note that we are calling this skinning and generally does NOT involve
 modifying theme resources; theme resources are used by applications to
 specify the specific theme they want (dark background, light background,
 dialog, etc).  Changing the global look of the UI will usually involve just
 changing the resources for things like the button image, screen background,
 etc.


 On Mon, Dec 1, 2008 at 8:00 AM, Paul Anders [EMAIL PROTECTED]wrote:


 Thanks for the reply:)I understand that at this point there is no
 support for theme switch application which enables an end-user to choice
 theme from multiple themes like Windows OS I am looking forward to this
 feature to be delivered from Google.

 On the other hand, even if we cannot switch themes, I would like to try
 to modify default theme. Is it possible to do this by modifying themes.xml
 in the Android open source /frameworks/base/core/res/res/values directory
 and then making a build to create emulator?

 In addition to this, I found themes.xml and other resources
 in tools/lib/res/default/values in the Android SDK toolkit directory. I
 changed this xml file and other png files in drawable folder, but nothing
 changes in Android emulator... Why? Is there something else to do this?

 Regards,
 /Paul

 2008/12/1 Dianne Hackborn [EMAIL PROTECTED]

 There is some architecture work done for this, but a fair amount
 remaining.  At this point finishing the work is not scheduled on the
 roadmap.


 On Sun, Nov 30, 2008 at 4:31 PM, E [EMAIL PROTECTED] wrote:


 I'd like to know about full-OS themes too. It looks like (from the
 developer's kit) that such a thing is already supported in the backend
 (why wouldn't it be, right?), but there doesn't appear to be a system-
 level app that will manage or switch between theme configs.

 If this truly isn't available yet, when will it be?
 thanks,

  -Ethan

 On Nov 22, 11:58 pm, Paul Anders [EMAIL PROTECTED] wrote:
  Hello,
 
  I would like to ask you about how to change application theme. In
 case of
  application-specific theme, it is possible to change theme by asking
 your
  Activity to call setTheme(int theme). On the other hand, how can we
 change
  theme applicable to all applications which does not have their own
 theme? As
  you know, Windows OS has a theme setting which can be changed by an
 end-user
  in the display property of control panel. Does android platform
 support this
  feature?
 
  If Android platform does not support theme setting, I have the
 following
  solutions from developer point of view.
(1) Modify themes.xml provided by Android framework as default, and
 then
  make a build.
  (/frameworks/base/core/res/res/values/themes.xml)
(2) Change Android open source code to add new APIs for changing
 theme for
  all applications.
 
  Is there any other better solution to change theme for all
 applications?
 
  Regards,
  /Paul




 --
 Dianne Hackborn
 Android framework engineer
 [EMAIL PROTECTED]

 Note: please don't send private questions to me, as I don't have time to
 provide private support.  All such questions should be posted on public
 forums, where I and others can see and answer them.










 --
 Dianne Hackborn
 Android framework engineer
 [EMAIL PROTECTED]

 Note: please don't send private questions to me, as I don't have time to
 provide private support.  All such questions should be posted on public
 forums, where I and others can see and answer them.




 --
 Dianne Hackborn
 Android framework engineer
 [EMAIL PROTECTED]

 Note: please don't send private questions to me, as I don't have time to
 provide private support.  All such questions should be posted on public
 forums, where I and others can see and answer them.


 


--~--~-~--~~~---~--~~
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
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Exchanging Messages between services containing Bundles with self developed Parcelables

2008-12-01 Thread Xavier Mathews
You Can't Reprogram it...What are you trying to do?

Xavier A. Mathews
Student/Browser Specialist/Developer/Web-Master
Google Group Client Based Tech Support Specialist
Hazel Crest Illinois
[EMAIL PROTECTED]@[EMAIL PROTECTED]
Fear of a name, only increases fear of the thing itself.










On Mon, Dec 1, 2008 at 10:24 AM, nimbus83 [EMAIL PROTECTED] wrote:


 Hello,

 It try to exchange objects of type android.os.Message between services
 in different processes. I add a bundle to each message. This bundle
 contains MyMessage object, which implements the Parcelable interface.

 I do it like this:
 Message message = new Message();

 Bundle bundle = new Bundle();
 MyMessage myMessage = new MyMessage(this is some info, 0);
 bundle.putParcelable(message, myMessage);

 message.setData(bundle);

 The code gets compiled, but at runtime I get the following error:
 android.  Class not found when unmarshalling:
 de.android.examples.handler.probe1.messages.MyMessage


 


--~--~-~--~~~---~--~~
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
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



  1   2   >