[android-developers] Call tab_indicator.xml from styles.xml

2011-11-15 Thread Ivan Soto
Hello,

I'm trying to create a custom theme without relying in classes. Something 
that is easy enough to plug into an app. My problem is that the TabWidget 
in styles.xml doesn't reference tab_indicator.xml anywhere so I can't see a 
way of using a custom style unless I call the style from the layout file or 
the activity using the tab widget.

This is the only reference I see in styles.xml

style name=Widget.TabWidget
item 
name=android:textAppearance@style/TextAppearance.Widget.TabWidget/item
item name=ellipsizemarquee/item
item name=singleLinetrue/item
/style

Any ideas?

-- 
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: ViewPager in honeycomb ignoring Application theme.

2011-11-02 Thread Ivan Soto
Anyone?

I checked today again, and everything looks in order. Yet, whatever I load 
inside a ViewPager ignores the application theme.

I'm using Android 3.1 with compatibility package v4.

-- 
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] ViewPager in honeycomb ignoring Application theme.

2011-11-01 Thread Ivan Soto
Hello,

For some reason my application is ignoring the theme applied to the 
Application in the manifest file only inside a viewpager.

I have an activity with 2 fragments:

application 
android:icon=@drawable/ic_launcher 
android:label=@string/app_name 
android:theme=@android:style/Theme.Holo.Light 
android:hardwareAccelerated=true

The first fragment loads Holo.light just fine. But the second only applied 
Holo.Light on the button (which is outside the viewpager). Whatever I load 
using the ViewPager, it defaults to Holo.

This is the second fragment:


?xml version=1.0 encoding=utf-8? 
LinearLayout xmlns:android=http://schemas.android.com/apk/res/android; 
android:layout_width=match_parent 
android:layout_height=match_parent 
android:orientation=vertical  
Button 
android:id=@+id/button1 
android:layout_width=wrap_content 
android:layout_height=wrap_content 
android:text=Button / 
android.support.v4.view.ViewPager 
android:id=@+id/awesomepager 
android:layout_width=match_parent 
android:layout_height=match_parent / 
/LinearLayout


By the way, this is on Android 3.1.
Any ideas?


Thanks!

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] ADT14 and Library projects as Jars

2011-10-25 Thread Ivan Soto
I've been looking around for an answer and had no luck.

ADT14 mentions that library projects will be compiled into a jar, so I've 
been trying to figure out how I can manually compile the library into a jar 
and distribute it to my team, but I think I can't.
Why is that?

Thanks.

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] One click Run App

2009-07-07 Thread Ivan Soto
Hi,

This may not be related to the Android SDK, but it will surely help me and
maybe others.
On Eclipse, I usually make a Run Configuration so then I can just right
click on the project and select Run as Android App and it runs however I
want but I was wondering if there's a way to make the green Run button just
run the project you are working on. (One click, plain simple)

This question may seem stupid, but I really want to know.

Thanks!

Ivan Soto Fernandez
Web Developer
http://ivansotof.com

--~--~-~--~~~---~--~~
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] Download progress

2009-06-17 Thread Ivan Soto
Hi, I'm trying to make my app display a download progress for bigger files.
But I can't figure how to make it work properly.The data is an image I plan
to set up as wallpaper

Does anyone has an example of this?

Thanks!!



 URL url = new URL(address1);

HttpURLConnection uc = (HttpURLConnection) url.openConnection();

InputStream is = (InputStream)uc.getContent();

int progress = 0;



int leng = uc.getContentLength();

byte[] bytes = new byte[20480];

byte[] content = new byte[leng];



//starts reading the file

int readBytes = is.read(bytes);

while (readBytes  0) {



readBytes = is.read(bytes);



progress += readBytes;

Log.d(d, progress +);

}

ByteArrayInputStream bis = new ByteArrayInputStream(content);





getApplicationContext().setWallpaper(bis);




Ivan Soto Fernandez
Web Developer
http://ivansotof.com

--~--~-~--~~~---~--~~
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: Download progress

2009-06-17 Thread Ivan Soto
Considering I'm really new to Java, can you give me an example of how the
implementation should be done?

Thanks!

Ivan Soto Fernandez
Web Developer
http://ivansotof.com



On Wed, Jun 17, 2009 at 12:30 PM, Streets Of Boston flyingdutc...@gmail.com
 wrote:


 Why do you create a byte-array (content)? If the wall-paper is big,
 you're using quite a bit of extra memory.
 If you want to be able to monitor download progress, wrap it inside
 your own implementation of an input-stream

 URL url = new URL(address1);
HttpURLConnection uc = (HttpURLConnection) url.openConnection
 ();
InputStream is = (InputStream)uc.getContent();
 int leng = uc.getContentLength();
MyProgressMonitorInputStream progressIS = new
 MyProgressMonitorInputStream(is, leng);
getApplicationContext().setWallpaper(progressIS);

 Then have MyProgressMonitorInputStream implement InputStream and
 update the progress in the 'read' methods


 On Jun 17, 11:54 am, Ivan Soto ivanso...@gmail.com wrote:
  Hi, I'm trying to make my app display a download progress for bigger
 files.
  But I can't figure how to make it work properly.The data is an image I
 plan
  to set up as wallpaper
 
  Does anyone has an example of this?
 
  Thanks!!
 
   URL url = new URL(address1);
 
  HttpURLConnection uc = (HttpURLConnection) url.openConnection();
 
  InputStream is = (InputStream)uc.getContent();
 
  int progress = 0;
 
  int leng = uc.getContentLength();
 
  byte[] bytes = new byte[20480];
 
  byte[] content = new byte[leng];
 
  //starts reading the file
 
  int readBytes = is.read(bytes);
 
  while (readBytes  0) {
 
  readBytes = is.read(bytes);
 
  progress += readBytes;
 
  Log.d(d, progress +);
 
  }
 
  ByteArrayInputStream bis = new ByteArrayInputStream(content);
 
  getApplicationContext().setWallpaper(bis);
 
  Ivan Soto Fernandez
  Web Developerhttp://ivansotof.com
 


--~--~-~--~~~---~--~~
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: DEVELOPER CHALLENGE 2 - Can update of existing published app can participate?

2009-06-17 Thread Ivan Soto
Don't you think that will be considered as a published app?

Ivan Soto Fernandez
Web Developer
http://ivansotof.com



On Wed, Jun 17, 2009 at 12:54 PM, havexz bali.param...@gmail.com wrote:


 Hi

 I know that currenlty published apps can't participate and also
 updates of the apps which participated in Developer Challenge 1 cant
 participate in DC2.

 But can an update of an existing published app can participate in DC2?

 Thanks in advance.
 


--~--~-~--~~~---~--~~
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: ADC2 announced

2009-05-29 Thread Ivan Soto
Think about it for a moment, it's SO unfair to submit already published
applications.

Ivan Soto Fernandez
Web Developer
http://ivansotof.com



On Fri, May 29, 2009 at 12:35 PM, gsmd gsm...@gmail.com wrote:


 http://code.google.com/android/adc/ - 'open only to applications that
 have not been published'. Thanks for screwing devs.
 


--~--~-~--~~~---~--~~
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: Knowledge of Android?

2009-05-11 Thread Ivan Soto
You just failed for cross posting. There's nothing more annoying than that.

Ivan Soto Fernandez
Web Developer
http://ivansotof.com



On Mon, May 11, 2009 at 7:31 AM, meca m...@live.se wrote:


 Hi,

 For a study we have been looking for android developers. We have now
 increased our target audience and are now also looking for developers
 in the UK that are considering to develop application on the Android
 platform and have experience of iphone application development!

 The Luleå University of Technology, Sweden, together with the
 University of Manchester, UK, is about to start a study on developer
 experience.

 We are looking for people that either are considering to develop or
 have already developed application(s) on the Android platform.
 The research process includes face-to-face and online sessions during
 the beginning of June.

 If you would like to participate in one of the sessions that would
 take a maximum of 2 hours of your time, please contact us at:
 ca...@prontocommunication.se
 Voucher will be offered to the participants.

 Best Regards,
 Carin Lundin, Pronto Communication

 


--~--~-~--~~~---~--~~
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] Dev guide changelog.

2009-04-29 Thread Ivan Soto
Is there a changelog for the dev guide? if not, it should. I'm finding some
new stuff and I don't know if there's even more new pages in there.
I just found those GUI guidelines when I was looking for signing info.


Ivan Soto Fernandez
Web Developer
http://ivansotof.com

--~--~-~--~~~---~--~~
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 application xxxxxxxx (process xxxxxx) has stopped unexpectedly. Please try again .”

2009-04-28 Thread Ivan Soto
The user will get a nice This applicated failed and will now close and
that's why you need to debug and see the log for errors because we are
developers.
I don't really see the need of a more friendly way to do that.

What you can also do is be writing the log to a file for later reading.
Somebody already posted a snippet about this, search the list.



Ivan Soto Fernandez
Web Developer
http://ivansotof.com



On Tue, Apr 28, 2009 at 10:03 AM, Kenn Min Chong kmch...@gomez.com wrote:


 Hey guys!
   So i found the solution to debug this. Apparently ADB has a tool to
 show the debug logs of the OS, when I did that I saw the Out of
 memory error. Apparently, Android limits apps to use only 16megs of
 memory before automatically killing it. It'd be nice though if this
 error were shown more intuitively on the screen of the devices instead
 of needing to find out about this via a desktop based debugger :)

 On Apr 23, 1:28 pm, Fred Grott(shareme) fred.gr...@gmail.com
 wrote:
  Best bet is to post a log and than we can help you narrow it down
 
  On Apr 22, 7:03 pm, Kenn Min Chong kmch...@gomez.com wrote:
 
   Hi there!
For some reason I can't explain, when my app runs, I will on
   occasion get the following error message:
 
   “The application  (process xx) has stopped unexpectedly.
   Please try again.”
 
   When I debug my code, it seems to break at random places that doesn't
   make sense. On top of that I tried to surround the entire code with a
   try/catch block just to try to catch the exception, but it doesn't
   work either. I'm suspecting it's the OS that is producing this error
   message but I don't know why. As far as my code goes, if there were
   exceptions caused by it, it would've been caught by the try/catch
   block.  Can someone shed some light here?
 


--~--~-~--~~~---~--~~
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: Installation unsuccessful - Package file was not signed correctly

2009-04-28 Thread Ivan Soto
I tried to install my application from the market once and got that error,
then I completely removed the previous version I had and installed again
from the market, it installed fine but for some really strange reason it
wasn't able to connect to Internet.

I removed the app from my phone again and installed the unsigned one from
Eclipse and it worked fine. At the beginning I thought that the version I
released was broken in some way but I didn't get any complain about not
being able to connect. So I think it was caused by using different
signatures.


Ivan Soto Fernandez
Web Developer
http://ivansotof.com



2009/4/28 myth2loki myth2l...@163.com


 I met the same problem,how to fix it?it will drive me crazy
 soon.Help

 On 4月6日, 下午5时45分, Craig csab...@gmail.com wrote:
  I published my app on the market, and when I first tried installing it
  from there, I got the 'package file was not signed correctly' error.
  Uninstalling the unsigned version I was testing with let me install
  from the market with no problems. However, from the comments, it looks
  like no one else can install my application.
 
  I've put other versions up that worked, and I used the same
  certificate, so I'm pretty sure it is not an issue with the validity
  days for the certificate.
 
  Any idea what I can do to figure this out?
 
  The name of my application is Bloxors. It will be going up and down as
  I try to figure out what the issue is here, but if someone else who is
  getting the error can debug it it would be greatly appreciated.

 


--~--~-~--~~~---~--~~
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 application xxxxxxxx (process xxxxxx) has stopped unexpectedly. Please try again .”

2009-04-28 Thread Ivan Soto
Let's say this.
You dump the log to a file during the running and if it crashes, next time
the user loads the app he/she has an option of sending the report to you.
That's should be a very good option.

Ivan Soto Fernandez
Web Developer
http://ivansotof.com



On Tue, Apr 28, 2009 at 11:26 AM, Kenn Min Chong kmch...@gomez.com wrote:


 You should think from a user's point of view, seeing that kind of
 error message for an out of memory issue is non specific and as
 such, makes it very difficult for them to report issues to the app
 creator.

 On Apr 28, 1:09 pm, Ivan Soto ivanso...@gmail.com wrote:
  The user will get a nice This applicated failed and will now close and
  that's why you need to debug and see the log for errors because we are
  developers.
  I don't really see the need of a more friendly way to do that.
 
  What you can also do is be writing the log to a file for later reading.
  Somebody already posted a snippet about this, search the list.
 
  Ivan Soto Fernandez
  Web Developerhttp://ivansotof.com
 
  On Tue, Apr 28, 2009 at 10:03 AM, Kenn Min Chong kmch...@gomez.com
 wrote:
 
 
 
   Hey guys!
 So i found the solution to debug this. Apparently ADB has a tool to
   show the debug logs of the OS, when I did that I saw the Out of
   memory error. Apparently, Android limits apps to use only 16megs of
   memory before automatically killing it. It'd be nice though if this
   error were shown more intuitively on the screen of the devices instead
   of needing to find out about this via a desktop based debugger :)
 
   On Apr 23, 1:28 pm, Fred Grott(shareme) fred.gr...@gmail.com
   wrote:
Best bet is to post a log and than we can help you narrow it down
 
On Apr 22, 7:03 pm, Kenn Min Chong kmch...@gomez.com wrote:
 
 Hi there!
  For some reason I can't explain, when my app runs, I will on
 occasion get the following error message:
 
 “The application  (process xx) has stopped
 unexpectedly.
 Please try again.”
 
 When I debug my code, it seems to break at random places that
 doesn't
 make sense. On top of that I tried to surround the entire code with
 a
 try/catch block just to try to catch the exception, but it doesn't
 work either. I'm suspecting it's the OS that is producing this
 error
 message but I don't know why. As far as my code goes, if there were
 exceptions caused by it, it would've been caught by the try/catch
 block.  Can someone shed some light here?
 


--~--~-~--~~~---~--~~
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 scroll speed of a Listview

2009-04-25 Thread Ivan Soto
Thanks for pointing me on the right direction, I also found that List13
example on ApiDemos uses the same method.
Ivan Soto Fernandez
Web Developer
http://ivansotof.com



On Fri, Apr 24, 2009 at 8:36 PM, Romain Guy romain...@google.com wrote:


 Use ListView's scroll listener. You can see how I used it to implement
 exactly what you describe in my app called Shelves:
 http://code.google.com/p/shelves

 On Fri, Apr 24, 2009 at 6:48 PM, Ivan Soto ivanso...@gmail.com wrote:
  (Oops, I tabbed extra then Enter... msg sent, blame gmail hehe)
  I've been playing around with some apps for iphone I realized that a lot
 of
  them load pictures from lists when they are slowing down (or stopped).
 That
  really increases the overall performance
  On those apps, if I scroll fast I don't really see any picture loaded on
 the
  lists, but If the scrolls starts slowing down or stops all pictures come.
  Anyone has an idea how to achieve this? Is there a way to know if a
 Listview
  is scrolling and how fast it's going?
  Thanks!
  Ivan Soto Fernandez
  Web Developer
  http://ivansotof.com
 
 
 
  On Fri, Apr 24, 2009 at 7:40 PM, Ivan Soto ivanso...@gmail.com wrote:
 
  Ivan Soto Fernandez
  Web Developer
  http://ivansotof.com
 
 
 
  
 



 --
 Romain Guy
 Android framework engineer
 romain...@android.com

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



[android-developers] Get scroll speed of a Listview

2009-04-24 Thread Ivan Soto
Ivan Soto Fernandez
Web Developer
http://ivansotof.com

--~--~-~--~~~---~--~~
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 scroll speed of a Listview

2009-04-24 Thread Ivan Soto
(Oops, I tabbed extra then Enter... msg sent, blame gmail hehe)

I've been playing around with some apps for iphone I realized that a lot of
them load pictures from lists when they are slowing down (or stopped). That
really increases the overall performance

On those apps, if I scroll fast I don't really see any picture loaded on the
lists, but If the scrolls starts slowing down or stops all pictures come.

Anyone has an idea how to achieve this? Is there a way to know if a Listview
is scrolling and how fast it's going?

Thanks!

Ivan Soto Fernandez
Web Developer
http://ivansotof.com



On Fri, Apr 24, 2009 at 7:40 PM, Ivan Soto ivanso...@gmail.com wrote:


 Ivan Soto Fernandez
 Web Developer
 http://ivansotof.com



--~--~-~--~~~---~--~~
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: emulator speed

2009-04-14 Thread Ivan Soto
Only thing I noticed is that in the emulator everything loads way faster.

I'm not sure if disk/ram access speed is emulated.

Ivan Soto Fernandez
Web Developer
http://ivansotof.com



On Tue, Apr 14, 2009 at 9:36 AM, David Turner di...@android.com wrote:

 I bet that the real difference is the CPUs being used on these machines
 rather than the host OS itself.


 On Tue, Apr 14, 2009 at 4:31 PM, quakeboy prasna...@gmail.com wrote:


 I am making a pretty big 2d game (for a mobile) in terms of features
 and graphics.. All 2d only
 I dont experience this.. I always find the emulator slightly faster
 than device..

 but my team mates experience what you said.. the difference in my case
 was the operating system.
 I use XP and my team mates use Vista

 On Apr 14, 1:03 pm, admin.androidsl...@googlemail.com
 admin.androidsl...@googlemail.com wrote:
  Why is pc android emulator slower than real device but mac iphone
  emulator faster than real device?
 
  I can understand the latter but not the former!



 


--~--~-~--~~~---~--~~
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: Early Look Android 1.5 SDK

2009-04-13 Thread Ivan Soto
Holy!..
Much appreciated. Looks like we are getting heard.

Downloading.

Ivan Soto Fernandez
Web Developer
http://ivansotof.com



On Mon, Apr 13, 2009 at 5:30 PM, Xavier Ducrohet x...@android.com wrote:


 Hello developers!

 I'm pleased to announce the release of an early look of the Android 1.5
 SDK.

 More information and download link at:

 http://android-developers.blogspot.com/2009/04/getting-ready-for-android-15.html

 Have fun!

 Xav
 --
 Xavier Ducrohet
 Android Engineer, Google.

 


--~--~-~--~~~---~--~~
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 Market Wait Time

2009-04-08 Thread Ivan Soto
Instant
Ivan Soto Fernandez
Web Developer
http://ivansotof.com



On Wed, Apr 8, 2009 at 9:21 AM, Kirk kirk.mora...@gmail.com wrote:


 Does anyone know approximately how long it takes for an application to
 get published in the Android Market? Hopefully it's not like the
 iPhone App Store where you could be waiting months.  Is there an
 approval process or does it pretty much just get posted up when you
 pay?

 Thanks in advance!
 


--~--~-~--~~~---~--~~
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: Apps labeled as Tetris Clones removed from Android Market

2009-04-07 Thread Ivan Soto
I think Tetris game mechanics are copyrighted. So maybe that's the main
issue. I haven't tried your game but if it's a tetris clone, you can always
expect to be pulled out from any market.

Ivan Soto Fernandez
Web Developer
http://ivansotof.com



On Tue, Apr 7, 2009 at 8:43 AM, tasos.klei...@gmail.com 
tasos.klei...@gmail.com wrote:


 On Saturday April 4th, I received a message from google saying that my
 game Robotic Space Rock was pulled from the android market after a
 request made by a legal firm representing an entity known as Tetris
 Company. My application was removed from the android market together
 with Blocks, Cubik, Net Tetris, Netblocks and Tetroid (6 apps in
 total) under claim that it violates the DMCA and more specifically
 trademarks and copyrighted material owned by the Tetris Company.
 However, none of the trademarks or copyrighted material (music,
 graphics and sound effects) are present in my game. Sound effects and
 music were created by me specifically for the game. There is no
 reference to the word tetris in the game. Additionally, all the game
 code, graphics and sound effects  were created by me and published on
 the code site http://code.google.com/p/monolithandroid

 Additionally, I am not aware of a software patent covering the game
 mechanics of Tetris, so I cannot see how I could violate something
 that is not protected by a software patent. Also, even if the game was
 protected by a patent, the patent would have expired, since the
 original game, Tetris, was created 23 years ago. However game
 mechanics cannot be covered by patents.

 I would also like to point out that my game is available completely
 free of charge to every user of the android market.

 I wrote those concerns to Google and I sent an email to the EFF. The
 bottom line is that for my application to be restored on the android
 market, I have to send a DMCA counter-notification. And then the
 Tetris Company can sue and take the case to Court.

 When games were pulled from the iPhone App store, they blamed apple,
 but it is not hard to see that behind application removals we can find
 companies like the Tetris Company, that demand application removals
 claiming copyright infringement and trademarks. However, it is not
 easy to battle these companies as individual developers. I, for
 example, am a Greek citizen living in Greece, so it is difficult for
 me to file a counter-notification, because then the Tetris company
 will probably sue me and I will have to defend my case in court. Why
 should I bother? Am I making money out of the game? No! But even if I
 did you can see how easy it is for corporations to neutralize
 developers like that. I think that something should be done.
 Independent developers should get together to battle against such
 misuse of the law by corporations.
 And to those that want more facts, you can find more details on my
 blog:
 http://tkcodesharing.blogspot.com
 


--~--~-~--~~~---~--~~
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] Interface advice.

2009-04-07 Thread Ivan Soto
Hi, I'm developing an application that uses a context menu a lot. I haven't
find a way to put icons on the context menu, like when you taphold on the
home screen to change the wallpaper.

How can I achieve a menu like that? I tried with Dialog.Theme but it's dark.
Is that menu at the home screen an Activity?

Any ideas?

Thanks!


Ivan Soto Fernandez
Web Developer
http://ivansotof.com

--~--~-~--~~~---~--~~
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 do I point people to my app in the Android Marketplace?

2009-04-07 Thread Ivan Soto
market://search?q=pname:com.company.application
Not sure if this works in mail or websites. I haven't tried.

Ivan Soto Fernandez
Web Developer
http://ivansotof.com



On Tue, Apr 7, 2009 at 9:22 AM, frizzo rg...@vbrad.com wrote:


 Ok, so I understand that Android Marketplace is not available on the
 internet, just from the phone.

 I would, however, like to point people to my application if possible.
 If the person receives their emails on the G1, what type of link can I
 give so that clicking on it will take them to the app in the Android
 Marketplace?
 


--~--~-~--~~~---~--~~
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] Bundle.containsKey

2009-04-07 Thread Ivan Soto
Quick question, why does this crashes on extras.containsKey(text) if
there's no key like that?

It's saying NullPointerException.

It should return false, right?



Intent i = this.getIntent();

Bundle extras = i.getExtras();



if (extras.containsKey(text)) {
  // lala
}


Ivan Soto Fernandez
Web Developer
http://ivansotof.com

--~--~-~--~~~---~--~~
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: Bundle.containsKey

2009-04-07 Thread Ivan Soto
You are completely right!I just feel dumb now haha.

For some reason I thought that you would always get extras even if they were
empty.

Thanks a lot

Ivan Soto Fernandez
Web Developer
http://ivansotof.com


On Tue, Apr 7, 2009 at 6:22 PM, Dianne Hackborn hack...@android.com wrote:

 Is extras actually non-null?


 On Tue, Apr 7, 2009 at 3:43 PM, Ivan Soto ivanso...@gmail.com wrote:

  Quick question, why does this crashes on extras.containsKey(text) if
 there's no key like that?

 It's saying NullPointerException.

 It should return false, right?



  Intent i = this.getIntent();

 Bundle extras = i.getExtras();



 if (extras.containsKey(text)) {
   // lala
 }


 Ivan Soto Fernandez
 Web Developer
 http://ivansotof.com






 --
 Dianne Hackborn
 Android framework engineer
 hack...@android.com

 Note: please don't send private questions to me, as I don't have time to
 provide private support, and so won't reply to such e-mails.  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
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Cupcake SDKs available for download

2009-04-06 Thread Ivan Soto
I wonder how many ppl in the piratebay will try to install that on a G1
hehe.
Thanks David, I will try to run the emulator.

Ivan Soto Fernandez
Web Developer
http://ivansotof.com



On Mon, Apr 6, 2009 at 1:20 AM, Pd lotusscr...@gmail.com wrote:


 I have created torrents which can be downloaded:

 Linux

 http://thepiratebay.org/torrent/4827612/android-sdk_eng.20090404_linux-x86.zip

 Mac

 http://thepiratebay.org/torrent/4827613/android-sdk_eng.20090404_mac-x86.zip


 Trying to do my bit  :-)



 Kevin Phillips wrote:
  I have posted a mirror for the files that is registration free over at
  http://www.prosoftco.net/android/
 
  Hope this helps.
  
 
 

 


--~--~-~--~~~---~--~~
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 Zoom out a picture

2009-04-06 Thread Ivan Soto
You can start from here:

Bitmap bm = BitmapFactory.decodeFile(pathtofile.jpg);


Ivan Soto Fernandez
Web Developer
http://ivansotof.com



On Mon, Apr 6, 2009 at 7:05 PM, guishenl...@gmail.com guishenl...@gmail.com
 wrote:


 Nobody knows?

 On Mar 31, 12:44 pm, guishenl...@gmail.com guishenl...@gmail.com
 wrote:
  Hi all,
  If I have a picture file stored in the phone memery (.jpg .bmp
  etc.),can I use Android API to zoom it out.For example, convert a
  picture of size 800*800 to 80*80. If anyone knows, please give me some
  sample code. Thank you in advance!
 


--~--~-~--~~~---~--~~
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] Taking a picture Intent?

2009-04-05 Thread Ivan Soto
Hi, I have an Activity for my application to take pictures and store them
with a content provider.

The problem is that obviously I would like the picture to auto rotate
depending if I have my phone in landscape or not and I would like to use the
autofocus feature. So I'm wondering if I could just call a Camera app intent
and get the URI of the picture taken.

is that possible? I remind reading that it will only give me a small size
picture.

Thanks!

Ivan Soto Fernandez
Web Developer
http://ivansotof.com

--~--~-~--~~~---~--~~
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: For launching a camera from appl which action requires?

2009-04-05 Thread Ivan Soto
Actually I may need the same. I to start the the camera app and get the
latest added picture.
Ivan Soto Fernandez
Web Developer
http://ivansotof.com



On Mon, Feb 2, 2009 at 11:29 PM, jj jagtap...@gmail.com wrote:


 Hello James

 Thanks for replying me,
 Actually I want Uri of this image(Currently captured from camera)

 So that I can send this image by using :

 Uri uri = ContentUris.withAppendedId(Media.EXTERNAL_CONTENT_URI, 2);
Intent i = new Intent();
i.setAction(Intent.ACTION_SEND);
i.setType(image/jpeg);
i.putExtra(Intent.EXTRA_SUBJECT, image5);
i.putExtra(Intent.EXTRA_STREAM, uri);
i = Intent.createChooser(i, Send);
startActivity(i);

 So how should I get this current images Uri
 (When save the picture on camera appl it goes into
 Media.EXTERNAL_CONTENT_URI
 I just want Uri for this current Image )
 Thank you
 


--~--~-~--~~~---~--~~
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: 1.5 compiled image?

2009-04-03 Thread Ivan Soto
I'm just looking for the image file. I just want to test on 1.5.
In february someone compiled cupcake and distributed the image to replace on
the emulator.
the zip contained:
ramdisk.img
system.img
userdata.img

I was looking for the same but updated. I really don't want to get into
compiling cupcake by myself.

Thanks!

Ivan Soto Fernandez
Web Developer
http://ivansotof.com



On Fri, Apr 3, 2009 at 12:02 AM, Al Sutton a...@funkyandroid.com wrote:

  What OS are you planning to run the SDK on?

 Building a Linux SDK from source isn't too difficult. As yet I haven't
 found any instructions on how to build the windows one.

 Al.

 ---

 * Written an Android App? - List it at http://andappstore.com/ *

 ==
 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.



  --
 *From:* android-developers@googlegroups.com [mailto:
 android-develop...@googlegroups.com] *On Behalf Of *Ivan Soto
 *Sent:* 02 April 2009 21:53
 *To:* android-developers@googlegroups.com
 *Subject:* [android-developers] 1.5 compiled image?

  Is there any 1.5 image going around for the emulator? I would like to try
 my apps with onscreen keyboard.
 Maybe someone is actually making nightly builds but I can't find any.

 Thanks.
 PS: Not sure if it's appropriate to ask in this list.

 Ivan Soto Fernandez
 Web Developer
 http://ivansotof.com

 


--~--~-~--~~~---~--~~
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: 1.5 compiled image?

2009-04-03 Thread Ivan Soto
That would be great. So far the previous images were working fine, again,
I'm just curious about the performance and how well the interface works with
the on screen keyboard.
I will post results as long as I find them.

Thanks in advance. :)

Ivan Soto Fernandez
Web Developer
http://ivansotof.com



On Fri, Apr 3, 2009 at 12:38 AM, Al Sutton a...@funkyandroid.com wrote:

  I can give you those from my build of the SDK from last night if you
 want. I can't guarantee how well they'll work with an earlier SDKs emulator,
 but if you promise to post your results to the list I'll send you a download
 URL (once I've uploaded them)

 Al.

 ---

 * Written an Android App? - List it at http://andappstore.com/ *

 ==
 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.



  --
 *From:* android-developers@googlegroups.com [mailto:
 android-develop...@googlegroups.com] *On Behalf Of *Ivan Soto
 *Sent:* 03 April 2009 07:33
 *To:* android-developers@googlegroups.com
 *Subject:* [android-developers] Re: 1.5 compiled image?

 I'm just looking for the image file. I just want to test on 1.5.
 In february someone compiled cupcake and distributed the image to replace
 on the emulator.
 the zip contained:
 ramdisk.img
 system.img
 userdata.img

 I was looking for the same but updated. I really don't want to get into
 compiling cupcake by myself.

 Thanks!

 Ivan Soto Fernandez
 Web Developer
 http://ivansotof.com



 On Fri, Apr 3, 2009 at 12:02 AM, Al Sutton a...@funkyandroid.com wrote:

  What OS are you planning to run the SDK on?

 Building a Linux SDK from source isn't too difficult. As yet I haven't
 found any instructions on how to build the windows one.

 Al.

 ---

 * Written an Android App? - List it at http://andappstore.com/ *

 ==
 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.



  --
 *From:* android-developers@googlegroups.com [mailto:
 android-develop...@googlegroups.com] *On Behalf Of *Ivan Soto
 *Sent:* 02 April 2009 21:53
 *To:* android-developers@googlegroups.com
 *Subject:* [android-developers] 1.5 compiled image?

   Is there any 1.5 image going around for the emulator? I would like to
 try my apps with onscreen keyboard.
 Maybe someone is actually making nightly builds but I can't find any.

 Thanks.
 PS: Not sure if it's appropriate to ask in this list.

 Ivan Soto Fernandez
 Web Developer
 http://ivansotof.com



 


--~--~-~--~~~---~--~~
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: 1.5 compiled image?

2009-04-03 Thread Ivan Soto
Is it possible to get the 1.5 emulator?

Ivan Soto Fernandez
Web Developer
http://ivansotof.com



On Fri, Apr 3, 2009 at 8:32 AM, Al Sutton a...@funkyandroid.com wrote:

  I got the onscreen keyboard whenever I clicked in an EditText (I had to
 click it even if it had the default focus). It then wouldn't go away until I
 clicked the back key (even if I moved off to a button).

 Networking does seem to be non-working in the 1.1 emulator with the 1.5
 images though.


 Al.

 ---

 * Written an Android App? - List it at http://andappstore.com/ *

 ==
 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.



  --
 *From:* android-developers@googlegroups.com [mailto:
 android-develop...@googlegroups.com] *On Behalf Of *Ivan Soto
 *Sent:* 03 April 2009 15:29

 *To:* android-developers@googlegroups.com
 *Subject:* [android-developers] Re: 1.5 compiled image?

  Thanks again for the images.
 For some reason I can't make Internet work on the emulator. On screen
 keyboard didn't work either. I tried to hold menu button but nothing
 happened.

 The UI is looking great. I like that the applications drawer now has
 something like a carbon fiber background. I hope it fixes the lag like with
 the transparent background.

 Ivan Soto Fernandez
 Web Developer
 http://ivansotof.com



 On Fri, Apr 3, 2009 at 12:45 AM, Al Sutton a...@funkyandroid.com wrote:

  I'll upload them to a server and send you the URL .

 Al.


 ---

 * Written an Android App? - List it at http://andappstore.com/ *

 ==
 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.



  --
  *From:* android-developers@googlegroups.com [mailto:
 android-develop...@googlegroups.com] *On Behalf Of *Ivan Soto
 *Sent:* 03 April 2009 07:43

 *To:* android-developers@googlegroups.com
 *Subject:* [android-developers] Re: 1.5 compiled image?

   That would be great. So far the previous images were working fine,
 again, I'm just curious about the performance and how well the interface
 works with the on screen keyboard.
 I will post results as long as I find them.

 Thanks in advance. :)

 Ivan Soto Fernandez
 Web Developer
 http://ivansotof.com



 On Fri, Apr 3, 2009 at 12:38 AM, Al Sutton a...@funkyandroid.com wrote:

  I can give you those from my build of the SDK from last night if you
 want. I can't guarantee how well they'll work with an earlier SDKs emulator,
 but if you promise to post your results to the list I'll send you a download
 URL (once I've uploaded them)

 Al.

 ---

 * Written an Android App? - List it at http://andappstore.com/ *

 ==
 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.



  --
  *From:* android-developers@googlegroups.com [mailto:
 android-develop...@googlegroups.com] *On Behalf Of *Ivan Soto
 *Sent:* 03 April 2009 07:33
 *To:* android-developers@googlegroups.com
 *Subject:* [android-developers] Re: 1.5 compiled image?

   I'm just looking for the image file. I just want to test on 1.5.
 In february someone compiled cupcake and distributed the image to replace
 on the emulator.
 the zip contained:
 ramdisk.img
 system.img
 userdata.img

 I was looking for the same but updated. I really don't want to get into
 compiling cupcake by myself.

 Thanks!

 Ivan Soto Fernandez
 Web Developer
 http://ivansotof.com



 On Fri, Apr 3, 2009 at 12:02 AM, Al Sutton a...@funkyandroid.com wrote:

  What OS are you planning to run the SDK on?

 Building a Linux SDK from source isn't too difficult. As yet I haven't
 found any instructions on how to build the windows one.

 Al.

 ---

 * Written an Android App? - List it at http://andappstore.com/ *

 ==
 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.



  --
 *From:* android-developers@googlegroups.com [mailto:
 android-develop...@googlegroups.com] *On Behalf Of *Ivan Soto
 *Sent:* 02 April

[android-developers] Re: 1.5 compiled image?

2009-04-03 Thread Ivan Soto
I'm actually getting interested in having the 1.5 emulator for Mac, I guess
I will need to start compiling the OS.

Ivan Soto Fernandez
Web Developer
http://ivansotof.com



On Fri, Apr 3, 2009 at 10:04 AM, Al Sutton a...@funkyandroid.com wrote:

  I've only got a linux-x86 package, would that do?

 By the way there seem to have been some changes to the emulator and
 some new parameters added, so it's not as easy as getting the 1.1/1.0
 emulator working.

 Al.

 ---

 * Written an Android App? - List it at http://andappstore.com/ *

 ==
 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.



  --
 *From:* android-developers@googlegroups.com [mailto:
 android-develop...@googlegroups.com] *On Behalf Of *Ivan Soto
 *Sent:* 03 April 2009 16:53
 *To:* android-developers@googlegroups.com
 *Subject:* [android-developers] Re: 1.5 compiled image?

  Is it possible to get the 1.5 emulator?

 Ivan Soto Fernandez
 Web Developer
 http://ivansotof.com



 On Fri, Apr 3, 2009 at 8:32 AM, Al Sutton a...@funkyandroid.com wrote:

  I got the onscreen keyboard whenever I clicked in an EditText (I had to
 click it even if it had the default focus). It then wouldn't go away until I
 clicked the back key (even if I moved off to a button).

 Networking does seem to be non-working in the 1.1 emulator with the 1.5
 images though.


 Al.

 ---

 * Written an Android App? - List it at http://andappstore.com/ *

 ==
 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.



  --
  *From:* android-developers@googlegroups.com [mailto:
 android-develop...@googlegroups.com] *On Behalf Of *Ivan Soto
 *Sent:* 03 April 2009 15:29

 *To:* android-developers@googlegroups.com
 *Subject:* [android-developers] Re: 1.5 compiled image?

   Thanks again for the images.
 For some reason I can't make Internet work on the emulator. On screen
 keyboard didn't work either. I tried to hold menu button but nothing
 happened.

 The UI is looking great. I like that the applications drawer now has
 something like a carbon fiber background. I hope it fixes the lag like with
 the transparent background.

 Ivan Soto Fernandez
 Web Developer
 http://ivansotof.com



 On Fri, Apr 3, 2009 at 12:45 AM, Al Sutton a...@funkyandroid.com wrote:

  I'll upload them to a server and send you the URL .

 Al.


 ---

 * Written an Android App? - List it at http://andappstore.com/ *

 ==
 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.



  --
  *From:* android-developers@googlegroups.com [mailto:
 android-develop...@googlegroups.com] *On Behalf Of *Ivan Soto
 *Sent:* 03 April 2009 07:43

 *To:* android-developers@googlegroups.com
 *Subject:* [android-developers] Re: 1.5 compiled image?

   That would be great. So far the previous images were working fine,
 again, I'm just curious about the performance and how well the interface
 works with the on screen keyboard.
 I will post results as long as I find them.

 Thanks in advance. :)

 Ivan Soto Fernandez
 Web Developer
 http://ivansotof.com



 On Fri, Apr 3, 2009 at 12:38 AM, Al Sutton a...@funkyandroid.com wrote:

  I can give you those from my build of the SDK from last night if you
 want. I can't guarantee how well they'll work with an earlier SDKs 
 emulator,
 but if you promise to post your results to the list I'll send you a 
 download
 URL (once I've uploaded them)

 Al.

 ---

 * Written an Android App? - List it at http://andappstore.com/ *

 ==
 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.



  --
  *From:* android-developers@googlegroups.com [mailto:
 android-develop...@googlegroups.com] *On Behalf Of *Ivan Soto
 *Sent:* 03 April 2009 07:33
 *To:* android-developers@googlegroups.com
 *Subject:* [android-developers] Re: 1.5 compiled image?

   I'm just looking for the image file. I just want to test

[android-developers] 1.5 compiled image?

2009-04-02 Thread Ivan Soto
Is there any 1.5 image going around for the emulator? I would like to try my
apps with onscreen keyboard.
Maybe someone is actually making nightly builds but I can't find any.

Thanks.
PS: Not sure if it's appropriate to ask in this list.

Ivan Soto Fernandez
Web Developer
http://ivansotof.com

--~--~-~--~~~---~--~~
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: Bouncing ListView?

2009-03-27 Thread Ivan Soto
Ha!
Let's not be copycats. The spring list effect is cool but we can have
different ones, even better. In the latest G2 video you can see a very cool
effect when changing orientation.

Still the slide screen effect that is supposed to come in the next version
is really nice.

The only thing that is true is that Android is lacking some really neat
effects. I don't say they are super important, but users like to have that.


Ivan Soto Fernandez
Web Developer
http://ivansotof.com



On Fri, Mar 27, 2009 at 10:19 AM, Romain Guy romain...@google.com wrote:


 Please do not discuss patents on this list.

 On Fri, Mar 27, 2009 at 3:21 AM, Rajesh S rajeshs...@gmail.com wrote:
 
  but apple has infringed others' patents too... especially good old
  palm's.
  so palm went ahead to happily use apple's patents instead of suing..
  revenge or understanding.. I wudnt know. but it is sick that some
  simple stuff like this can be patented .. just because you started
  using touch first. nybody trying out a touch screen wud have com up
  with such ideas easily. but yes the fruit guys did get into it sooner
  than many others.
 
  http://www.engadget.com/2009/01/28/apple-vs-palm-the-in-depth-analysis/
 
  well before somebody from google hushes me here and asks us to go to
  android-discuss, i'll close with the thought that the hardware doesn't
  stop some dual-touch stuff and these but sick legal issues do. if at
  all apple puts up a fight and loses in court it woud be be easy for
  official android team to implement this otherwise we are on our own.
 
  Android team, if release synced sources were more clearly supported,
  we would be able to do such value additions at zero cost
  unofficially.
 
  Cheers,
  Rajesh.S
 
 
  On Mar 27, 10:09 am, Rajesh S rajeshs...@gmail.com wrote:
  Here you go:
 
  http://patft.uspto.gov/netacgi/nph-Parser?Sect1=PTO1Sect2=HITOFFd=P.
 ..
 
  If an edge of the electronic document is reached while translating
  the electronic document in the first direction while the object is
  still detected on or near the touch screen display, an area beyond the
  edge of the document is displayed.
 
  On Mar 21, 2:20 am, AndroidApp zl25dre...@gmail.com wrote:
 
   Oh wtf... do you have a link to the patent?
 
   On Mar 20, 5:22 pm, Rajesh S rajeshs...@gmail.com wrote:
 
am afraid its up to u to do those .. as with dual/multi-touch. the
fruit guys have a patent on the spring action in list too!!! gosh
somebody tell the patent office what is an invention and what isn't.
 
On Mar 20, 9:04 pm, AndroidApp zl25dre...@gmail.com wrote:
 
 Then can you guys put some scrolling physics in Android's views
 (scroll off the screen a little and then bounce back)? That's a
 really
 cool effect. See iphone scrolling.
 
 On Mar 20, 3:52 pm, Dianne Hackborn hack...@android.com wrote:
 
  You're honestly probably better off just writing your own list
 view that
  does just what you want.  Copy things you can from the current
 ListView, but
  the framework ListView class is very general and thus very
 tricky to modify.
 
  That said, I personally would advice against this.  Android
 applications
  don't do that, and the list view has a scroll indicator so that
 you can tell
  where you are in the list to avoid the need of it.  All you'll
 end up doing
  is making your application behave inconsistently with other
 things on
  Android.
 
  On Fri, Mar 20, 2009 at 12:31 PM, zl25drexel 
 zl25dre...@gmail.com wrote:
 
   Hi, I wanted to make a special ListView for android that has
 the
   springy bounce effect like what they have in the iphone,
 
   Before I divide into coding it, can someone from google tell
 me
   whether that's possible if I just modify the ListView class or
 do I
   need to modify some other classes also?
 
   Thanks,
 
  --
  Dianne Hackborn
  Android framework engineer
  hack...@android.com
 
  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.
  
 



 --
 Romain Guy
 Android framework engineer
 romain...@android.com

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



[android-developers] Re: Anything on Android that can do smooth scrolling?

2009-03-27 Thread Ivan Soto
It would be really good to get a post in the Android blog regarding this.I
found out about the thread priority when coding my activity.

My twitter app allows  you to read stored tweets while it gets the new ones
+ pictures on background.

It was scrolling really bad (like SlideMe) until I modified the thread. I'm
not SO sure that made the difference but I can feel it scrolls better.


Ivan Soto Fernandez
Web Developer
http://ivansotof.com



On Fri, Mar 27, 2009 at 10:03 AM, Mike Hearn mh.in.engl...@gmail.comwrote:


  Currently our approach for scheduling is that apps doing background work
 on
  a thread should lower that thread's priority

 Whoops. I released an app that didn't do this. It's not obvious, I
 think.

  We are looking at more strongly enforcing that background applications
 can
  not take too many cycles from the foreground.

 I thought service threads were already niced down. The kernel
 scheduler doesn't use nice priorities effectively? The timeslices are
 too large?

 Is this a problem because the game expects to be able to peg the cpu
 for minutes or hours at a time? I don't think that's a realistic
 expectation. There's no magic scheduling change that can fix that
 assumption - if your app cannot tolerate losing the cpu for brief
 periods of time, it isn't suitable for a multi-tasking OS!
 


--~--~-~--~~~---~--~~
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: Anything on Android that can do smooth scrolling?

2009-03-27 Thread Ivan Soto
They are engineers, professionals, programmers. Don't expect them to act
like a technical support guy.

I prefer to read WTF, you are doing it all wrong! from them that crap like
This is not the proper way to achieve that. Please refer to the Developer
Documentation at http://linktodevdocs.com;

Don't go calling people unprofessional just like that.

Ivan Soto Fernandez
Web Developer
http://ivansotof.com

On Fri, Mar 27, 2009 at 11:06 AM, Sundog sunns...@gmail.com wrote:


 This just emphasises the need for some sort of liason layer between
 app developers and the core team that wouldn't cause them so much
 irritation that it pushes them into acting unprofessionally.
 


--~--~-~--~~~---~--~~
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] DDMS not listing applications

2009-03-26 Thread Ivan Soto
Does anybody knows what could be the cause that it's not listing
applications? It works fine on the emulator but not on my G1.

http://dl.getdropbox.com/u/54112/ddms.jpg

Maybe I'm missing one step.

Thanks


Ivan Soto Fernandez
Web Developer
http://ivansotof.com

--~--~-~--~~~---~--~~
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: DDMS not listing applications

2009-03-26 Thread Ivan Soto
Do'h!,

Thanks a lot :)



Ivan Soto Fernandez
Web Developer
http://ivansotof.com



On Thu, Mar 26, 2009 at 12:05 PM, Jon Colverson jjc1...@gmail.com wrote:


 On Mar 26, 5:33 pm, Ivan Soto ivanso...@gmail.com wrote:
  Does anybody knows what could be the cause that it's not listing
  applications? It works fine on the emulator but not on my G1.

 DDMS only shows applications that are marked as debuggable in their
 manifests on the G1, whereas it shows all applications on the
 emulator.

 --
 Jon

 


--~--~-~--~~~---~--~~
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: Switch to SurfaceView

2009-03-25 Thread Ivan Soto
Can you post your code?



Ivan Soto Fernandez
Web Developer
http://ivansotof.com



On Wed, Mar 25, 2009 at 7:41 AM, Deren adam.d0...@gmail.com wrote:


 Im creating a simple game using a SurfaceView for drawing the
 Graphics. It works fine, but now I tried to add a title screen, which
 is (for now) only a LinearLayout and a Start-button, specified in XML.
 However, when I click this button and try to switch to my SurfaceView
 (By doing setContentView(R.layout.game), the screen turns black. But
 if I do setContentView(R.layout.game) immediatly in my
 Activity.onCreate it works. But not if I start with my Title-screen
 and then try to switch

 


--~--~-~--~~~---~--~~
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 scroll position in a list activity

2009-03-24 Thread Ivan Soto
Thanks for explaining.
Right now I'm using the efficient list method used on the ApiDemos so when
the user scrolls it will refreshes the images that didn't load before. But
if you don't move anything, even if the image is downloaded it won't redraw
in the imageview.

I will start reading about that FutureTask/ExecutorService


Ivan Soto Fernandez
Web Developer
http://ivansotof.com



On Tue, Mar 24, 2009 at 8:13 AM, Streets Of Boston
flyingdutc...@gmail.comwrote:


 I've done the same in my apps for ListView (whether they be in
 ListActivity or in a plain Activity) with good success.

 I use the java.util.concurrent's ExecutorService to obtain images:

 1. Your getView(..) (or bindView/newView/etc) needs to assign an image/
 thumbnail (bitmap) to an ImageView. But you don't have the bitmap yet.
 If you do have it (store in a limited size cache), just set it .
 2. If not, obtain a FutureTask from the ExecutorService and this
 FutureTask then will download the image, create a thumbnail from it
 and creates a Bitmap from this thumbnail. Remember the id of the image
 (can be an id, Uri, URL, whatever, as long as it is unique) and assign
 it to the ImageView (setTag()).
 3. When ready, the FutureTask will 'post' back to the main-thread that
 it has an new thumbnail.
 4. On the 'post'-back, loop through the children of ListView, get the
 appropriate ImageView, the one whose tag (getTag()) is equal to the
 one that FutureTask you got the image for, assign the Bitmap to this
 ImageView. This is it.

 For myself I created a sub-system of ExecutorService and FutureTask,
 called 'Cancelable' tasks, which make it easier to cancel queued up
 tasks when they're no longer necessary. But this is an optimization.

 On Mar 24, 8:06 am, Mark Murphy mmur...@commonsware.com wrote:
  Ivan Soto wrote:
   Do you have any article/tutorial about the placeholder images to share?
   I'm trying to find one with no luck.
 
  I have used the technique, but not in code I'm allowed to share. I do
  need to more formally write this up at some point, but I do not have
  anything immediately handy.
 
  The gist of it is that you create your adapter and set it up, in
  getView() or newView()/bindView() (depending on adapter choice), to see
  if the thumbnail has been downloaded. If so, use it for the list row
  being inflated/updated; if not, leave the ImageView in the row pointing
  to some placeholder Drawable resource. This means as the user scrolls,
  she will pick up the thumbnails. Also, at the end, you can quickly
  iterate over the rows (ListView is a ViewGroup, IIRC, so there are
  methods to iterate its children) and ensure each of those rows'
  ImageViews are using their associated thumbnails.
 
  --
  Mark Murphy (a Commons Guy)http://commonsware.com
  Android App Developer Books:http://commonsware.com/books.html
 


--~--~-~--~~~---~--~~
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 scroll position in a list activity

2009-03-24 Thread Ivan Soto
I think that's what I'm looking for. Can't wait to give it a try after work.
Although, I have another thread in my main Activity downloading all
pictures.
Thanks, I will give it a try.


Ivan Soto Fernandez
Web Developer
http://ivansotof.com



On Tue, Mar 24, 2009 at 8:37 AM, Streets Of Boston
flyingdutc...@gmail.comwrote:


 Here is a code-snippet. I may not compile, but i think you'll get the
 idea :-)

 [code]
 ExecutorService EXECUTOR = Executors.newFixedThreadPool(3); // max 3
 worker threads.
 ...
 public View getView(final AbsListView listView, View convertView, int
 pos, long id) {

  ...
  ...

  final String imgUrl = ...
  ...
  final ImageView imgView = ...
  ...
  Bitmap bm = mBitmapCache.get(imgUrl);
  if (bm != null)
imgView.setImageBitmap(bm);
  else {
imgView.setTag(imgUrl);
FutureTask? task = EXECUTOR.submit(new Runnable() {
  public void run() {
final Bitmap newBM = getImageFrom(imgUrl); // you have to
 write this method
if (newBM == null)
  return;

// be sure that mBitmapCache is thread-safe.
mBitmapCache.put(imgUrl, newBM);

// instead of 'listView', you could use a new Handler
 instance.
listView.post(new Runnable() {
  public void run() {
  String checkUrl = (String)imgView.getTag();
  if (checkUrl != null  !checkUrl.equals(imgUrl))
return;

  imgView.setImageBitmap(newBM);
  }
});
  }

  private Bitmap getImageFrom(String url) {
// download the data from imgUrl.
// create a bitmap from it.
return bitMap;
  }
});
  }

  // if you want, you can hold on to 'task' and call 'cancel' on it if
 necessary, e.g.
  // when this convertView is about to be re-used and to be assigned
 to a different image.
  return convertView;
 }
 [/code]

 On Mar 24, 10:13 am, Streets Of Boston flyingdutc...@gmail.com
 wrote:
  I've done the same in my apps for ListView (whether they be in
  ListActivity or in a plain Activity) with good success.
 
  I use the java.util.concurrent's ExecutorService to obtain images:
 
  1. Your getView(..) (or bindView/newView/etc) needs to assign an image/
  thumbnail (bitmap) to an ImageView. But you don't have the bitmap yet.
  If you do have it (store in a limited size cache), just set it .
  2. If not, obtain a FutureTask from the ExecutorService and this
  FutureTask then will download the image, create a thumbnail from it
  and creates a Bitmap from this thumbnail. Remember the id of the image
  (can be an id, Uri, URL, whatever, as long as it is unique) and assign
  it to the ImageView (setTag()).
  3. When ready, the FutureTask will 'post' back to the main-thread that
  it has an new thumbnail.
  4. On the 'post'-back, loop through the children of ListView, get the
  appropriate ImageView, the one whose tag (getTag()) is equal to the
  one that FutureTask you got the image for, assign the Bitmap to this
  ImageView. This is it.
 
  For myself I created a sub-system of ExecutorService and FutureTask,
  called 'Cancelable' tasks, which make it easier to cancel queued up
  tasks when they're no longer necessary. But this is an optimization.
 
  On Mar 24, 8:06 am, Mark Murphy mmur...@commonsware.com wrote:
 
 
 
   Ivan Soto wrote:
Do you have any article/tutorial about the placeholder images to
 share?
I'm trying to find one with no luck.
 
   I have used the technique, but not in code I'm allowed to share. I do
   need to more formally write this up at some point, but I do not have
   anything immediately handy.
 
   The gist of it is that you create your adapter and set it up, in
   getView() or newView()/bindView() (depending on adapter choice), to see
   if the thumbnail has been downloaded. If so, use it for the list row
   being inflated/updated; if not, leave the ImageView in the row pointing
   to some placeholder Drawable resource. This means as the user scrolls,
   she will pick up the thumbnails. Also, at the end, you can quickly
   iterate over the rows (ListView is a ViewGroup, IIRC, so there are
   methods to iterate its children) and ensure each of those rows'
   ImageViews are using their associated thumbnails.
 
   --
   Mark Murphy (a Commons Guy)http://commonsware.com
   Android App Developer Books:http://commonsware.com/books.html- Hide
 quoted text -
 
  - Show quoted text -
 


--~--~-~--~~~---~--~~
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: Cupcake coming in April? Where is the SDK?

2009-03-24 Thread Ivan Soto
Completely agree,
This is one of the main issues I see in the platform. I can understand when
they say that different devices can run different versions/revisions of the
OS but that's only causing a fragmentation of the platform which won't be
any good for both users and developers.

I can already see the Market in the future to be like  **Tested on
G1-G2-Omnia**  OR having applications released for some phones only if the
Market gives that option in the future.

The ability to have an early access to the next SDK is specifically so we
can properly test applications before users. I'm pretty sure that if they
release the SDK as late as they did last time, with a major upgrade like the
one coming from the cupcake branch will break a lot of apps from the market.

I'm pretty sure I don't know enough about the entire project to say this but
I still see this a little unorganized (or rushed).


Ivan Soto Fernandez
Web Developer
http://ivansotof.com



On Tue, Mar 24, 2009 at 11:05 AM, Al Sutton a...@funkyandroid.com wrote:

  Dave,

 I understand the effort involved, but the choice for any SDK is really;

 a) Release the SDK before the devices and let developers test and prepare
 their apps.

 b) Allow users to start buying a device which may not properly run the
 applications available from Market.

 This is a no-brainer and in order to not appear like a piece of
 half-thought out technology the answer has to be a.

 Apple understand this. Microsoft understand this. Symbian understand this.
 RIM understand this. This is why they all have developer programmes which
 give previews of upcoming OS releases and features. To ignore this fact is
 like signing a death warrant on the general publics perception of Android.

 I know that you're going to make every effort to make sure it does happen,
 but from a users point of view being told well we did try just doesn't cut
 the mustard. Being told they may encounter problems using applications from
 Googles market running on a Google branded phone downloaded directly on the
 'phone is just going to look really poor. After all who wouldn't be mad if
 they bought a Ford car which turned up with an Ford accessories catalogue,
 bought some stuff from the accessories catalogue, waited for it to arrive,
 tried to fit it, find out it doesn't work, 'phone up Ford, only to be told
 Oh yeah, we left it in the catalogue, but the accessory manufacturer had no
 way of testing if it worked because we couldn't do that for them (although
 given Google Support Desk the user will probably just get told It's an app
 problem, it's the developers fault).

 This is one of the few occasions where I think a marketing persons view
 could be of use.

 Al.



  --
 *From:* android-developers@googlegroups.com [mailto:
 android-develop...@googlegroups.com] *On Behalf Of *David Turner
 *Sent:* 24 March 2009 16:01

 *To:* android-developers@googlegroups.com
 *Subject:* [android-developers] Re: Cupcake coming in April? Where is the
 SDK?

 Hmm.. Despite the fact that *this is what we want*, we cannot make a
 guarantee that the Cupcake SDK will be officially released strictly before
 the platform is available on retail phones.

 Properly testing and packaging a SDK takes a lot of time, we *may*encounter 
 blocker bugs that have nothing to do with the software on the
 phone (e.g. emulator crashes on platform X, ADB doesn't see emulator/devices
 on platform Y, etc..). While we test the SDK frequently during development,
 doing the necessary job to ensure that it's not going to break on the
 machines of all people who download it from the official repository takes
 some time. And then, the web site needs to be updated, especially the
 documentation needs to reflect the new features / fixes / etc...

 But apart from that, I don't see a reason why *this* SDK would lag behind,
 and as I said, we want it to be released ASAP.

 On Tue, Mar 24, 2009 at 4:47 PM, Al Sutton a...@funkyandroid.com wrote:


 JBQ,

 Can you pass up the chain that the 'phrase

 ...you can be sure that you'll have an official SDK for a
 cupcake-originated release as soon as possible.

 should be planned to be a point in time (hopefully a couple of weeks)
 before
 a carrier releases a device with it on.

 I'm sure you're aware there's no bigger recipe for pain than when the
 first
 people to test applications on a new release of a platform are users who
 are
 trying out a new 'phone in a shop.

 Al.




 -Original Message-
 From: android-developers@googlegroups.com
 [mailto:android-develop...@googlegroups.com] On Behalf Of Jean-Baptiste
 Queru
 Sent: 24 March 2009 15:39
 To: android-developers@googlegroups.com
 Subject: [android-developers] Re: Cupcake coming in April? Where is the
 SDK?


 1.1 was essentially a update of a few Google-proprietary bits on top of
 the
 same platform as 1.0.
 From the point of view of the Android platform (and therefore of the SDK
 as
 well), the differences between 1.0

[android-developers] Re: Cupcake coming in April? Where is the SDK?

2009-03-24 Thread Ivan Soto
If the G2 is suppose to have an on-screen keyboard why developers still
don't have access to those features in the SDK/emulator.
I found some really annoying *usability* issues on my application when I
tested on an unofficial 1.5 image on the emulator because of the on screen
keyboard so I'm modifying the layout.

Ivan Soto Fernandez
Web Developer
http://ivansotof.com



On Tue, Mar 24, 2009 at 12:41 PM, Pierre Bonnefoy pierre.bonne...@gmail.com
 wrote:


 Romain, Jean-Baptiste,

 Just to clarify, the G2 is announced for April in some countries.
 The G2 is using virtual keyboard.
 Will the G2 be at first available with an update of 1.1 or will it be
 a derivative of cupcake ?

 Thanks

 2009/3/24 Jean-Baptiste Queru j...@android.com:
 
  I'll very gladly try to answer those questions on the android-platform
  list, which I believe is the most appropriate group for them, so that
  this group can remain focused on the concerns of developers writing
  apps with the official SDK (or, in this case, expressing concerns
  about a new official SDK).
 
  Thanks,
  JBQ
 
  On Tue, Mar 24, 2009 at 11:22 AM, Simon Depiets sdepi...@gmail.com
 wrote:
 
  I think this is true,
  can you tell us more than git commit messages tell us ?
  do you intend to freeze android at some point, afterwards there will
  only be bug fixes ?
  do you WANT/do you NEED contributions, or is android open source but
  with a proprietary-like development model ?
 
  I have the impression that the community is very active around
  android-oriented APPS, but not about android itself, maybe there's
  also a problem with this mailing list being filled by requests on the
  use of the SDK but not the development of the SDK, maybe there should
  be a newsgroup dedicated to the android-dev, while this one seems more
  like android-apps-dev.
 
  These are just ideas and questions, not a troll at all.
 
  2009/3/24 Disconnect dc.disconn...@gmail.com:
  Thats the sort of thing you do with alpha/beta/rc tags. And community
  participation.
 
  At some point, someone at google says This is, barring problems, what
 we
  want to be 1.5. Now lets get it fixed. That can continue to happen
  privately between google and the carriers, and you keep periodically
  throwing releases to the community.  This is how proprietary projects
 run.
  (Such as Symbian.)
 
  Or, Google can step up and actually release an open, community
 framework.
  Tags for alpha, beta, rc releases. Limited platform/configuration
 support in
  early stages. Community feedback, patches and bug reports throughout.
 
  Its cheaper, its faster, and you get fewer debacles like the g1 release
  patchfest. Even if the problems are deep inside the guru code, and
 there's
  no chance anyone else can fix it, you STILL gain by offloading the rest
 of
  the work. (Go read LKML for a while if you want -lots- of examples of
 that.
  Its not common for someone new to the project to make deep, guru-level
 fixes
  and patches. But it -is- common for newcomers to take care of their own
  bugs, make incremental improvements, help others and generally take
 load off
  the older members of the community.)
 
  And to skip ahead in the thread:
  {Quote Romainguy}
 
  So far, only the 1.1 SDK was released after the firmware (and not long
  after at that.) I don't understand the point of this discussion. We
  know that the SDK should be released before the bits are placed on
  actual devices and you know that as well. Since there's been no
  announcement of Cupcake availability on actual handsets, why all this
  fuss?
 
  Because in a -community- project, things such as timelines, release
  deadlines, requirements and so forth are public. In a proprietary
 project,
  they are generally private. (Although in the software/mobile space,
  generally much less private than Android.) Google bills this as a
 community
  project but treats it as a proprietary one. So all the fuss is
 because
  people went Ooh! A community project! I'll help! and got told to
 shove off
  until it gets released.
 
  On Tue, Mar 24, 2009 at 12:01 PM, David Turner di...@android.com
 wrote:
 
  Hmm.. Despite the fact that this is what we want, we cannot make a
  guarantee that the Cupcake SDK will be officially released strictly
 before
  the platform is available on retail phones.
 
  Properly testing and packaging a SDK takes a lot of time, we may
 encounter
  blocker bugs that have nothing to do with the software on the phone
 (e.g.
  emulator crashes on platform X, ADB doesn't see emulator/devices on
 platform
  Y, etc..). While we test the SDK frequently during development, doing
 the
  necessary job to ensure that it's not going to break on the machines
 of all
  people who download it from the official repository takes some time.
 And
  then, the web site needs to be updated, especially the documentation
 needs
  to reflect the new features / fixes / etc...
 
  But apart from that, I don't see a reason why this SDK would lag
 behind

[android-developers] Re: Want to learn it to develop app

2009-03-23 Thread Ivan Soto
That's good. Please use android-beginners group if you are really new into
the platform.

Ivan Soto Fernandez
Web Developer
http://ivansotof.com



On Mon, Mar 23, 2009 at 9:08 AM, liqiu...@gmail.com liqiu...@gmail.comwrote:


 I am very intreseting in Android.It very new to me,so I want to know
 about it.

 


--~--~-~--~~~---~--~~
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] Get scroll position in a list activity

2009-03-23 Thread Ivan Soto
Hi,

I'm trying to get the scroll position on a ListActivity. Here is what I'm
trying to do:
I have a list activity that is populated from an XML file. Another thread
downloads all pictures so the user can see the list while the thread is
still downloading the files.

What I'm trying to do is when the thread finishes getting all pics it reads
the listview scroll position, refresh the listview and scroll to that
position again.

ListView main = getListView(); -- not sure if I'm really getting the
ListView this way.
int scY = main.getScrollY();
Log.d(Scroll, scY +  );  --- this is printing zero even when at the
moment I run this I already scrolled the list.
setListAdapter(listadapter);
main.scrollTo(0, scY);

Any ideas?

Thanks!


Ivan Soto Fernandez
Web Developer
http://ivansotof.com

--~--~-~--~~~---~--~~
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 scroll position in a list activity

2009-03-23 Thread Ivan Soto
But when I refresh the listview with setlistadapter(listadapter) it returns
to the top.

Mark:
Do you have any article/tutorial about the placeholder images to share? I'm
trying to find one with no luck.

Thanks for helping.


Ivan Soto Fernandez
Web Developer
http://ivansotof.com



On Mon, Mar 23, 2009 at 7:38 PM, Romain Guy romain...@google.com wrote:


 ListView does not use scrollY. There's no need to save the scroll
 anyway because ListView does it for you.

 On Mon, Mar 23, 2009 at 6:26 PM, Ivan Soto ivanso...@gmail.com wrote:
  Hi,
  I'm trying to get the scroll position on a ListActivity. Here is what I'm
  trying to do:
  I have a list activity that is populated from an XML file. Another thread
  downloads all pictures so the user can see the list while the thread is
  still downloading the files.
  What I'm trying to do is when the thread finishes getting all pics it
 reads
  the listview scroll position, refresh the listview and scroll to that
  position again.
  ListView main = getListView(); -- not sure if I'm really getting the
  ListView this way.
  int scY = main.getScrollY();
  Log.d(Scroll, scY +  );  --- this is printing zero even when at the
  moment I run this I already scrolled the list.
  setListAdapter(listadapter);
  main.scrollTo(0, scY);
 
  Any ideas?
  Thanks!
 
  Ivan Soto Fernandez
  Web Developer
  http://ivansotof.com
 
 
  
 



 --
 Romain Guy
 Android framework engineer
 romain...@android.com

 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
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 Developer Challenge II Cancelled?

2009-03-19 Thread Ivan Soto
If my application sells for like $.99 and the top seller is selling around
600 to 1000 a month, a lot of developer would be spending $1500 just to make
themselves to the top. The price would be more than that amount.
Just a thought.

I don't like that idea. I really prefer a challenge that favor towards the
quality and user friendly capabilities.

my 2 cents.


Ivan Soto Fernandez
Web Developer
http://ivansotof.com



On Thu, Mar 19, 2009 at 3:50 PM, Dan Morrill morri...@google.com wrote:

 We have considered and are considering ideas along those lines.  That is
 *not* to say that that's what we are going to do, so don't take it as
 confirmation. :)  But yes, many different structures are on the table.
 - Dan


 On Thu, Mar 19, 2009 at 2:46 PM, Al Sutton a...@funkyandroid.com wrote:


 Dan,

 Thanks for the clarification.

 How about making the ADC II a set of awards which are given to the best
 selling apps in each category each month for the next couple of years.
 This would allow the Android user community to vote on what is good for
 them, give developers a reason to push their apps to the limit of what
 they can do, and allow Google to focus the prizes on groups delivering
 what people want.

 Just a thought.

 Al.

 Dan Morrill wrote:
  Oops.  Looks like that page was collateral damage when we did the move
  to developer.android.com http://developer.android.com.  We're
  looking into it; thanks for pointing it out.  At any rate the content
  that would be there refers only to the first Developer Challenge.
 
  Regarding the second Developer Challenge, it definitely isn't canceled
  but we haven't announced plans for it yet.  We said we would by last
  year (sorry about that), but we're still working on how to structure
  it.  The world is quite a bit different now than it was when we ran
  the first ADC, so we want to make sure the new rules/structure make
  sense, and we are of course taking into consideration everyone's
  experiences with the first ADC.  The second ADC will definitely not be
  a clone of the first ADC.
 
  We expect to have all this finalized and announce rules within a
  couple months.  The event itself will likely run in the second half of
  the year.
 
  - Dan
 
  On Thu, Mar 19, 2009 at 1:07 AM, Al Sutton a...@funkyandroid.com
  mailto:a...@funkyandroid.com wrote:
 
 
  Very very recently though. Googling for android developer
 challenge
  still brings up the 404ed page as the top result.
 
  Al.
 
  Anonymous Anonymous wrote:
   http://developer.android.com/
   try in here.. its moved i guess
  
   On Thu, Mar 19, 2009 at 12:10 PM, Eelke Folmer
  eelke.fol...@gmail.com mailto:eelke.fol...@gmail.com
   mailto:eelke.fol...@gmail.com mailto:eelke.fol...@gmail.com
  wrote:
  
  
   This ( http://code.google.com/android/adc.html )  gives a
  404 which is
   weird for a google site.
   Is this challenge cancelled? I hope not..
  
  
  
  
  
   
 
 
  --
 
  * Written an Android App? - List it at http://andappstore.com/ *
 
  ==
  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.
 
 
 
 
 
  


 --

 * Written an Android App? - List it at http://andappstore.com/ *

 ==
 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.





 


--~--~-~--~~~---~--~~
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: Putting Android on Par with the iPhone Software

2009-03-18 Thread Ivan Soto
I've been reading all but I don't have the time right now to write a full
analysis. Although, I would LOVE to see someone from Google that is not a
software engineer saying that they are reading this and considering what
people talk in these groups.

Thanks.

On Wed, Mar 18, 2009 at 1:28 PM, Dianne Hackborn hack...@android.comwrote:

 Move this to android-discuss.  Please.


 On Wed, Mar 18, 2009 at 11:37 AM, Schiffres schifty...@gmail.com wrote:


 Hey Guys,
 First, I want to apologize for the lack of coherence, or paragraphs
 (sorry Al), I've had a pretty minimal amount of sleep this week :P.
 To Carl, I fully acknowledge the iPhone shortcomings and the grant
 potential for Android, it's why I'm, perhaps blindly, an uber Android
 supporter.  However, what I was actually trying to get at, which
 thankfully has been addressed by Paper and Bradley are the
 shortcomings, the specific features, functions, and usability that
 Android lacks.  Even if you feel it is fully functional in your
 opinion, what is the next big feature, the next step in Android
 development, what you would love to see in Android, its next wild
 feature that may not even be supported by today's technology.

 It seems to me that Google, which has in my opinion the ability to
 create an OS three times as good as Apple's, has been dropping the
 ball a bit on Android, which in turn ruins its reputation, regardless
 of it's actual functionality.  I can't begin to postulate the cause of
 this lackluster performance, however, personally I think it's that
 Google has no incentive to make it the best it can be because it makes
 no direct source of revenue (Al, the 30% isn't supposed to be for
 profit at all, but rather to clear up the costs of the transaction and
 corollary costs, so that Google breaks even).  A view of a Google
 search on an iPhone equally profits Google as a Google search on an
 Android powered device.  However, it could be argued that Google wants
 to be able to control the means that its users and customers access
 its product (an explanation that also gives reason as to why they
 developed Chrome).

 While I'd love to discuss Google's economic incentives and overall
 financial plan, that must be saved for a different thread.  It was my
 intention that this thread would be a source where people invested in
 Android could list what features, functions they wish to see in
 Android, along with all other ideas as to what Google should do.  If
 you were the Android project manager, what would you do, what ideas
 would you push, what issues would you resolve.  Furthermore, it was
 meant as an area that Android developers could collaborate,
 critiquing, contributing to, and refining others' ideas.  Healthy
 debate is good, and eventually if it becomes a large enough source of
 ideas for Android, it'll be noticed (or I'll send them the thread) by
 Google engineers working on Android and make it much simpler to
 implement the ideas.  As Android developers, you know more about this
 than the average luddite, and in the spirit of open source, we must
 come together to work with Google and make Android everything we can
 imagine it to be.

 Thanks for all the activity,
 Schiffres




 --
 Dianne Hackborn
 Android framework engineer
 hack...@android.com

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



[android-developers] update questions

2009-03-16 Thread Ivan Soto
HI,
I've been waiting patiently to get paid applications on my phone with I had
no luck. The thing is I have a white G1 in Canada (Fido) and I did the
update manually loading the update.zip to my SD card.

My current version is 1.1 and Build number is 1.1 PLAT-RC33 126986

Should I already have paid apps showing up or this is normal?

One last question, is it possible to flash this phone with the ADP1
software?

Thanks.

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: update questions

2009-03-16 Thread Ivan Soto
No idea? I'm really lost in this.

On Mon, Mar 16, 2009 at 8:58 AM, Ivan Soto ivanso...@gmail.com wrote:

 HI,
 I've been waiting patiently to get paid applications on my phone with I had
 no luck. The thing is I have a white G1 in Canada (Fido) and I did the
 update manually loading the update.zip to my SD card.

 My current version is 1.1 and Build number is 1.1 PLAT-RC33 126986

 Should I already have paid apps showing up or this is normal?

 One last question, is it possible to flash this phone with the ADP1
 software?

 Thanks.


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Emulator doesn't link sometimes

2009-03-16 Thread Ivan Soto
Are you on a Mac? Just want to know if this is only a Mac issue.

On Fri, Feb 20, 2009 at 11:49 AM, todd tdonahue...@gmail.com wrote:


 This happens to me occasionally and is a bit annoying. I too just
 close the emulator instance and start it again. That works most of the
 time, although I've had to completely restart the machine on other
 occasions.

 Todd

 On Feb 19, 7:09 pm, Ivan Soto ivanso...@gmail.com wrote:
  Hi, I'm developing on a Mac with Eclipse and the emulator sometimes
 doesn't
  seem to link to eclipse (doesn't show anything in the logcat). I just
 have
  to close and run again and it works. I wonder why this happens.
  Has anybody else experienced this?
 


--~--~-~--~~~---~--~~
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: Merging spannables?

2009-03-16 Thread Ivan Soto
Thanks

On Thu, Feb 5, 2009 at 7:00 PM, Dianne Hackborn hack...@android.com wrote:

 TextUtils.concat().


 On Thu, Feb 5, 2009 at 4:20 PM, Ivan Soto ivanso...@gmail.com wrote:

 Is it possible to merge spannables?

 like
 Spannable spa = null;
 spa = Html.fromHtml(text text b asds/b);

 spa = spa + Html.fromHtml(asdasdasd);

 Thanks





 --
 Dianne Hackborn
 Android framework engineer
 hack...@android.com

 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
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 version of app - is the user notified?

2009-03-12 Thread Ivan Soto
You get notification like once a day of all the apps with upgrades.
you get a Market notification at the top.

On Thu, Mar 12, 2009 at 2:57 PM, Stoyan Damov stoyan.da...@gmail.comwrote:


 If he looks at your app browsing the Market he'll see it has an update.
 I can't remember if he gets a notification as well, probably not.

 On Thu, Mar 12, 2009 at 10:11 PM, daniel.benedykt
 daniel.bened...@gmail.com wrote:
 
  Hi
 
  If I upload a new version of the application.
  Does the user knows that there is a new version of the app?
 
  Thanks
 
  Daniel
  
 

 


--~--~-~--~~~---~--~~
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] DoubleTwist

2009-03-12 Thread Ivan Soto
I must say this is big news for Android-Mac users like me.
I just wanted to share with the rest of the developers here.

http://lifehacker.com/5160323/doubletwist-may-be-the-coolest-universal-media-manager-ever

This is one thing missing with my G1. Maybe this can open a few software
ideas.

--~--~-~--~~~---~--~~
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: EVIL SPAM Interested CRM on Android ?

2009-03-05 Thread Ivan Soto
And you please don't change the subject, my gmail gets retarted
Thanks :)


On Thu, Mar 5, 2009 at 3:09 PM, Justin Allen Jaynes jus...@ragblue.comwrote:


 THIS IS EVIL SPAM.  Don't ever do this again.

 Post your garbage somewhere else.  We legitimate subscribers, all 11,000
 of us don't want your trash in our inboxes.  They're full enough.

 Jayant wrote:
  Aftek has a very strong exposure to mobile application development and
  has delivered variety of projects focusing on mobile applications
  including touch point applications, mobile ads, mobile searches,
  polls, location based services, CRM extensions etc. We also have
  expertise in technologies related to portable applications, portable
  devices, mobile commerce and multimedia applications.
 
  In Android we have extensive expertise with the following
 
  1.Rich UI designing, optimized graphics using OPENGL
  2.Providing features using core level mobile aspects like making a
  call, sending SMS, receiving SMS and post processing the same,
  3.Building intelligence using various logs including calls, SMS
  4.Providing features using core data including phone book, contacts,
  meetings, notes
  5.Providing features using various supported API including Maps,
  Media, Text to Speech and Bluetooth
  6.Providing features using the SQLite database API
 
  For more details please visit http://expertise.aftek.com and
  http://www.aftek.com/technical_expertise.shtml
 
 
  
 


 


--~--~-~--~~~---~--~~
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: Change Theme by preferences

2009-02-27 Thread Ivan Soto
bump?Any ideas?

On Thu, Feb 26, 2009 at 8:42 PM, Ivan Soto ivanso...@gmail.com wrote:

 Hi,
 I'm trying to give an option to users to be able to change the theme to the
 light one. I can't find any command or anything for this. I know I can set
 this in the Manifest file but this is not what I'm looking for.

 Thanks in advance.


--~--~-~--~~~---~--~~
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: Will ADP1 support payed apps from the store

2009-02-26 Thread Ivan Soto
Yeah, big disappointment here.
Google sells Developer phones to many countries like Canada but from here we
are not allowed to sell application or view paid applications. This is not
looking good for me since I don't see they will give a solution anytime
soon.

I'm really thinking to stop developing and move back the iPhone.

Ivan

2009/2/26 vendor.net vendor@gmail.com


 Android Market is one of the powers of Android. One market for all
 android apps. The other companies like Samsung, Motorola and etc. have
 no big interest  to make a different Markets. The center market is a
 big plus. There is no need to decentralize it. But this is not the
 point. My question is in other direction. Will be there a support for
 paid apps in ADP1. This problem should be solved.

 Amir Alagic написа:
  I really don't belive that Android Market has bright future.
  Everything is going slow and it is strange that developers can spend
  400 dollars plus shipping... but we can't sell applications.
 
  But that is not the only reason I think that Android Market is going
  to loose its role. In future Samsung, LG and probably all other phone
  manufacturers will have their own Markets.
  Android OS is open source project and Samsung and other will probably
  remove Android Market from their phones and will put shortcut to their
  Market. Why to loose such opportunity?
  They want money and don't want to give 30% to Google when they can
  earn that money instead.
 
  I guess that phone manufacturers will create much better markets and
  when they do that it will be faster and better because they need to
  earn money now when phone sales are down.
  So we'll have to wait few more months but I guess that from october or
  november we'll have few first class markets available and only smaller
  companies that don't have its own Markets will
  let Google to ear 30%... But how long it will take before even smaller
  players create their Markets is just question of time. In the
  meanwhile switch to iPhone, Symbian or just continue to write
  Android applications and the real markets will come...
 
 
 
  On Feb 26, 12:48 pm, vendor.net vendor@gmail.com wrote:
   I am writing this, because of this news -
 http://www.engadgetmobile.com/2009/02/25/google-blocking-paid-market-...
   . Is this true? And will ADP1 support buying payed apps? I am truly
   hopping that it will, because otherwise we will be not able to see the
   competition`s apps and many more features which will be missing if
   there is no payed apps on the phone.
  
   Thanks!
 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Dev Phone and RC33 update

2009-02-26 Thread Ivan Soto
Completely agree also. I'm still in a WTF mood for the restriction of
selling applications outside the states. I don't get the point of selling
Dev1 phones to Canada but not allowing us to sell applications. I really
feel like Ok, go ahead and play with the SDK, pay around $550 to get into
development but you won't make money anytime soon.
I don't see how can Android compete with the iPhone if you don't treat
developers with the respect we deserve. I hope this changes. I only liked
how Google does things but this time I'm really disappointed.

ISF


2009/2/26 vendor.net vendor@gmail.com


 Totaly agree. This is funny! I believed in google and still believe. I
 was so excited about android and ADP1 and the opurtunity to explore
 competitors apps and code mine, but now I can`t do that. I still
 believe that goolge will come with some solution. And there is one
 more big issue: install apps on the SD card. 100mb free space is funny
 for a phone which can cary 16gb and can install tousands of apps. Now
 I have to delete some to save space...

 I thought that Android and G1/ADP1 can compete with iPhone, but with
 the current state it just has no power. Limited space for apps and
 developers hand tighten...

 Jon Colverson написа:
  On Feb 26, 10:17 pm, Jean-Baptiste Queru j...@android.com wrote:
   I'd say that the current design would make this hard, but I have no
   visibility over what the future plans might be.
 
  I think the decision to restrict copy-protected apps on the ADP1 is
  very unfortunate. It's trivial to break the protection on a retail
  G1, so I can't imagine that restricting ADP1s will have *any* positive
  effect on infringement. Of course, it may have the opposite effect and
  encourage developers to seek out alternative ways of getting the apps
  that they're not allowed to legitimately purchase.
 
  Who is this restriction supposed to help? Android application
  developers. And who does it hurt? Android application developers. How
  about polling all the registered developers to ask whether they
  support it?
 
  --
  Jon
 


--~--~-~--~~~---~--~~
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] Change Theme by preferences

2009-02-26 Thread Ivan Soto
Hi,
I'm trying to give an option to users to be able to change the theme to the
light one. I can't find any command or anything for this. I know I can set
this in the Manifest file but this is not what I'm looking for.

Thanks in advance.

--~--~-~--~~~---~--~~
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: Paid applications - are they downloadable now? By Al Sutton

2009-02-19 Thread Ivan Soto
I'm thinking the same. I'm in Canada with Fido and can't see any.

On Thu, Feb 19, 2009 at 7:52 PM, Stoyan Damov stoyan.da...@gmail.comwrote:


 It might be possible that paid apps can only be seen by US T-Mobile G1
 users?

 On Fri, Feb 20, 2009 at 4:50 AM, Stoyan Damov stoyan.da...@gmail.com
 wrote:
  I have a G1 (PLAT-RC33 126986) but can't see any paid games yet (I
  know you're the author of BreakTheBlocks), so I guess it's Google
  employees who made the purchases?
 
  On Fri, Feb 20, 2009 at 4:36 AM, snctln catlin.s...@gmail.com wrote:
 
  So I have had 2 purchases in the last hour and according to the t-
  mobile forums (http://forums.t-mobile.com/tmbl/board/message?
  board.id=Android2view=by_date_ascendingmessage.id=9307#M9307) apps
  are on sale.  I am on a stock ADP1 and I don't see any paid apps.  Is
  anyone on a G1 RC33 and able to confirm that apps are available for
  purchase?
 
  ---snctln
  www.snctln.com
 
  On Feb 19, 3:58 pm, Sundog sunns...@gmail.com wrote:
  Good point.
 
  Something weird is happening to the top ten games page right now...
 
  On Feb 19, 2:49 pm, Stoyan Damov stoyan.da...@gmail.com wrote:
 
   FWIW I'd rather *not* have paid apps launched today if Google are not
   sure the code is rock solid.
 
   Cheers
 
   On Thu, Feb 19, 2009 at 11:45 PM, Josh Dobbs joshdo...@gmail.com
 wrote:
seriously, can't someone at google comment on this? preferably
 someone that
knows when this will launch?
 
On Thu, Feb 19, 2009 at 1:40 PM, g1bb corymgibb...@gmail.com
 wrote:
 
I don't know... but I doubt it. I'm just going to keep checking my
phone every 2 minutes.
 
On Feb 19, 2:37 pm, Stoyan Damov stoyan.da...@gmail.com wrote:
 Does anybody know if there will be announcement on this list
 when paid
 apps become available for users?
 
 On Thu, Feb 19, 2009 at 11:18 PM, Josh Dobbs 
 joshdo...@gmail.com
 wrote:
  they have difinately missed the target. I am on the west coast
 and
  holiday
  or no holiday mid week is/was wednesday.
 
  On Thu, Feb 19, 2009 at 1:08 PM, Jon Colverson 
 jjc1...@gmail.com
  wrote:
 
  On Feb 19, 9:03 pm, Stoyan Damov stoyan.da...@gmail.com
 wrote:
   It is the message below?
 
   Actually, it's really mid-week on the US west coast, it's
 thursday
   morning (before people start to work) on a 4-day week
 (monday was a
   holiday)
 
  Yes. I figure he wouldn't bother pointing out that the target
 hasn't
  passed yet if he thought they were going to miss the target.
 
  --
  Jon- Hide quoted text -
 
 - Show quoted text -- Hide quoted text -
 
   - Show quoted text -
  
 
 

 


--~--~-~--~~~---~--~~
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] Emulator doesn't link sometimes

2009-02-19 Thread Ivan Soto
Hi, I'm developing on a Mac with Eclipse and the emulator sometimes doesn't
seem to link to eclipse (doesn't show anything in the logcat). I just have
to close and run again and it works. I wonder why this happens.
Has anybody else experienced this?

--~--~-~--~~~---~--~~
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] Populating a listadapter

2009-02-18 Thread Ivan Soto
Hi,

I've built an application that loads XML from a server, then creates a list
of items and with that I create and adapter that I set with

setListAdapter(my adapter);

The problem I'm having now is that creating the list and adapter takes time,
so I was thinking on creating just like 20 entries and populate the list,
then create the rest on runs background or maybe when the person gets to the
bottom (like gmail application).

Is there any tutorial or demo with this somewhere to see a good way to do
this?

Thanks.

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Populating a listadapter

2009-02-18 Thread Ivan Soto
I'm also using sax parser. The problem is I do process some text to render
as spannable with Html.fromHtml()

That takes time and the load time is not nice.

Also everything reloads when I open the keyboard (go landscape mode)

Thanks

On Feb 18, 2009 2:25 PM, Mark Hansen stonedon...@gmail.com wrote:


I load a pretty hefty data feed from a server also in XML and parse
it, I used the SAX parser and it's pretty snappy.

How are you parsing your data?

On Feb 18, 3:35 pm, Ivan Soto ivanso...@gmail.com wrote:  Hi,   I've
built an application that...

--~--~-~--~~~---~--~~
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: Populating a listadapter

2009-02-18 Thread Ivan Soto
That's what I do, but using the command Html.fromHtml(blalala/b) will
output a Spannable and it's not fast. It also gives a weird message when
parsing.

On Wed, Feb 18, 2009 at 4:49 PM, Noonien Soong
nooniensoong2...@gmail.comwrote:


 I'm doing something similar,.. I parse incoming Xml messages, then I
 store the data directly into a SQLite DB which seems to be pretty
 fast..

 Then I use a custom CursorAdapter, similar to the NotePadExample..

 What you could do is just store the plain html into a database and
 then parse it when you need it with a custom CursorAdapter?



 On Feb 18, 4:55 pm, Ivan Soto ivanso...@gmail.com wrote:
  I'm also using sax parser. The problem is I do process some text to
 render
  as spannable with Html.fromHtml()
 
  That takes time and the load time is not nice.
 
  Also everything reloads when I open the keyboard (go landscape mode)
 
  Thanks
 
  On Feb 18, 2009 2:25 PM, Mark Hansen stonedon...@gmail.com wrote:
 
  I load a pretty hefty data feed from a server also in XML and parse
  it, I used the SAX parser and it's pretty snappy.
 
  How are you parsing your data?
 
  On Feb 18, 3:35 pm, Ivan Soto ivanso...@gmail.com wrote:  Hi,  
 I've
  built an application that...
 


--~--~-~--~~~---~--~~
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 do you pass variables between classes?

2009-02-17 Thread Ivan Soto
Intent in = new Intent(getApplicationContext(), Another.class);

in.putExtra(extra, str);


Hope it helps. That's what I do.

On Tue, Feb 17, 2009 at 2:19 PM, deenybird deenyb...@gmail.com wrote:


 What intents do I use to pass a variable to another class?  And also
 which intent do I use to receive it?
 thanks
 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Setup Merchant Account link now available

2009-02-13 Thread Ivan Soto
I wonder the same.

Will it be possible to sell from Canada to the rest of the world?

On Fri, Feb 13, 2009 at 10:33 AM, Evgeny V evgen...@gmail.com wrote:


But it's available for US and UK countires!

Means it that only US and UK citizen could be a sellers?

On Fri, Feb 13, 2009 at 7:24 PM, g1bb corymgibb...@gmail.com wrote:


Woah, now I can specify a price!


On Feb 13, 10:12 am, g1bb corymgibb...@gmail.com wrote:
 I noticed a 'Setup a Merchant Account at Google CheckoutFree' is now

 available at market.android.com, but not functional yet. We're getting
 closer! Is the link working for anyone?

--~--~-~--~~~---~--~~
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: Setup Merchant Account link now available

2009-02-13 Thread Ivan Soto
In the same site you post your application there's a link to setup a
merchant account.

On Fri, Feb 13, 2009 at 11:13 AM, Evgeny V evgen...@gmail.com wrote:

 Just now received the message from google
 ...
  Developers who do not already have a Google Checkout
 merchant account can easily sign up for one via the publisher website...
 ...
 What does it mean publisher site?


 On Fri, Feb 13, 2009 at 7:57 PM, snctln catlin.s...@gmail.com wrote:


 I just finished setting up a  merchant account and then was able to
 add the full version of one of my apps.

 The only annoying part of the process is exactly what I expected it to
 be, you cannot have 2 apps with the same package name, so I had to svn
 export my project, go through and change all of the package names
 (including the eclipse project name in the .project file) in order to
 be able to make a new apk with the new package name.

 I am on the APD1 with the original ROM, and the app has not shown up
 on my Market yet [Games-Brain and Puzzle-WordWrench Full] so maybe
 paid apps won't show up for awhile?  Or maybe I just need to go ahead
 and update with the holiday image.

 I am just glad to see that paid apps are here (and hopefully users can
 buy them now or very very soon)

 ---snctln
 www.snctln.com

 On Feb 13, 11:12 am, g1bb corymgibb...@gmail.com wrote:
  I noticed a 'Setup a Merchant Account at Google CheckoutFree' is now
  available at market.android.com, but not functional yet. We're getting
  closer! Is the link working for anyone?


 


--~--~-~--~~~---~--~~
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: Setup Merchant Account link now available

2009-02-13 Thread Ivan Soto
I knew you wouldn't be able to buy or sell IN Canada. But I had no idea that
if I was IN Canada I wouldn't be able to sell to another countries.
Now I'm sad.

On Fri, Feb 13, 2009 at 11:29 AM, Al Sutton a...@funkyandroid.com wrote:


 Does Canada appear in the list in the email?

 Agus wrote:
  no Canada?
 
  On Fri, Feb 13, 2009 at 10:24 AM, Al Sutton a...@funkyandroid.com wrote:
 
  Google have already stated UK  US first, then Germany, Austria, and the
  Netherlands, followed by France, Italy, and Spain.
 
  It was all in an email Google sent out at the end of last year
  (http://www.talkandroid.com/526-android-market-paid-apps-2009/).
 
  Al.
 
  Ivan Soto wrote:
 
  I wonder the same.
 
  Will it be possible to sell from Canada to the rest of the world?
 
  On Fri, Feb 13, 2009 at 10:33 AM, Evgeny V evgen...@gmail.com
  mailto:evgen...@gmail.com wrote:
 
 
  But it's available for US and UK countires!
 
  Means it that only US and UK citizen could be a sellers?
 
  On Fri, Feb 13, 2009 at 7:24 PM, g1bb corymgibb...@gmail.com
  mailto:corymgibb...@gmail.com wrote:
 
 
  Woah, now I can specify a price!
 
 
  On Feb 13, 10:12 am, g1bb corymgibb...@gmail.com
  mailto:corymgibb...@gmail.com wrote:
   I noticed a 'Setup a Merchant Account at Google
  CheckoutFree' is now
 
   available at market.android.com
  http://market.android.com/, but not functional yet. We're
  getting
   closer! Is the link working for anyone?
 
 
 
 
  --
  ==
  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.
 
 
 
 
  
 


 --
 ==
 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.


 


--~--~-~--~~~---~--~~
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: Setup Merchant Account link now available

2009-02-13 Thread Ivan Soto
It's pretty dissapointing. I wonder if that will change anytime soon.

On Feb 13, 2009 11:58 AM, Agus agus.sant...@gmail.com wrote:


@Ivan: same situation here.
Dear Google, can i have my $25 back?

On Fri, Feb 13, 2009 at 10:55 AM, Ivan Soto ivanso...@gmail.com wrote:  I
knew you wouldn't be a...

--~--~-~--~~~---~--~~
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: Setup Merchant Account link now available

2009-02-13 Thread Ivan Soto
I don't want my $25 back I just want to be able to sell applications. I
wonder what was the point of allowing developers get Dev phones in Canada. I
mean, it's nice to be able to publish free application but if we are going
to be stuck on that until Google releases a phone in here it really killed
the idea.

A market is not really a market when you can just give stuff for free.

I'm actually waiting for an announcement from Google saying when are we
going to be able to sell apps _from_countries like Canada and not when are
we going to get the phone.


On Fri, Feb 13, 2009 at 12:51 PM, Evgeny V evgen...@gmail.com wrote:

 I'd like to get back my 25$ too!


 On Fri, Feb 13, 2009 at 8:58 PM, Agus agus.sant...@gmail.com wrote:


 @Ivan: same situation here.
 Dear Google, can i have my $25 back?

 On Fri, Feb 13, 2009 at 10:55 AM, Ivan Soto ivanso...@gmail.com wrote:
  I knew you wouldn't be able to buy or sell IN Canada. But I had no idea
 that
  if I was IN Canada I wouldn't be able to sell to another countries.
  Now I'm sad.
 
  On Fri, Feb 13, 2009 at 11:29 AM, Al Sutton a...@funkyandroid.com
 wrote:
 
  Does Canada appear in the list in the email?
 
  Agus wrote:
   no Canada?
  
   On Fri, Feb 13, 2009 at 10:24 AM, Al Sutton a...@funkyandroid.com
 wrote:
  
   Google have already stated UK  US first, then Germany, Austria, and
   the
   Netherlands, followed by France, Italy, and Spain.
  
   It was all in an email Google sent out at the end of last year
   (http://www.talkandroid.com/526-android-market-paid-apps-2009/).
  
   Al.
  
   Ivan Soto wrote:
  
   I wonder the same.
  
   Will it be possible to sell from Canada to the rest of the world?
  
   On Fri, Feb 13, 2009 at 10:33 AM, Evgeny V evgen...@gmail.com
   mailto:evgen...@gmail.com wrote:
  
  
   But it's available for US and UK countires!
  
   Means it that only US and UK citizen could be a sellers?
  
   On Fri, Feb 13, 2009 at 7:24 PM, g1bb corymgibb...@gmail.com
   mailto:corymgibb...@gmail.com wrote:
  
  
   Woah, now I can specify a price!
  
  
   On Feb 13, 10:12 am, g1bb corymgibb...@gmail.com
   mailto:corymgibb...@gmail.com wrote:
I noticed a 'Setup a Merchant Account at Google
   CheckoutFree' is now
  
available at market.android.com
   http://market.android.com/, but not functional yet.
 We're
   getting
closer! Is the link working for anyone?
  
  
  
  
   --
   ==
   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.
  
  
  
  
   
  
 
 
  --
  ==
  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.
 
 
 
 
 
  
 
 


--~--~-~--~~~---~--~~
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: Setup Merchant Account link now available

2009-02-13 Thread Ivan Soto
I've been reading a lot about this whole Google Merchant thing and it's
actually that Google Checkout only allows to sell goods from US and UK. It's
not an Android thing, it's their system is not even complete and operational
for all countries.
Well, I know they will add more countries like they said in the email but I
wonder what is the ETA on Canada. Google checkout has been working since
2006 I believe and people have been whining since then. Still nothing has
been done. So seeing how slow is this going, I wonder if they will actually
add Canada (or more countries) in a matter of months or years or what?



On Fri, Feb 13, 2009 at 4:06 PM, Mariano Kamp mariano.k...@gmail.comwrote:

 Yeah, that is really really bad and even worse and too late communicated. I
 wonder why?

 On Fri, Feb 13, 2009 at 7:55 PM, Ivan Soto ivanso...@gmail.com wrote:

 I knew you wouldn't be able to buy or sell IN Canada. But I had no idea
 that if I was IN Canada I wouldn't be able to sell to another countries.
 Now I'm sad.


 On Fri, Feb 13, 2009 at 11:29 AM, Al Sutton a...@funkyandroid.com wrote:


 Does Canada appear in the list in the email?

 Agus wrote:
  no Canada?
 
  On Fri, Feb 13, 2009 at 10:24 AM, Al Sutton a...@funkyandroid.com
 wrote:
 
  Google have already stated UK  US first, then Germany, Austria, and
 the
  Netherlands, followed by France, Italy, and Spain.
 
  It was all in an email Google sent out at the end of last year
  (http://www.talkandroid.com/526-android-market-paid-apps-2009/).
 
  Al.
 
  Ivan Soto wrote:
 
  I wonder the same.
 
  Will it be possible to sell from Canada to the rest of the world?
 
  On Fri, Feb 13, 2009 at 10:33 AM, Evgeny V evgen...@gmail.com
  mailto:evgen...@gmail.com wrote:
 
 
  But it's available for US and UK countires!
 
  Means it that only US and UK citizen could be a sellers?
 
  On Fri, Feb 13, 2009 at 7:24 PM, g1bb corymgibb...@gmail.com
  mailto:corymgibb...@gmail.com wrote:
 
 
  Woah, now I can specify a price!
 
 
  On Feb 13, 10:12 am, g1bb corymgibb...@gmail.com
  mailto:corymgibb...@gmail.com wrote:
   I noticed a 'Setup a Merchant Account at Google
  CheckoutFree' is now
 
   available at market.android.com
  http://market.android.com/, but not functional yet. We're
  getting
   closer! Is the link working for anyone?
 
 
 
 
  --
  ==
  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.
 
 
 
 
  
 


 --
 ==
 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.








 


--~--~-~--~~~---~--~~
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: Apple Why G1 Has No 3.5mm Headphone Input?

2009-02-11 Thread Ivan Soto
As a complete ignorant on patents and stuff like that I wonder: This means
nobody ever can make multitouch phones or anything like that?

I know the patent works for cellphones/mid but not for computers, since
Windows 7 will have multitouch.



On Wed, Feb 11, 2009 at 11:05 AM, Al Sutton a...@funkyandroid.com wrote:


 I don't think Apple had much to do with the 3.5mm jack decision because
 Nokias N95 has a 3.5mm jack and has been on sale in the US since 2007,
 and HTC are well known for not including a 3.5mm jack on their 'phones.

 If it's true then Android really is going to be an also-ran because
 it'll be left with all the features that Apple consider not useful
 enough to want to protect.

 Al.

 Michael Martin wrote:
  We all know about Apple asking Google to not include multi-touch but
  according to an Apple employee they also asked not to include the
  3.5mm input due to an interesting patent.
 
  http://www.googleandblog.com/why-no-g1-35mm-headphone-jack/3750/
 
  
 


 --
 ==
 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.


 


--~--~-~--~~~---~--~~
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: Suggestion for Android Market

2009-02-09 Thread Ivan Soto
Agree.
Having a website for your application right now is very useless because of
this.

On Mon, Feb 9, 2009 at 8:05 AM, nagaraj attimani nagaraj.attim...@gmail.com
 wrote:

 yes.. this will make the android much more popular n at the same time
 minimize the same applns developed by diff vendors



 On Mon, Feb 9, 2009 at 8:26 PM, Teo teomina...@gmail.com wrote:


 I think each app should have a link to its website in Android Market,
 as other gadget platforms have. Users can find out more about the app
 features this way...

 Thanks,
 Teo




 --
 Best Regards
 Nagaraj



 


--~--~-~--~~~---~--~~
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 SDK v1.1 due soon?

2009-02-08 Thread Ivan Soto
I was sondering the same.

It's not that my application won't work, but it would be nice to get the SDK
updated.

On Sun, Feb 8, 2009 at 3:17 PM, clark clarkd...@gmail.com wrote:


 I recently upgraded to RC33 on my G1 and when I uploaded an
 application from within eclipse, I received a message warning that the
 SDK version on the phone was 1.1, which did not match the SDK version
 of 1.0 I am using.

 I was wondering when the 1.1 SDK will be available for developers.
 I'm not noticing any issues, and I am not sure what, if any, new
 functionality has been added to the 1.1 SDK.  Just thought I'd ask.

 Regards,
 Scheff's Blend.
 


--~--~-~--~~~---~--~~
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] Merging spannables?

2009-02-05 Thread Ivan Soto
Is it possible to merge spannables?

like
Spannable spa = null;
spa = Html.fromHtml(text text b asds/b);

spa = spa + Html.fromHtml(asdasdasd);

Thanks

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Not saving a file from URL...

2009-02-04 Thread Ivan Soto
Hi,

I'm starting on Java and Android and following a few tutorials I can't see
the reason why a file is not being saved

if I'm correct the file should be saved under /data/data/package/ right?

Any idea why


URL u = new URL(aurl);
Log.d(PIC SIZE, /  + aurl);


int bufferLength = 128;
try {
  URLConnection uc = u.openConnection();
  String ct = uc.getContentType();
  int contentLength = uc.getContentLength();
  if (ct.startsWith(text/) || contentLength == -1) {
System.err.println(This is not a binary file.);
return;
  }

  InputStream stream = uc.getInputStream();
  byte[] buffer = new byte[contentLength];
  int bytesread = 0;
  int offset = 0;
  while (bytesread = 0) {
bytesread = stream.read(buffer, offset,
bufferLength);
if (bytesread == -1)
  break;
offset += bytesread;
  }
  if (offset != contentLength) {
System.err.println(Error: Only read  + offset + 
bytes);
System.err.println(Expected  + contentLength + 
bytes);
  }

  String theFile = u.getFile();
  theFile = theFile.substring(theFile.lastIndexOf('/') +
1);
  FileOutputStream fout2 = null;
  //fout2 =  openFileOutput(asdasd, 0);
  FileOutputStream fout = new
FileOutputStream(/sdcard/ + theFile);
  fout.write(buffer);
  fout.flush();
  fout.close();
} catch (Exception e) {
  System.err.println(e);
}




In the log I get
ArrayIndexOutofBounds Exception...

Any idea?

Thanks

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Accessing preferences

2009-01-19 Thread Ivan Soto
Hi, I'm having a hard time trying to understand how the preferences activity
works.
Right now I have an activity for my preferences using a XML layout that has
this:




CheckBoxPreference

android:key=checkbox_preference

android:title=Use light skin

android:summary=Use a white interface instead of the
default one. /





The thing is that everything I do in the preferences are saved. I can reboot
the emulator and I can access the preferences. I want to know how can I
access this key from another activity on my application.


this is my activity:


public class Config extends PreferenceActivity
implementsOnSharedPreferenceChangeListener{

 @Override

protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

addPreferencesFromResource(R.layout.config);

 }


 public void onSharedPreferenceChanged(SharedPreferences sharedPreferences,
String key) {

// Nothing here.

}

}

--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---