[android-developers] Re: Localizing the assets folder

2009-05-11 Thread Raphael

On Sun, May 10, 2009 at 10:22 PM, EboMike  wrote:
>
> The instructions for my app are in HTML format in my assets so I can
> display them with proper formatting and hyperlinks in a WebView. Given
> that they're in the assets folder, not res, I can't properly localize
> them (i.e. something like assets-de wouldn't work).
>
> What's the proper way to localize embedded HTML files?

You could simply have various html pages, e.g. help-en.html,
help-de.html, etc. and select the right one at runtime based on the
Locale setting.

R/

--~--~-~--~~~---~--~~
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: Why supports Typeface.createFromAsset only?

2009-05-11 Thread Raphael

On Sun, May 10, 2009 at 7:57 PM, freeanderson  wrote:
>
> just cause of time? i guess it seems to be intended.
> it doesn't make a sense. I've saw JNI source of Android.
> FileInputStream is much easier than extracting from assets resources.

Maybe nobody needed the feature. Just contribute it if it's that easy.

R/


>
> On May 11, 11:15 am, Dianne Hackborn  wrote:
>> I don't know, but it could be just that nobody had time to do it.  You could
>> contribute a patch if you strongly want it.
>>
>> On Sun, May 10, 2009 at 4:11 PM, freeanderson wrote:
>>
>>
>>
>> > Hi.
>>
>> > The Typeface can not read a TTF font from external file.
>> > I just want to know why.
>> > Why this feature is denied even in 1.5r1?
>> > And have any plan to open the feature?
>>
>> --
>> 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: I get "Unable to resolve static field" error

2009-05-11 Thread Raphael

Different applications run in distinct VMs. You can't just access data directly.

The Android way of sharing data between activities is to send an Intent.

R/

On Sun, May 10, 2009 at 7:23 PM, Rakoun  wrote:
>
> Bonsoir tout le monde,
>
> I investigated more and I notice that.
> If I create a project, named "Project1" with one Activiy and with a
> class name A that have a Uri pulic static field and if I create
> another project named "Project2" that reference "Project1", if in
> "Project2" I try to assign A.myuri to an Uri variable, Project2 failed
> at running.
> Why?
>
>
>  Project1 -
> public class A {
>  public static Uri myuri = Uri.parse("test");
> }
>
> package com.project1;
>
> public class Project1 extends Activity {
>    /** Called when the activity is first created. */
>   �...@override
>    public void onCreate(Bundle savedInstanceState) {
>        super.onCreate(savedInstanceState);
>        setContentView(R.layout.main);
>    }
> }
>
> --- Project2 --
> package com.project2;
>
> import com.project1.A;
>
> public class TestDuplicatedField extends Activity {
>    /** Called when the activity is first created. */
>   �...@override
>    public void onCreate(Bundle savedInstanceState) {
>        super.onCreate(savedInstanceState);
>        setContentView(R.layout.main);
>        Uri uri = A.myuri;
>    }
> }
>
>
> Regards
>
> On 8 mai, 22:29, Rakoun  wrote:
>> I have to project in my eclipse IDE:
>> - my android application, where I defined a content provider,
>> - a junit project base on a article from "My life with android" blog
>> (http://tinyurl.com/q7v3o5) where I test my content provider.
>> Before I update to 1.5 the junit project work well for my test case.
>> Since I passed to 1.5 sdk the junit test case failed for my test case
>> but work for all test case define in the article of "My life with
>> android" (http://tinyurl.com/q7v3o5).
>> I compile my junit project in 1.1 and try to test it on a 1.1 avd and
>> 1.5 avd but it still not works.
>> Can anybody help me?
>>
>> Here is the error I get:
>> --- 
>> --
>> 05-09 02:02:43.733: WARN/dalvikvm(1318): VFY:unabletoresolvestatic
>> field 50 (CONTENT_URI) in Lcom/rakoun/boutsdechandelles/
>> contentprovider/BDCProviderShop$Shops;
>> 05-09 02:02:43.733: WARN/dalvikvm(1318): VFY:  rejecting opcode 0x62
>> at 0x0009
>> 05-09 02:02:43.733: WARN/dalvikvm(1318): VFY:  rejected Laexp/junit/
>> BoutsDeChandellesProviderTest;.testDeleteShop ()V
>> 05-09 02:02:43.743: WARN/dalvikvm(1318): Verifier rejected class Laexp/
>> junit/BoutsDeChandellesProviderTest;
>> 05-09 02:02:57.724: WARN/dalvikvm(1318): threadid=17: thread exiting
>> with uncaught exception (group=0x4000fe70)
>> 05-09 02:02:57.724: ERROR/AndroidRuntime(1318): Uncaught handler:
>> thread Thread-9 exiting due to uncaught exception
>> 05-09 02:02:57.884: ERROR/AndroidRuntime(1318): java.lang.VerifyError:
>> aexp.junit.BoutsDeChandellesProviderTest
>> 05-09 02:02:57.884: ERROR/AndroidRuntime(1318):     at
>> java.lang.Class.getDeclaredConstructors(Native Method)
>> 05-09 02:02:57.884: ERROR/AndroidRuntime(1318):     at
>> java.lang.Class.getConstructor(Class.java:484)
>> 05-09 02:02:57.884: ERROR/AndroidRuntime(1318):     at
>> junit.framework.TestSuite.getTestConstructor(TestSuite.java:177)
>> 05-09 02:02:57.884: ERROR/AndroidRuntime(1318):     at
>> junit.framework.TestSuite.(TestSuite.java:59)
>> 05-09 02:02:57.884: ERROR/AndroidRuntime(1318):     at
>> junit.framework.TestSuite.addTestSuite(TestSuite.java:101)
>> 05-09 02:02:57.884: ERROR/AndroidRuntime(1318):     at
>> aexp.junit.ExampleSuite.(ExampleSuite.java:9)
>> 05-09 02:02:57.884: ERROR/AndroidRuntime(1318):     at
>> aexp.junit.TestRunner.run(JUnit.java:144)
>> 05-09 02:02:57.884: ERROR/AndroidRuntime(1318):     at
>> java.lang.Thread.run(Thread.java:1058)
>> --- 
>> --
>>
>> Rakoun
>> /°\
> >
>

--~--~-~--~~~---~--~~
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 show two or more fields to list(Notepad Tutorial)?

2009-05-11 Thread Raphael

On Sun, May 10, 2009 at 11:58 PM, Daehoon Jeon  wrote:
> Thank you for help...
> I tried, but it doesn't work.
> I wrote xml file like this... it has no error on it...
>  xmlns:android="http://schemas.android.com/apk/res/android";
>     android:layout_width="wrap_content"
>     android:layout_height="wrap_content">
>          android:layout_width="wrap_content"
>     android:layout_height="wrap_content"/>
> 

You can't add a TextView child to a TextView. You need a layout to add
the children.
Try to

   
   


R/


> and change code like you told.
> String[] from = new
> String[]{NotesDbAdapter.KEY_TITLE, NotesDbAdapter.KEY_NAME};
> int[] to = new int[]{R.id.text1, R.id.text2};
>
>
> >
>

--~--~-~--~~~---~--~~
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 control composing text more flexibly in Android 1.5 IMF.

2009-05-11 Thread Paranoia



On May 11, 4:57 am, Dianne Hackborn  wrote:
> On Sat, May 9, 2009 at 10:39 PM, Paranoia  wrote:
> > i want to draw the compoing text and the cursor by myself. but i do
> > not find how to implement this.
>
> You can't.  You can deliver the composing text with style information,
> however.
>
> > i also want to set the cursor position into the composing text when i
> > call setComposingText. seems it's impossible.
>
> Yes because the application may do filtering or other modification of the
> text.
>

why not do filtering when the text is committed to editor?
i do need to set the cursor in the composing text


> > And i found an issue that. setComposingText is also insert the
> > composing text to a fixed position. the following code does not work.
>
> > InputConnection ic = getCurrentInputConnection();
> > ic.setSelection(xxx, yyy);
> > ic.setComposingText(composingtext, 1);
>
> > Any one can tell me why? Thanks!
>
> The composing text is placed at the current cursor location.  I'd need to
> have a full sample code to know what you are trying to do and what is not
> happening how you want.
>
> --
> 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] " Touch events from my PC to device using adb shell "

2009-05-11 Thread raj.10788

Hi All,

Can we able to send the touch events like key events. Can anyone tell
me how to do that. Is it possible to send touch events from my PC to
device using adb shell.


thanks
raj
--~--~-~--~~~---~--~~
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: AppWidget issues

2009-05-11 Thread Alan Jones

Hi Jeff (and all),

On Apr 24, 4:02 am, Jeff Sharkey  wrote:
> So just a heads up that we won't be able to fix the onDeleted() bug
> for the 1.5 SDK.  Here is a quick workaround that you can patch
> against your class that extends AppWidgetProvider to correctly catch
> and handle the onDeleted() event.

Sorry to be digging up a somewhat old mail. I just wanted to check
that
this indeed didn't make 1.5 as the docs
http://developer.android.com/reference/android/appwidget/AppWidgetProvider.html#onDeleted(android.content.Context,%20int[])
don't give any indication that onDeleted() will never be called.

Cheers,

Alan.
--~--~-~--~~~---~--~~
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: WebView.addJavascriptInterface problems

2009-05-11 Thread jfcog...@gsyc.es

another question,

If I use addJavascriptInterface(getCurrentPosition,
"getCurrentPostion") and make a call in javascript like this :
getCurrentposition( successCallback, errorCallback );

and successCallback and ErroCallback are implemented in the JS , how
it's works this?! I can use javascript function in that way?

On 8 mayo, 09:50, "jfcog...@gsyc.es"  wrote:
> The main problem is to access to the public attributes methods of the
> instance object from javascript, because I try to implement the W3C
> standard.
> This standard explicit force the access to the data through public
> attributes ( no from public methods).
> The above class hierarchy that i shows you is not casual, the W3C
> constrained it, and if i want to be according with that standard i
> need to implement in this way.
> My question is if i can do it using webview interface
> (addJavascriptInterface), or i need to do something more to adapt it
> to provide support to this standard in android. Can anybody give me
> some ideas to implement this feature in android, any ideas are
> welcome.
> best regards.
>
> On May 7, 7:36 pm, "Mark Murphy"  wrote:
>
> > > I'm developing a Geolocation tool following the geolocation standard
> > > in W3C, And I have this code:
> > > 3 files .java as follow:
>
> > > //NaviatorGeolocation.java
> > > //here all the imports
> > > public class NavigatorGeolocation extends Activity {
>
> > >    Position position = new Position();
> > >    //Coordinates co = new Coordinates();
> > >    /** Called when the activity is first created. */
> > >   �...@override
> > >         public void onCreate(Bundle savedInstanceState) {
> > >            super.onCreate(savedInstanceState);
> > >            setContentView(R.layout.main);
>
> > >            WebView wv = new WebView(this);
> > >            wv.getSettings().setCacheMode(WebSettings.LOAD_NO_CACHE);
> > >            wv.getSettings().setJavaScriptEnabled(true);
>
> > >            wv.addJavascriptInterface(position, "position");
>
> > >       setContentView(wv);
> > >       wv.loadUrl("http://test.libregeosocial.libresoft.es/gwt/
> > > nada.html");
> > >     }
> > > }
>
> > > //Postion.java
> > > public class Position {
> > >    public long timestamp;
> > >    public Coordinates coords;
>
> > >    public Position(){
> > >            this.timestamp = 2929;
> > >            coords = new Coordinates();
> > >    }
>
> > > }
>
> > > //Coordinates.java
> > > public class Coordinates {
>
> > >    public double latitude;
> > >    public double longitude;
> > >    public double altitude;
> > >    public double accuracy;
> > >    public double altitudeAccuracy;
> > >    public double heading;
> > >    public double speed;
>
> > >    public Coordinates(){
> > >            this.latitude = 9.9292;
> > >            this.longitude = 444.21;
> > >            this.altitude = 0.0;
> > >            this.accuracy = 0.0;
> > >            this.altitudeAccuracy = 0.0;
> > >            this.heading = 0.0;
> > >            this.speed = 0.0;
> > >    }
> > > }
>
> > > My "nata.html" is as follow:
>
> > > 
> > >   JS calls Android Method
> > >   
> > >     JS on Android
> > >     
> > >         document.write("making tests--");
> > >         document.write("recibido: " + position.coords.latitude);
> > > <- not work!!
> > >         document.write("end");
> > >     
> > >   
> > > 
>
> > > I don't now why but the position.coords.latitude, not work, but if I
> > > try "position.timestamp" it works, returning 2929.
>
> > position.timestamp is a primitive value (long). position.coords is an 
> > object.
>
> > > I'm really thinking about that the Android , right now, CAN'T make use
> > > of the standard of geolocation...
>
> > Change your API. Either move your Coordinates data members (double) into
> > the Position object, or put methods on the Position object to access the
> > Coordinates data members. Or, create a native user interface (instead of
> > WebView) and use whatever internal API you want.
>
> > --
> > Mark Murphy (a Commons Guy)http://commonsware.com
> > _The Busy Coder's Guide to Android Development_ Version 2.0 Available!
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
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 show two or more fields to list(Notepad Tutorial)?

2009-05-11 Thread Daehoon Jeon
Thank you very very much~~ can I ask some another question? I saw list
was vertical.
like this...
  title1
  name1
 --
  title2
  name2

I wanna change to like this.
   title1  name1
   --
   title2   name2

and how to add String to list? like 5-11-2009 --- 5-11-2009   Meeting
first field is startTime, and second is endTime, last one is Title. is it
possible?

--~--~-~--~~~---~--~~
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] sales on android - how is that going??

2009-05-11 Thread Android

heya everyone..
just curios about the market's stats so far:
how are sales going on android platform?
can you make money out of it?
is ad-based biz model working?
how many apps been sold?
heard rumors saying it ain't so good coz people do not want to use the
google checkout account--anything in that?

cheers
--~--~-~--~~~---~--~~
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: Uploading an image in a multipart message - sample code

2009-05-11 Thread Wouter

Hey!

Thank you very much for sharing this great code!
It helped me a lot!

But I have on problem! I have created a ruby on rails webapp where I
want to upload my image.
On the website I can upload a image without a problem but when I want
to upload the image with Android, the image cannot be uploaded for one
reasen (but I don't know which)!
I make a post request on the server (it passes all the right
paramaters en the uploaded_data from the photo) but it won't save my
photo in the database or upload it on my website..

Do i have to do something special with the website so I can upload an
image from android to my website (server)?

Thank you,

Wouter

On May 11, 4:51 am, "nEx.Software"  wrote:
> I do something very similar to this but not with images, but rather
> with torrent files. I don't have a 'bytes from file' method though,
> probably works because torrent files are just text. Anyway, thanks for
> sharing.
>
> On May 10, 10:31 am, Jeff Sharkey  wrote:
>
> > Awesome, thanks for sharing the code.  :)  Does it need a specific
> > version of HttpClient, different than the one that comes with the
> > platform?
>
> > And for communicating status and progress back up to a UI thread,
> > AsyncTask in 1.5 would be perfect.  Also, what license is this code
> > snippet released under?  Thanks again for sharing!  :)
>
> > j
>
> > On Sun, May 10, 2009 at 5:04 AM, Anna PS  
> > wrote:
>
> > > I'm starting a new thread, in response to a request over here:
> > >http://bit.ly/E1Qqm
>
> > > This is some sample code for uploading an image to the web, as part of
> > > a multipart message. It assumes that the photo is stored on the SD
> > > card as "photo.jpg". You'll need to download and add a couple of jar
> > > files to the project's built path - commons-httpclient.jar and
> > > httpcomponents-client-4.0-alpha4.
>
> > > It is working on my device. However (big caveats here) - it's much
> > > slower than I would like, and much slower than other applications I've
> > > installed that upload photos. It also feels hacky - e.g. the way the
> > > background thread communicates problems with the upload to the main
> > > thread using variables. I'm sure there must be a neater way to do it.
>
> > > If you figure out a way to improve the code, please post suggestions
> > > here!
>
> > > cheers,
> > > Anna
>
> > > -
>
> > >        private static final int LOCATION_NOT_FOUND = 1;
> > >        private static final int UPLOAD_ERROR = 2;
> > >        final Runnable mUpdateResults = new Runnable() {
> > >                public void run() {
> > >                        pd.dismiss();
> > >                        updateResultsInUi();
> > >                }
> > >        };
>
> > >        public void onCreate(Bundle icicle) {
> > >                super.onCreate(icicle);
> > >                setContentView(R.layout.home);
>
> > >                // do some stuff and then, when you want to upload a
> > > photo
> > >                uploadToWeb();
> > >                }
>
> > >        //
> > > **
> > >        // uploadToWeb: uploads details, handled via a background thread
> > >        //
> > > **
> > >        private void uploadToWeb() {
> > >                Log.d(LOG_TAG, "uploadToWeb");
> > >                pd = ProgressDialog
> > >                                .show(
> > >                                                this,
> > >                                                "Uploading, please 
> > > wait...",
> > >                                                "Uploading. This can take 
> > > several seconds, depending on your
> > > connection speed. Please be patient!",
> > >                                                true, false);
> > >                Thread t = new Thread() {
> > >                        public void run() {
> > >                                doUploadinBackground();
> > >                                mHandler.post(mUpdateResults);
> > >                        }
> > >                };
> > >                t.start();
> > >        }
>
> > >        private void updateResultsInUi() {
> > >                if (globalStatus == UPLOAD_ERROR) {
> > >                        showDialog(UPLOAD_ERROR);
>
> > >                } else if (globalStatus == LOCATION_NOT_FOUND) {
> > >                        showDialog(LOCATION_NOT_FOUND);
>
> > >                } else if (globalStatus == PHOTO_NOT_FOUND) {
> > >                        showDialog(PHOTO_NOT_FOUND);
>
> > >                } else {
> > >                        // Success! - Proceed to the success activity!
> > >                        Intent i = new Intent(Home.this, Success.class);
> > >                        startActivity(i);
> > >                }
> > >        }
>
> > >        //
> > > **
> > >        // onCreateDialo

[android-developers] Re: How to show two or more fields to list(Notepad Tutorial)?

2009-05-11 Thread Daehoon Jeon
Oh,,, i solved vertical problem,,  change vertical to horizontal in xml
file, it was working.But I still in trouble with add String to the list.

--~--~-~--~~~---~--~~
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] KeyEvent.KEYCODE_ENDCALL doesn't work

2009-05-11 Thread Kai Hu

Hi there,

I am doing an experimental project and I found I couldn't make
KeyEvent.KEYCODE_ENDCALL work for me. I could inject
KeyEvent.KEYCODE_CALL, KeyEvent.KEYCODE_DPAD_CENTER and so on, but not
for KeyEvent.KEYCODE_ENDCALL.

Anybody could help me on that? Thanks for your time.

Thanks,
Kai
--~--~-~--~~~---~--~~
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] what's "/sys/class/net/ppp0/operstate"? where can i find the source code about it?

2009-05-11 Thread www_...@yahoo.com.cn

Dear all
   I debug ppp connection now, in the file ppplink.java,  there is a
string PATH_PPP_OPERSTATE="/sys/class/net/ppp0/operstate".
   I check the source code but do not find where to config it.
   Does anybody help me about it?
   Thanks and regards!
--~--~-~--~~~---~--~~
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] where does the "net.XXX.dns1" be set?

2009-05-11 Thread www_...@yahoo.com.cn

Dear all
   In file mobiledatastatetracker.java, sDnsPropNames is definde about
dsn server.
   I do not find where the "net.xxx.dns1" or "net.xxx.dns2" be set.
   Are there anybody can help me ?
--~--~-~--~~~---~--~~
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] what do MACRO "LOCAL_SDK_VERSION " do?

2009-05-11 Thread max

Hi All,
When I compile one example , I met with the following errors:
development/samples/HelloActivity/src/com/example/android/
helloactivity/HelloActivity.java:19: cannot find symbol
symbol  : class ActivityManagerNative
location: package android.app
import android.app.ActivityManagerNative;
   ^
development/samples/HelloActivity/src/com/example/android/
helloactivity/HelloActivity.java:25: cannot find symbol
symbol  : class ServiceManager
location: package android.os
import android.os.ServiceManager;
  ^
development/samples/HelloActivity/src/com/example/android/
helloactivity/HelloActivity.java:39: package
com.android.internal.telephony does not exist
import com.android.internal.telephony.ITelephony;
  ^
3 errors
make: *** [out/target/common/obj/APPS/HelloActivity_intermediates/
classes-full-debug.jar] Error 41


Finally I find if I comment out LOCAL_SDK_VERSION := current in the mk
file, then the error disappear,

Can anyone tell me why?

Thanks

Max
--~--~-~--~~~---~--~~
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: OutOfMemoryError when changing screen orientation

2009-05-11 Thread geopicmob...@googlemail.com

Yeah!
Thanks a lot :)


On May 8, 10:11 pm, Streets Of Boston  wrote:
> Your image is probably too big.
> By setting a 2048x1536 pixels image, you will eat up about 6MByte of
> memory right there.
> The memory of the large bitmap may not be cleaned up quick enough when
> chaning orientation.
>
> To get around this issue, scale the bitmap yourself:
> Read in the full-size bitmap by getting the inputstream from the
> imageUri (getContentResolver()), use the inputstream and BitmapFactory
> to get a Bitmap (be sure to set inSampleSize to something larger than
> 1 and the type to RGB_565 to conserve memory). Then from this Bitmap,
> create a new bitmap that is scaled to the size of your imgUpload view.
>
> On May 8, 11:43 am, "geopicmob...@googlemail.com"
>
>  wrote:
> > Hi,
>
> > I get an OutOfMemoryError every time i change the screen orientation
> > and I am having a hard time finding the mistake...
>
> > The Activitie's view consists of an ImageView, two Buttons and a
> > Spinner. I don't have static variables and can't imagine where i could
> > leak a context.
>
> > Most of the times, the exception is thrown at setContentView
> > (R.layout.upload);
> > sometimes it goes fine until imgUpload.setImageURI(imageURI);
>
> > The images i am displaying are form the G1's camera, so about 500kb
> > and 2048x1536pixels
>
> > Here is some code:
> > ---­--
> > private ImageView imgUpload;
> > private Spinner spnCollections;
> > private Button btnEditMetadata;
> > private Button btnUpload;
> > private Uri imageURI;
>
> > @Override
> > public void onCreate(Bundle savedInstanceState) {
> > super.onCreate(savedInstanceState);
> > setContentView(R.layout.upload);
>
> > // Get View References
> > imgUpload = (ImageView) findViewById(R.id.imgUpload);
> > spnCollections = (Spinner)findViewById(R.id.spnCollections);
> > btnEditMetadata = (Button) 
> > findViewById(R.id.btnEditMetadata);
> > btnUpload = (Button)findViewById(R.id.btnUpload);
>
> > // Get Image from ACTION_SEND Intent
> > Intent intent = getIntent();
> > if (intent.getAction() != null && intent.getAction().equals
> > (Intent.ACTION_SEND)) {
> > Bundle extras = intent.getExtras();
> > imageURI = 
> > (Uri)extras.getParcelable(Intent.EXTRA_STREAM);
> > imgUpload.setImageURI(imageURI);
> > }
> > ...
> > ---­--
--~--~-~--~~~---~--~~
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: in TableRow

2009-05-11 Thread longhairedsi

Ok, I found a solution but I'm still not sure why this doesn't work.

I had to use within the included view

android:height="100dp"
android:width="50dp"

instead of

android:layout_height="100dp"
android:layout_width="50dp"

cheers
simon

On May 6, 10:56 pm, longhairedsi  wrote:
> Hi,
>
> I have a problem trying use  within a table row. Any
> android: atributes applied to the widget within the include are
> ignored. Here's is a test I put together. The two buttons outside the
> table layout render correctly(adjusted width and height), the one's
> inside do not. Strangely, the custom TwoStateButton:x attributes
> are rendered correctly in both cases.
>
> -- main.xml 
> 
> http://schemas.android.com/apk/res/
> android"
>     android:orientation="vertical"
>     android:layout_width="fill_parent"
>     android:layout_height="fill_parent"
>     >
>     
>     
>                          android:layout_width="wrap_content"
>                 android:layout_height="wrap_content"
>         >
>                 
>                          layout="@layout/custom_button" />
>                          layout="@layout/button_type2" />
>                 
>         
> 
>
> --- custom_button.xml ---
> 
>          xmlns:android="http://schemas.android.com/apk/res/android";
>         xmlns:TwoStateButton="http://schemas.android.com/apk/res/
> com.basementajax.tests"
>                 android:layout_height="100dp"
>                 android:layout_width="50dp"
>                 TwoStateButton:onText="This is on"
>         TwoStateButton:offText="Off"
>         TwoStateButton:onBgId="@drawable/btn_red"
>         TwoStateButton:offBgId="@drawable/btn_red"
>         />
>
> 
>
>  button_type2.xml -
>          xmlns:android="http://schemas.android.com/apk/res/android";
>         android:layout_height="100dp"
>         android:layout_width="50dp"
> />
>
> Can anyone shed any light on this? why will the buttons not render
> correctly in the TableRow, have i missed something?
>
> Many thanks
> Simon
--~--~-~--~~~---~--~~
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: Webview Broken in 1.5 SDK?

2009-05-11 Thread Bill Zimmerly

Has this highly frustrating issue been resolved yet?

I haven't been able to use WebView under 1.5 on either the Linux or
Windows platforms. Here is source code that *worked perfectly* under
1.1 on both, but only displays under 1.5, as "sss" wrote in his
original message, "a blank black screen"...

package webApp.Webapp;

import android.app.Activity;
import android.os.Bundle;
import android.view.KeyEvent;
import android.webkit.WebView;
import android.webkit.WebViewClient;

public class Webapp extends Activity
{
  WebView webview;

  private class WebAppClient extends WebViewClient
  {
@Override
public boolean shouldOverrideUrlLoading(WebView view, String url)
{
  view.loadUrl(url);
  return true;
}
  }

  public boolean onKeyDown(int keyCode, KeyEvent event)
  {
if ((keyCode == KeyEvent.KEYCODE_BACK) && webview.canGoBack())
{
  webview.goBack();
  return true;
}

return super.onKeyDown(keyCode, event);
  }

  @Override
  public void onCreate(Bundle savedInstanceState)
  {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);

webview = (WebView) findViewById(R.id.webview);
webview.setWebViewClient(new WebAppClient());
webview.getSettings().setJavaScriptEnabled(true);
webview.loadUrl("http://www.google.com";);
  }
}

Note: it isn't a firewall issue, and Google comes up fine under the
built-in Browser. Just for completeness, here are the only other two
files modified from the auto-generated "Hello World" example
project...

AndroidManifest.xml


http://schemas.android.com/apk/res/android";
  package="webApp.Webapp"
  android:versionCode="1"
  android:versionName="1.0">












main.xml


http://schemas.android.com/apk/res/
android"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:orientation="vertical">
  


Any help is *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: XML schema validation Android

2009-05-11 Thread Sam

Hi,
  i have downloaded the src code for jaxp i.e, the classes which i
require and i have added those files in my project  now the code
compiles but i get values null for the getSystemProperty
(propertyname) ,is that i am doing something wrong and due to that
reason i am getting exception of illegal argument exception.

On May 11, 10:50 am, Sam  wrote:
> Hi,
>        Thnx for the reply i will check with these options of xml
> parsers and surely let u know .
>
> On May 11, 10:41 am, "Mark Murphy"  wrote:
>
>
>
> > >       if i have to do validation of xml with schema can u plz suggest
> > > any other right option for that as i am struggling with this
> > > issue ,desperately to find an answer. plz help .
>
> > Why are you attempting to validate XML against a schema...using a cell
> > phone? I would expect that it is somebody else's job to validate the XML
> > against the schema.
>
> > That being said, here are a list of Java open source XML parsers, some of
> > which support schema validation:
>
> >http://java-source.net/open-source/xml-parsers
>
> > --
> > Mark Murphy (a Commons Guy)http://commonsware.com
> > _The Busy Coder's Guide to Android Development_ Version 2.0 Available!- 
> > 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] aac frame in rtp packet with media type audio "mp4a-latm" is supported in Android

2009-05-11 Thread Dilli

Hi Dave Sparks,

According to discussion
raw aac file format not supported in the android.

If i send RTP packets which contains raw AAC audio frame in "mp4a-
latm" format as payload, then the android will capable to play the
stream ?

i am using android sdk  "android-sdk-windows-1.0_r2".

need help



--~--~-~--~~~---~--~~
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: Audio streaming/progressive download over HTTP

2009-05-11 Thread Dilli

Hi Dave Sparks,

According to above discussion
raw aac file format not supported in the android.

If i send RTP packets which contains AAC audio frame in "mp4a-latm"
format , then the android will capable to play the stream ?

i am using android sdk  "android-sdk-windows-1.0_r2"



On Apr 23, 10:16 pm, Dave Sparks  wrote:
> I'm not sure which reference you a referring to, but MPEG4-SP decode
> is supported.
>
> Encoding implies streaming upload, but the subject of this thread is
> download, not upload. If you are asking about RTSP upload streaming,
> that is not supported in any format today.
>
> On Apr 23, 12:02 am, tainy  wrote:
>
> > what is more:
>
> > according to "media-formats.html" in the reference, MPEG4 SP is not
> > supported for both encoding and decoding,
> > so how can it support streaming?
> > quite confusing.
>
> > On 4月23日, 上午7时59分, Dave Sparks  wrote:
>
> > > Progressive streaming using HTTP is well-supported.
>
> > > RTSP support isn't great yet, but it will get better with the 1.5
> > > release (Cupcake), which fixes the 302 redirect problem. There may be
> > > some issues with RTSP and H.264 - we found some issues with the
> > > hardware codec late in the test cycle that we're too risky to fix. H.
> > > 263 and MPEG4-SP should work pretty well.
>
> > > The caveat with RTSP is that carriers may block the streams.
>
> > > On Apr 22, 2:04 am, tainy  wrote:
>
> > > > Hi Dave:
>
> > > > for audio streaming, only MPEG-4(AAC LC/LTP decoding) is supported,
> > > > right?
> > > > what about video streaming? I found no place saying that is not
> > > > supported, but someone said video streaming is not available by now.
> > > > and if it will be supported, what format will be ok for streaming?
> > > > thanks!
>
> > > > tainy
>
> > > > On 4月16日, 上午3时40分, Dave Sparks  wrote:
>
> > > > > AAC inside an MP4 file is fine. There is no support for raw AAC
> > > > > streams.
>
> > > > > On Apr 15, 5:53 am, patrick  wrote:
>
> > > > > > When you say "no support for AAC", does it mean "no AAC support for
> > > > > > pure audio stream"?
> > > > > > Can we use rtspstreamingwith a MPEG-4 video containing an AAC audio
> > > > > > channel?
>
> > > > > > On Apr 14, 11:56 pm, Dave Sparks  wrote:
>
> > > > > > > We don't have an API for progressive download yet. Technically, 
> > > > > > > the
> > > > > > > website should say "progressivestreaming", but from a file 
> > > > > > > authoring
> > > > > > > perspective there is no distinction between the two.
>
> > > > > > > RTSP support is only available for MPEG-4 file formats. There is 
> > > > > > > no
> > > > > > > support for raw AMR, AAC, or MP3 streams.
>
> > > > > > > On Apr 14, 1:12 pm, Alexander  wrote:
>
> > > > > > > > Hi All,
>
> > > > > > > > I have a couple questions regarding audiostreaming/progressive
> > > > > > > > download over
> > > > > > > > HTTP. Could you please help me?
>
> > > > > > > > 1. MediaPlayer supports progressive download according to the
> > > > > > > > developer guide from
> > > > > > > > this 
> > > > > > > > linkhttp://developer.android.com/guide/topics/media/index.html
> > > > > > > > ("If you're
> > > > > > > > passing a URL to an online media file, the file must be capable 
> > > > > > > > of
> > > > > > > > progressive
> > > > > > > > download."). As far as I understand progressive download means 
> > > > > > > > media
> > > > > > > > playback during
> > > > > > > > download process with saving the media file to file system(SD 
> > > > > > > > card or
> > > > > > > > internal FS) after
> > > > > > > > the downloading is finished (if it's a file, not a stream in the
> > > > > > > > passed URL).
> > > > > > > > So, I tried to set the following URL: setDataSource
> > > > > > > > (http://84.204.154.49/mmapi/music.mp3). Playback is fine, but 
> > > > > > > > the file
> > > > > > > > isn't saved to
> > > > > > > > SD card or internal phone file system. Can MediaPlayer save 
> > > > > > > > media
> > > > > > > > content to the file system
> > > > > > > > after downloading is completed? Is there a way to turn on such
> > > > > > > > capability?
>
> > > > > > > > 2. Does MediaPlayer support HTTPstreaming? I tried to 
> > > > > > > > usehttp://217.10.32.134:8129/ultrafan128.mp3,http://62.32.66.180:8800,
> > > > > > > > also AMR-, AAC-
> > > > > > > > audio stream over HTTP on the local server, but playback does 
> > > > > > > > not
> > > > > > > > work. For example,
> > > > > > > > RTSPstreamingworks fine with AMR and AAC.
>
> > > > > > > > Thank you,
> > > > > > > >Alexander- 隐藏被引用文字 -
>
> > > > > - 显示引用的文字 -- 隐藏被引用文字 -
>
> > > - 显示引用的文字 -
--~--~-~--~~~---~--~~
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/andro

[android-developers] video play error

2009-05-11 Thread N V

Hi to all

 Can anyone tell me that How can i play the video in
emulator of "D1 videosize"
Is it possible to play?

Thank You
Nithin N V
--~--~-~--~~~---~--~~
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: Transport Data between Android and PC application

2009-05-11 Thread lorenz

I'm also writing an app that needs data to be transferred to and from
the android device from/to my desktop pc. I'm using Google Protocol
Buffers and it seems to be working just fine. Maybe you want to have a
look at it too: http://code.google.com/p/protobuf/

With my project, I included the protobuf lib as an external jar into
my android project and it seems to be deployed on the phone correctly.
However, I just saw a thread going on about that topic (http://
code.google.com/p/protobuf/), but I did not yet have the time to
investigate that any further.

On May 7, 5:18 pm, ZeroCool  wrote:
> i would suggest using JSON instead of XML if you only want to
> transport data on the internet
> And JSON is natively supported by android, which is much lighter
> weight
> take a look:www.json.org
>
> On May 7, 9:51 pm, Tom  wrote:
>
> > Question :
>
> > Which of these protocols RPC-XML, REST even SOAP are the "best" for
> > transport data between android and PC?
--~--~-~--~~~---~--~~
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] playing audio file using intent

2009-05-11 Thread jagtap.jj

I want play audio file, which is on sdcard, with intent

String path = Environment.getExternalStorageDirectory().getAbsolutePath
();
File audioFile = new  File(path, "westron.mp3");
Intent intent = new Intent(Intent.ACTION_VIEW);
Uri uri = Uri.fromFile(audioFile);
intent.setData(uri);

try{
if (uri != null) {
startActivity(intent);
   }
}catch(Exception e){}

but it is giving error activity not found exception.

it is working for  content provider why it is not work for external
file
--~--~-~--~~~---~--~~
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] Some Android issues' got response.

2009-05-11 Thread Lucky-dog

Hi all
I got a response notification from google as below.
"Comment #21 on issue 54 by peacock73: Can't reject a call
 http://code.google.com/p/android/issues/detail?id=54

 Yes to all the above. Long overdue."
Would you like to let me know if this enhancement will be included
in latest git respository? or will it be released in next release?
Thank you very much.
--~--~-~--~~~---~--~~
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: Force close msg for few seconds when application starts, why?

2009-05-11 Thread sheik

Hi..
 i am facing similar problem..as i am using network connection in the
main threadcan u fwd any code regarding creating thread inorder to
send the request...and thus avoiding force close error...

kindly help in this regard..

thanking you..in advance..

regards,
Sheik;

On Mar 13, 4:40 pm, dillirao malipeddi 
wrote:
> don't do any complex operations like network connection.. etc on main thread
> for those operations use separate thread
>
> if any time taken operations on main thread will cause fource close
> exception
>
> try to keep main thread as simple as possible..
>
> On Fri, Mar 13, 2009 at 5:05 PM, zeeshan  wrote:
>
> > Hi Android Experts,
>
> > i am having a force close Dialogue msg for few seconds when i run my
> > application.
> > can anyone tell me why is that and how can i resolve it.
> > do i need to use thread to start my main activity?
>
> > any solution?
>
> --
> Dilli Rao. M
--~--~-~--~~~---~--~~
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] Seek bar sequence

2009-05-11 Thread Muthu Kumar K.

Hi All,
I have developed seek bar component (I am showing while playing the
song). If i seeks the bar the song is getting changed the position
based on the seek bar change event, and playing fine. But if I leave
the seek bar it is not moving based on the song sequence. I know we
have to do something for that. Can any one tell me how to get the
event for moving the seek bar based on the song sequence.

Thanks in Advance,
Muthu Kumar K.
--~--~-~--~~~---~--~~
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: Force close msg for few seconds when application starts, why?

2009-05-11 Thread Sena Gbeckor-Kove

Check out the Android blog, there's a recent post about this and  
related threading issues with examples.

http://android-developers.blogspot.com/2009/05/painless-threading.html

Thanks
S



On 11 May 2009, at 13:53, sheik wrote:

>
> Hi..
> i am facing similar problem..as i am using network connection in the
> main threadcan u fwd any code regarding creating thread inorder to
> send the request...and thus avoiding force close error...
>
> kindly help in this regard..
>
> thanking you..in advance..
>
> regards,
> Sheik;
>
> On Mar 13, 4:40 pm, dillirao malipeddi 
> wrote:
>> don't do any complex operations like network connection.. etc on  
>> main thread
>> for those operations use separate thread
>>
>> if any time taken operations on main thread will cause fource close
>> exception
>>
>> try to keep main thread as simple as possible..
>>
>> On Fri, Mar 13, 2009 at 5:05 PM, zeeshan  wrote:
>>
>>> Hi Android Experts,
>>
>>> i am having a force close Dialogue msg for few seconds when i run my
>>> application.
>>> can anyone tell me why is that and how can i resolve it.
>>> do i need to use thread to start my main activity?
>>
>>> any solution?
>>
>> --
>> Dilli Rao. M
> >


--~--~-~--~~~---~--~~
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: Force close msg for few seconds when application starts, why?

2009-05-11 Thread dillirao malipeddi
bellow code will connect to the url specified in the
 start_Download_Content("  url to connect");

and prints the response. may be this will help you

and also set timeout as 10 sec


import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;

import org.apache.http.client.HttpClient;
import org.apache.http.client.ResponseHandler;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.impl.client.BasicResponseHandler;
import org.apache.http.impl.client.DefaultHttpClient;
import org.apache.http.params.BasicHttpParams;
import org.apache.http.params.HttpConnectionParams;
import org.apache.http.params.HttpParams;

import android.app.Activity;
import android.os.Bundle;
import android.util.Log;

public class download extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.main);

startDownload();
}
/*
static final String talam_vedike_chotu = "
http://www.arijasoft.com/customer_demos/Arija_Android_Dev/sdk/aor/choosedi/choosko.php
?";
String okato_argument = "testnuller";
String rendo_argument = "null";
String aakari_padasmooham = talam_vedike_chotu + "mana_thalam=" +
okato_argument + "&vadi_thalam=" + rendo_argument ;
String sodhana_falitham = new String("");
*/
private void startDownload()
{
// TODO Auto-generated method stub
 Runnable downloader = new Runnable()
 {
@Override
public void run()
{
// TODO Auto-generated method stub
 start_Download_Content("http://your
connection");
 }
 };
 new Thread(downloader).start();
 }

public String start_Download_Content(String url_Pls)//throws Exception
{

 int TIMEOUT_MILLISEC = 1; //=10sec
 HttpParams my_httpParams = new BasicHttpParams();;
 HttpConnectionParams.setConnectionTimeout(my_httpParams,
TIMEOUT_MILLISEC);  //set connection time out
HttpConnectionParams.setSoTimeout(my_httpParams, TIMEOUT_MILLISEC);
 // set socket time out
HttpClient httpclient = new DefaultHttpClient(my_httpParams);  //get
http client with given params
String responseBody = null;

   try
   {

HttpGet httpget = new HttpGet(url_Pls);

Log.i("PLS CONTENT GET","executing request " + httpget.getURI());

// Create a response handler
ResponseHandler responseHandler = new
BasicResponseHandler();

responseBody = httpclient.execute(httpget, responseHandler);
}
   catch(Exception e)
   {
   Log.i("Exception","Http Connection"+e.toString());
   }

String _Content = responseBody;

Log.i("","-START---");
Log.i("Response",""+_Content);
Log.i("","---END-");


   return pls_Content;

}
 }



On Mon, May 11, 2009 at 5:23 PM, sheik  wrote:

>
> Hi..
>  i am facing similar problem..as i am using network connection in the
> main threadcan u fwd any code regarding creating thread inorder to
> send the request...and thus avoiding force close error...
>
> kindly help in this regard..
>
> thanking you..in advance..
>
> regards,
> Sheik;
>
> On Mar 13, 4:40 pm, dillirao malipeddi 
> wrote:
> > don't do any complex operations like network connection.. etc on main
> thread
> > for those operations use separate thread
> >
> > if any time taken operations on main thread will cause fource close
> > exception
> >
> > try to keep main thread as simple as possible..
> >
> > On Fri, Mar 13, 2009 at 5:05 PM, zeeshan  wrote:
> >
> > > Hi Android Experts,
> >
> > > i am having a force close Dialogue msg for few seconds when i run my
> > > application.
> > > can anyone tell me why is that and how can i resolve it.
> > > do i need to use thread to start my main activity?
> >
> > > any solution?
> >
> > --
> > Dilli Rao. M
> >
>


-- 
Dilli Rao. M

--~--~-~--~~~---~--~~
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: Seek bar sequence

2009-05-11 Thread dillirao malipeddi
Hi,
set the seek bar max size to (totalplaytime/1000)

and ever sec try to fill the seek bar

you have to write a thread and at every 1 sec intervals you have to get the
player cur position and check with the previous position then fill the
seekbar.

sleep the current thread for 1 sec and after resume from sleep get the
current position and do the required operation. this is also work for pause
condition ( check cur_position with previous position)

Thank you.

On Mon, May 11, 2009 at 5:24 PM, Muthu Kumar K.  wrote:

>
> Hi All,
> I have developed seek bar component (I am showing while playing the
> song). If i seeks the bar the song is getting changed the position
> based on the seek bar change event, and playing fine. But if I leave
> the seek bar it is not moving based on the song sequence. I know we
> have to do something for that. Can any one tell me how to get the
> event for moving the seek bar based on the song sequence.
>
> Thanks in Advance,
> Muthu Kumar K.
> >
>


-- 
Dilli Rao. M

--~--~-~--~~~---~--~~
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] Calendar Apps missing in Android 1.5 SDK

2009-05-11 Thread Shrikant Agrawal


Hi Guys,

It seems that there is no calendar app in the android 1.5 sdk.

Actually in my app i want to retreive the information stored in the
calendar app in  android. But I cant find the classes in Android
1.5 .

Is calendar omitted from the 1.5 release or I am not able to find it?
Can anyone help me this??

If calendar apis are omitted then how can i find the events/meeting
infrmation stored in the calendar app of the phone.

Thanks
Shrikant
--~--~-~--~~~---~--~~
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: I get "Unable to resolve static field" error

2009-05-11 Thread Rakoun

I don't try to communicate between Project1 and Project2 or to send
data from Project2 to Project1.
I just want to use a class from Project1 in Project2.
Before I update to 1.5 it worked.

Rakoun
/°\

On 11 mai, 03:08, Raphael  wrote:
> Different applications run in distinct VMs. You can't just access data 
> directly.
>
> The Android way of sharing data between activities is to send an Intent.
>
> R/
>
> On Sun, May 10, 2009 at 7:23 PM, Rakoun  wrote:
>
> > Bonsoir tout le monde,
>
> > I investigated more and I notice that.
> > If I create a project, named "Project1" with one Activiy and with a
> > class name A that have a Uri pulic static field and if I create
> > another project named "Project2" that reference "Project1", if in
> > "Project2" I try to assign A.myuri to an Uri variable, Project2 failed
> > at running.
> > Why?
>
> >  Project1 -
> > public class A {
> >  public static Uri myuri = Uri.parse("test");
> > }
>
> > package com.project1;
>
> > public class Project1 extends Activity {
> >    /** Called when the activity is first created. */
> >   �...@override
> >    public void onCreate(Bundle savedInstanceState) {
> >        super.onCreate(savedInstanceState);
> >        setContentView(R.layout.main);
> >    }
> > }
>
> > --- Project2 --
> > package com.project2;
>
> > import com.project1.A;
>
> > public class TestDuplicatedField extends Activity {
> >    /** Called when the activity is first created. */
> >   �...@override
> >    public void onCreate(Bundle savedInstanceState) {
> >        super.onCreate(savedInstanceState);
> >        setContentView(R.layout.main);
> >        Uri uri = A.myuri;
> >    }
> > }
>
> > Regards
>
> > On 8 mai, 22:29, Rakoun  wrote:
> >> I have to project in my eclipse IDE:
> >> - my android application, where I defined a content provider,
> >> - a junit project base on a article from "My life with android" blog
> >> (http://tinyurl.com/q7v3o5) where I test my content provider.
> >> Before I update to 1.5 the junit project work well for my test case.
> >> Since I passed to 1.5 sdk the junit test case failed for my test case
> >> but work for all test case define in the article of "My life with
> >> android" (http://tinyurl.com/q7v3o5).
> >> I compile my junit project in 1.1 and try to test it on a 1.1 avd and
> >> 1.5 avd but it still not works.
> >> Can anybody help me?
>
> >> Here is the error I get:
> >> ---
> >>  --
> >> 05-09 02:02:43.733: WARN/dalvikvm(1318): VFY:unabletoresolvestatic
> >> field 50 (CONTENT_URI) in Lcom/rakoun/boutsdechandelles/
> >> contentprovider/BDCProviderShop$Shops;
> >> 05-09 02:02:43.733: WARN/dalvikvm(1318): VFY:  rejecting opcode 0x62
> >> at 0x0009
> >> 05-09 02:02:43.733: WARN/dalvikvm(1318): VFY:  rejected Laexp/junit/
> >> BoutsDeChandellesProviderTest;.testDeleteShop ()V
> >> 05-09 02:02:43.743: WARN/dalvikvm(1318): Verifier rejected class Laexp/
> >> junit/BoutsDeChandellesProviderTest;
> >> 05-09 02:02:57.724: WARN/dalvikvm(1318): threadid=17: thread exiting
> >> with uncaught exception (group=0x4000fe70)
> >> 05-09 02:02:57.724: ERROR/AndroidRuntime(1318): Uncaught handler:
> >> thread Thread-9 exiting due to uncaught exception
> >> 05-09 02:02:57.884: ERROR/AndroidRuntime(1318): java.lang.VerifyError:
> >> aexp.junit.BoutsDeChandellesProviderTest
> >> 05-09 02:02:57.884: ERROR/AndroidRuntime(1318):     at
> >> java.lang.Class.getDeclaredConstructors(Native Method)
> >> 05-09 02:02:57.884: ERROR/AndroidRuntime(1318):     at
> >> java.lang.Class.getConstructor(Class.java:484)
> >> 05-09 02:02:57.884: ERROR/AndroidRuntime(1318):     at
> >> junit.framework.TestSuite.getTestConstructor(TestSuite.java:177)
> >> 05-09 02:02:57.884: ERROR/AndroidRuntime(1318):     at
> >> junit.framework.TestSuite.(TestSuite.java:59)
> >> 05-09 02:02:57.884: ERROR/AndroidRuntime(1318):     at
> >> junit.framework.TestSuite.addTestSuite(TestSuite.java:101)
> >> 05-09 02:02:57.884: ERROR/AndroidRuntime(1318):     at
> >> aexp.junit.ExampleSuite.(ExampleSuite.java:9)
> >> 05-09 02:02:57.884: ERROR/AndroidRuntime(1318):     at
> >> aexp.junit.TestRunner.run(JUnit.java:144)
> >> 05-09 02:02:57.884: ERROR/AndroidRuntime(1318):     at
> >> java.lang.Thread.run(Thread.java:1058)
> >> ---
> >>  --
>
> >> Rakoun
> >> /°\
--~--~-~--~~~---~--~~
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://

[android-developers] Re: Tap Outside Listener for Dialog

2009-05-11 Thread UBZack

Man... I can't believe I didn't see this before!  :)  Thank you!

-Zack

On May 2, 8:59 am, Jason Parekh  wrote:
> If you want your dialog to cancel when the user taps outside its area,
> check out Dialog.setCanceledOnTouchOutside.
>
> jason
>
> On Thu, Apr 30, 2009 at 2:46 PM, UBZack  wrote:
>
> > Hi all,
>
> > I was wondering if anyone knew of an event listener that receives "tap
> > outside" events, that is, taps that happen outside the widget's
> > physical boundaries, and could this listener be assigned to a dialog
> > box (or for that matter, any visual window).  Here's what the code
> > MIGHT look like to construct a Dialog with this functionality:
>
> > AlertDialog.Builder(this)
> > .setTitle("My dialog")
> > .setMessage("This is my dialog")
> > .setOnOutsideClickListener(new MyOnClickListener()) // <- does
> > something like this exist?
> > .create();
>
> > Any help or insight anyone can give would be great.  I know that the
> > menu currently supports taps outside of its boundaries, so I think
> > this may be possible.
>
> > Thank you!
>
> > -UBZack
--~--~-~--~~~---~--~~
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] How to get data from NotesDbAdapter.KEY_START_TIME ?

2009-05-11 Thread daehoon

Hi
Here is code of filldata() in Notepadv3 sample.

Cursor notesCursor = mDbHelper.fetchAllNotes();
startManagingCursor(notesCursor);
String[] from = new String[]{NotesDbAdapter.KEY_TITLE};
int[] to = new int[]{R.id.text1};
SimpleCursorAdapter notes =
new SimpleCursorAdapter(this, R.layout.notes_row,
notesCursor, from, to);
setListAdapter(notes);

When I run it with debug, i found the value of from[] was "title",
I must use data from[] DB which just like common array(like this :
[title1][title2][title3]).
how to change from[] to normal array?
--~--~-~--~~~---~--~~
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] The app got crashed on SDK 1.5 which is working fine on SDK 1.0

2009-05-11 Thread manoj

Hi friends,

I have developed an application which has tabActivity using SDK 1.0
r2.

1st Tab contains List view. -> the list contains some images

2nd and 3rd contains some webviews.

The app works fine on G1 mobile.

Today I downloaded SDK 1.5 and ran the same app on SDK 1.5.

The app got crashed when I scroll down/up the list items very fast
(fling)

I/dalvikvm( 1006): Stack overflow, expanding (0x41048200 to
0x41048000)
I/dalvikvm( 1006): Shrank stack (to 0x41048200, curFrame is
0x41049cd8)
D/AndroidRuntime( 1006): Shutting down VM
W/dalvikvm( 1006): threadid=3: thread exiting with uncaught exception
(group=0x4000fe70)
E/AndroidRuntime( 1006): Uncaught handler: thread main exiting due to
uncaught exception
E/AndroidRuntime( 1006): java.lang.StackOverflowError
E/AndroidRuntime( 1006):at android.text.Styled.measureText
(Styled.java:371)
E/AndroidRuntime( 1006):at android.text.Layout.measureText
(Layout.java:1600)
E/AndroidRuntime( 1006):at android.text.Layout.getLineMax
(Layout.java:654)
E/AndroidRuntime( 1006):at android.text.Layout.draw(Layout.java:310)
E/AndroidRuntime( 1006):at android.text.BoringLayout.draw
(BoringLayout.java:356)
E/AndroidRuntime( 1006):at android.widget.TextView.onDraw
(TextView.java:3921)
E/AndroidRuntime( 1006):at android.view.View.draw(View.java:5838)
E/AndroidRuntime( 1006):at android.view.ViewGroup.drawChild
(ViewGroup.java:1486)
E/AndroidRuntime( 1006):at android.view.ViewGroup.dispatchDraw
(ViewGroup.java:1228)
E/AndroidRuntime( 1006):at android.view.View.buildDrawingCache
(View.java:5615)
E/AndroidRuntime( 1006):at android.view.View.getDrawingCache
(View.java:5458)
E/AndroidRuntime( 1006):at android.view.ViewGroup.drawChild
(ViewGroup.java:1422)
E/AndroidRuntime( 1006):at android.view.ViewGroup.dispatchDraw
(ViewGroup.java:1228)
E/AndroidRuntime( 1006):at android.widget.AbsListView.dispatchDraw
(AbsListView.java:1319)
E/AndroidRuntime( 1006):at android.widget.ListView.dispatchDraw
(ListView.java:2820)
E/AndroidRuntime( 1006):at android.view.View.draw(View.java:5944)
E/AndroidRuntime( 1006):at android.widget.AbsListView.draw
(AbsListView.java:2121)
E/AndroidRuntime( 1006):at android.view.ViewGroup.drawChild
(ViewGroup.java:1486)
E/AndroidRuntime( 1006):at android.view.ViewGroup.dispatchDraw
(ViewGroup.java:1228)
E/AndroidRuntime( 1006):at android.view.ViewGroup.drawChild
(ViewGroup.java:1484)
E/AndroidRuntime( 1006):at android.view.ViewGroup.dispatchDraw
(ViewGroup.java:1228)
E/AndroidRuntime( 1006):at android.view.View.draw(View.java:5944)
E/AndroidRuntime( 1006):at android.widget.FrameLayout.draw
(FrameLayout.java:352)
E/AndroidRuntime( 1006):at android.view.ViewGroup.drawChild
(ViewGroup.java:1486)
E/AndroidRuntime( 1006):at android.view.ViewGroup.dispatchDraw
(ViewGroup.java:1228)
E/AndroidRuntime( 1006):at android.view.ViewGroup.drawChild
(ViewGroup.java:1484)
E/AndroidRuntime( 1006):at android.view.ViewGroup.dispatchDraw
(ViewGroup.java:1228)
E/AndroidRuntime( 1006):at android.view.View.draw(View.java:5841)
E/AndroidRuntime( 1006):at android.widget.FrameLayout.draw
(FrameLayout.java:352)
E/AndroidRuntime( 1006):at android.view.ViewGroup.drawChild
(ViewGroup.java:1486)
E/AndroidRuntime( 1006):at android.view.ViewGroup.dispatchDraw
(ViewGroup.java:1228)
E/AndroidRuntime( 1006):at android.view.ViewGroup.drawChild
(ViewGroup.java:1484)
E/AndroidRuntime( 1006):at android.view.ViewGroup.dispatchDraw
(ViewGroup.java:1228)
E/AndroidRuntime( 1006):at android.view.ViewGroup.drawChild
(ViewGroup.java:1484)
E/AndroidRuntime( 1006):at android.view.ViewGroup.dispatchDraw
(ViewGroup.java:1228)
E/AndroidRuntime( 1006):at android.view.ViewGroup.drawChild
(ViewGroup.java:1484)
E/AndroidRuntime( 1006):at android.view.ViewGroup.dispatchDraw
(ViewGroup.java:1228)
E/AndroidRuntime( 1006):at android.view.ViewGroup.drawChild
(ViewGroup.java:1484)
E/AndroidRuntime( 1006):at android.view.ViewGroup.dispatchDraw
(ViewGroup.java:1228)
E/AndroidRuntime( 1006):at android.view.View.draw(View.java:5841)
E/AndroidRuntime( 1006):at android.widget.FrameLayout.draw
(FrameLayout.java:352)
E/AndroidRuntime( 1006):at android.view.ViewGroup.drawChild
(ViewGroup.java:1486)
E/AndroidRuntime( 1006):at android.view.ViewGroup.dispatchDraw
(ViewGroup.java:1228)
E/AndroidRuntime( 1006):at android.view.ViewGroup.drawChild
(ViewGroup.java:1484)
E/AndroidRuntime( 1006):at android.view.ViewGroup.dispatchDraw
(ViewGroup.java:1228)
E/AndroidRuntime( 1006):at android.view.View.draw(View.java:5841)
E/AndroidRuntime( 1006):at android.widget.FrameLayout.draw
(FrameLayout.java:352)
E/AndroidRuntime( 1006):at
com.android.internal.policy.impl.PhoneWi

[android-developers] Cupcake Firmware to Dev Phone

2009-05-11 Thread Breno

Hi,
 I have two Dev phones here. One, i updated with HTC Cupcake
firmware, as soon lunched, and the other not. But now, i'd like to
update the other Dev Phone, but, apparently, HTC has removed the
Cupcake Firmware to Dev Phone from site. (http://www.htc.com/www/
support/android/adp.html)  I'm not able to get it.Every time i clicked
on Android 1.5 images, returns to previous page. I tried with Linux,
Windows (firefox) and Internet Explorer, and the same behaviour
happens. Does anybody has this firmware or know some alternative place
to get it? i'd like the original one, not the modified...

Thanks a lot

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



[android-developers] can i load pdf url on webview?

2009-05-11 Thread zeeshan

Hi ,

i am trying to load a pdf file on a webview but it doesn't seem to
work. i am wondering if pdf formate is supported for webview or not?

if not then which file format would be suitable for ebook app contains
images as well?

--~--~-~--~~~---~--~~
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] Back to last activity the user was using, after finishing activity from notification

2009-05-11 Thread denzel

Hi,

I have an main activity that creates a background thread to do some
processing. While this thread is running the user can do other things.
When the background thread needs user input, it shows a notification.
When the user clicks on it, it starts a new activity to handle the
user input. When the input is received it finishes itself, but then
the main activity is shown, and not the last activity that the user
was using.

Is it possible to show the last activity from the user again and not
the main activity from the thread?

Thanks in advance!

Denzel

PS Here is how the new Activity for user input is started:
PendingIntent contentIntent = PendingIntent.getActivity(context, 0,
new Intent(context, UserInputActivity.class), 0);
--~--~-~--~~~---~--~~
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 app got crashed on SDK 1.5 which is working fine on SDK 1.0

2009-05-11 Thread Streets Of Boston

I'm not absolutely sure, but i remember reading that sdk1.5 is much
much more conservative on the allowable depth and width of your
screen's layout.

If you go very deep (from parent-views to child-views) or very wide
(many 'sibling' views), sdk1.1 had a bit of a hard time, but could
handle it. However, sdk1.5 is much more finnicky and may crash if your
view-hierarchy is too deep or wide.

Based on your stack-trace, i count at least 13 'drawChild' calls. This
could be the problem. Try to lessen the number of views in your
layout.

On May 11, 9:04 am, manoj  wrote:
> Hi friends,
>
> I have developed an application which has tabActivity using SDK 1.0
> r2.
>
> 1st Tab contains List view. -> the list contains some images
>
> 2nd and 3rd contains some webviews.
>
> The app works fine on G1 mobile.
>
> Today I downloaded SDK 1.5 and ran the same app on SDK 1.5.
>
> The app got crashed when I scroll down/up the list items very fast
> (fling)
>
> I/dalvikvm( 1006): Stack overflow, expanding (0x41048200 to
> 0x41048000)
> I/dalvikvm( 1006): Shrank stack (to 0x41048200, curFrame is
> 0x41049cd8)
> D/AndroidRuntime( 1006): Shutting down VM
> W/dalvikvm( 1006): threadid=3: thread exiting with uncaught exception
> (group=0x4000fe70)
> E/AndroidRuntime( 1006): Uncaught handler: thread main exiting due to
> uncaught exception
> E/AndroidRuntime( 1006): java.lang.StackOverflowError
> E/AndroidRuntime( 1006):        at android.text.Styled.measureText
> (Styled.java:371)
> E/AndroidRuntime( 1006):        at android.text.Layout.measureText
> (Layout.java:1600)
> E/AndroidRuntime( 1006):        at android.text.Layout.getLineMax
> (Layout.java:654)
> E/AndroidRuntime( 1006):        at android.text.Layout.draw(Layout.java:310)
> E/AndroidRuntime( 1006):        at android.text.BoringLayout.draw
> (BoringLayout.java:356)
> E/AndroidRuntime( 1006):        at android.widget.TextView.onDraw
> (TextView.java:3921)
> E/AndroidRuntime( 1006):        at android.view.View.draw(View.java:5838)
> E/AndroidRuntime( 1006):        at android.view.ViewGroup.drawChild
> (ViewGroup.java:1486)
> E/AndroidRuntime( 1006):        at android.view.ViewGroup.dispatchDraw
> (ViewGroup.java:1228)
> E/AndroidRuntime( 1006):        at android.view.View.buildDrawingCache
> (View.java:5615)
> E/AndroidRuntime( 1006):        at android.view.View.getDrawingCache
> (View.java:5458)
> E/AndroidRuntime( 1006):        at android.view.ViewGroup.drawChild
> (ViewGroup.java:1422)
> E/AndroidRuntime( 1006):        at android.view.ViewGroup.dispatchDraw
> (ViewGroup.java:1228)
> E/AndroidRuntime( 1006):        at android.widget.AbsListView.dispatchDraw
> (AbsListView.java:1319)
> E/AndroidRuntime( 1006):        at android.widget.ListView.dispatchDraw
> (ListView.java:2820)
> E/AndroidRuntime( 1006):        at android.view.View.draw(View.java:5944)
> E/AndroidRuntime( 1006):        at android.widget.AbsListView.draw
> (AbsListView.java:2121)
> E/AndroidRuntime( 1006):        at android.view.ViewGroup.drawChild
> (ViewGroup.java:1486)
> E/AndroidRuntime( 1006):        at android.view.ViewGroup.dispatchDraw
> (ViewGroup.java:1228)
> E/AndroidRuntime( 1006):        at android.view.ViewGroup.drawChild
> (ViewGroup.java:1484)
> E/AndroidRuntime( 1006):        at android.view.ViewGroup.dispatchDraw
> (ViewGroup.java:1228)
> E/AndroidRuntime( 1006):        at android.view.View.draw(View.java:5944)
> E/AndroidRuntime( 1006):        at android.widget.FrameLayout.draw
> (FrameLayout.java:352)
> E/AndroidRuntime( 1006):        at android.view.ViewGroup.drawChild
> (ViewGroup.java:1486)
> E/AndroidRuntime( 1006):        at android.view.ViewGroup.dispatchDraw
> (ViewGroup.java:1228)
> E/AndroidRuntime( 1006):        at android.view.ViewGroup.drawChild
> (ViewGroup.java:1484)
> E/AndroidRuntime( 1006):        at android.view.ViewGroup.dispatchDraw
> (ViewGroup.java:1228)
> E/AndroidRuntime( 1006):        at android.view.View.draw(View.java:5841)
> E/AndroidRuntime( 1006):        at android.widget.FrameLayout.draw
> (FrameLayout.java:352)
> E/AndroidRuntime( 1006):        at android.view.ViewGroup.drawChild
> (ViewGroup.java:1486)
> E/AndroidRuntime( 1006):        at android.view.ViewGroup.dispatchDraw
> (ViewGroup.java:1228)
> E/AndroidRuntime( 1006):        at android.view.ViewGroup.drawChild
> (ViewGroup.java:1484)
> E/AndroidRuntime( 1006):        at android.view.ViewGroup.dispatchDraw
> (ViewGroup.java:1228)
> E/AndroidRuntime( 1006):        at android.view.ViewGroup.drawChild
> (ViewGroup.java:1484)
> E/AndroidRuntime( 1006):        at android.view.ViewGroup.dispatchDraw
> (ViewGroup.java:1228)
> E/AndroidRuntime( 1006):        at android.view.ViewGroup.drawChild
> (ViewGroup.java:1484)
> E/AndroidRuntime( 1006):        at android.view.ViewGroup.dispatchDraw
> (ViewGroup.java:1228)
> E/AndroidRuntime( 1006):        at android.view.ViewGroup.drawChild
> (ViewGroup.java:1484)
> E/AndroidRuntime( 1006):        at android.view.ViewGroup.dispatchDraw
> (ViewGroup.java:1228)
> E/And

[android-developers] Re: why webview swap load new url only after animation?

2009-05-11 Thread zeeshan

any help?

On May 8, 3:21 pm, zeeshan  wrote:
> Hi,
>
> i need to load several url to a webview in animated transition. i used
> 2 webviews; prev_view and next_view.
>
> if we click on next button, next_view will appear with right to left
> animation covering the prev_view underneath.
> on back press. next_view will move left to right showing the
> prev_view.
>
> like a book pages
>
> problem:
>
> as i have 100 urls(local html files) to load on webview, each time i
> need to load new url while animation but it does animate the old one
> and after animation end shows the new url.
>
> is it possible to disable the cache and load new url while animation?
--~--~-~--~~~---~--~~
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] Widget opening a dialog instead of the browser...

2009-05-11 Thread Jiri

Hello,

I'm trying to create my first widget for Android according to the
SimpleWiktionary example. In this example is shown how to open a web
browser after tapping on the widget. Can somebody explain me how to
open and other activity then the browser, for example a Dialog?

Best regards,
Jiri
--~--~-~--~~~---~--~~
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: About PinyinIME in android-1.5

2009-05-11 Thread Yuan Kwok

where are you looking for the PinyinIME? from the T-mobile official
release or the official SDK emulator?
I don't have a real phone for dev, but the PinyinIME can be found in
the emulator(remember to kick off the emulator with a avd of firmware
version 1.5)

when you press and hold in an input box for a while, the PInyinIME can
be found in the contextMenu. (you may need to switch the default
locale to Chinese)

On Mon, May 11, 2009 at 10:39, moontain  wrote:
> Hi,
>
> When I get code with following repo init command to get the official android
> 1.5 code, I can't find the PinyinIME project, but it is in the cupcake
> code(-b cupcake). Why it is dropped in the official version? Is this because
> license issue or something else? Thanks
>
> repo init -u git://android.git.kernel.org/platform/manifest.git -b
> android-1.5
>
> Regards,
> Moontain
>
>
> >
>

--~--~-~--~~~---~--~~
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] Widget design in Gimp

2009-05-11 Thread Jose de Paula Eufrasio Junior
So, I was reading this thread:
http://groups.google.com/group/android-discuss/browse_thread/thread/74d0cac4c3b5525d

Does anyone here use Gimp to adjust the widget sizes and shadow? Or I am
really limited to Photoshop?

-- 
José de Paula Eufrásio Júnior (coredump)
MCSO, GRC Professional
http://core.eti.br

--~--~-~--~~~---~--~~
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] Which Android Library Support for Google Applications

2009-05-11 Thread beachboy

>From reading through the internet it seems as though the GDATA API
Library is not not supported on Android. Is there any library
available that can run on Android that provides equivalent
functionality?

--~--~-~--~~~---~--~~
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 app got crashed on SDK 1.5 which is working fine on SDK 1.0

2009-05-11 Thread Filipe Abrantes

I remember reading that Tabs would add also 3 levels (in depth) to your 
layout, so you need to be even more restricitve on the layout when using 
them.

Cheers,
Filipe

Streets Of Boston wrote:
> I'm not absolutely sure, but i remember reading that sdk1.5 is much
> much more conservative on the allowable depth and width of your
> screen's layout.
>
> If you go very deep (from parent-views to child-views) or very wide
> (many 'sibling' views), sdk1.1 had a bit of a hard time, but could
> handle it. However, sdk1.5 is much more finnicky and may crash if your
> view-hierarchy is too deep or wide.
>
> Based on your stack-trace, i count at least 13 'drawChild' calls. This
> could be the problem. Try to lessen the number of views in your
> layout.
>
> On May 11, 9:04 am, manoj  wrote:
>   
>> Hi friends,
>>
>> I have developed an application which has tabActivity using SDK 1.0
>> r2.
>>
>> 1st Tab contains List view. -> the list contains some images
>>
>> 2nd and 3rd contains some webviews.
>>
>> The app works fine on G1 mobile.
>>
>> Today I downloaded SDK 1.5 and ran the same app on SDK 1.5.
>>
>> The app got crashed when I scroll down/up the list items very fast
>> (fling)
>>
>> I/dalvikvm( 1006): Stack overflow, expanding (0x41048200 to
>> 0x41048000)
>> I/dalvikvm( 1006): Shrank stack (to 0x41048200, curFrame is
>> 0x41049cd8)
>> D/AndroidRuntime( 1006): Shutting down VM
>> W/dalvikvm( 1006): threadid=3: thread exiting with uncaught exception
>> (group=0x4000fe70)
>> E/AndroidRuntime( 1006): Uncaught handler: thread main exiting due to
>> uncaught exception
>> E/AndroidRuntime( 1006): java.lang.StackOverflowError
>> E/AndroidRuntime( 1006):at android.text.Styled.measureText
>> (Styled.java:371)
>> E/AndroidRuntime( 1006):at android.text.Layout.measureText
>> (Layout.java:1600)
>> E/AndroidRuntime( 1006):at android.text.Layout.getLineMax
>> (Layout.java:654)
>> E/AndroidRuntime( 1006):at android.text.Layout.draw(Layout.java:310)
>> E/AndroidRuntime( 1006):at android.text.BoringLayout.draw
>> (BoringLayout.java:356)
>> E/AndroidRuntime( 1006):at android.widget.TextView.onDraw
>> (TextView.java:3921)
>> E/AndroidRuntime( 1006):at android.view.View.draw(View.java:5838)
>> E/AndroidRuntime( 1006):at android.view.ViewGroup.drawChild
>> (ViewGroup.java:1486)
>> E/AndroidRuntime( 1006):at android.view.ViewGroup.dispatchDraw
>> (ViewGroup.java:1228)
>> E/AndroidRuntime( 1006):at android.view.View.buildDrawingCache
>> (View.java:5615)
>> E/AndroidRuntime( 1006):at android.view.View.getDrawingCache
>> (View.java:5458)
>> E/AndroidRuntime( 1006):at android.view.ViewGroup.drawChild
>> (ViewGroup.java:1422)
>> E/AndroidRuntime( 1006):at android.view.ViewGroup.dispatchDraw
>> (ViewGroup.java:1228)
>> E/AndroidRuntime( 1006):at android.widget.AbsListView.dispatchDraw
>> (AbsListView.java:1319)
>> E/AndroidRuntime( 1006):at android.widget.ListView.dispatchDraw
>> (ListView.java:2820)
>> E/AndroidRuntime( 1006):at android.view.View.draw(View.java:5944)
>> E/AndroidRuntime( 1006):at android.widget.AbsListView.draw
>> (AbsListView.java:2121)
>> E/AndroidRuntime( 1006):at android.view.ViewGroup.drawChild
>> (ViewGroup.java:1486)
>> E/AndroidRuntime( 1006):at android.view.ViewGroup.dispatchDraw
>> (ViewGroup.java:1228)
>> E/AndroidRuntime( 1006):at android.view.ViewGroup.drawChild
>> (ViewGroup.java:1484)
>> E/AndroidRuntime( 1006):at android.view.ViewGroup.dispatchDraw
>> (ViewGroup.java:1228)
>> E/AndroidRuntime( 1006):at android.view.View.draw(View.java:5944)
>> E/AndroidRuntime( 1006):at android.widget.FrameLayout.draw
>> (FrameLayout.java:352)
>> E/AndroidRuntime( 1006):at android.view.ViewGroup.drawChild
>> (ViewGroup.java:1486)
>> E/AndroidRuntime( 1006):at android.view.ViewGroup.dispatchDraw
>> (ViewGroup.java:1228)
>> E/AndroidRuntime( 1006):at android.view.ViewGroup.drawChild
>> (ViewGroup.java:1484)
>> E/AndroidRuntime( 1006):at android.view.ViewGroup.dispatchDraw
>> (ViewGroup.java:1228)
>> E/AndroidRuntime( 1006):at android.view.View.draw(View.java:5841)
>> E/AndroidRuntime( 1006):at android.widget.FrameLayout.draw
>> (FrameLayout.java:352)
>> E/AndroidRuntime( 1006):at android.view.ViewGroup.drawChild
>> (ViewGroup.java:1486)
>> E/AndroidRuntime( 1006):at android.view.ViewGroup.dispatchDraw
>> (ViewGroup.java:1228)
>> E/AndroidRuntime( 1006):at android.view.ViewGroup.drawChild
>> (ViewGroup.java:1484)
>> E/AndroidRuntime( 1006):at android.view.ViewGroup.dispatchDraw
>> (ViewGroup.java:1228)
>> E/AndroidRuntime( 1006):at android.view.ViewGroup.drawChild
>> (ViewGroup.java:1484)
>> E/AndroidRuntime( 1006):at android.view.ViewGroup.dispatchDraw
>> (ViewGroup.java:1228)
>> E/AndroidRuntime( 1006):at android.view.ViewGroup.drawChild
>>

[android-developers] Re: The app got crashed on SDK 1.5 which is working fine on SDK 1.0

2009-05-11 Thread manoj

can you please suggest me how to restrict the layout?

Thanks,
Manoj.

On May 11, 6:56 pm, Filipe Abrantes  wrote:
> I remember reading that Tabs would add also 3 levels (in depth) to your
> layout, so you need to be even more restricitve on the layout when using
> them.
>
> Cheers,
> Filipe
>
> Streets Of Boston wrote:
> > I'm not absolutely sure, but i remember reading that sdk1.5 is much
> > much more conservative on the allowable depth and width of your
> > screen's layout.
>
> > If you go very deep (from parent-views to child-views) or very wide
> > (many 'sibling' views), sdk1.1 had a bit of a hard time, but could
> > handle it. However, sdk1.5 is much more finnicky and may crash if your
> > view-hierarchy is too deep or wide.
>
> > Based on your stack-trace, i count at least 13 'drawChild' calls. This
> > could be the problem. Try to lessen the number of views in your
> > layout.
>
> > On May 11, 9:04 am, manoj  wrote:
>
> >> Hi friends,
>
> >> I have developed an application which has tabActivity using SDK 1.0
> >> r2.
>
> >> 1st Tab contains List view. -> the list contains some images
>
> >> 2nd and 3rd contains some webviews.
>
> >> The app works fine on G1 mobile.
>
> >> Today I downloaded SDK 1.5 and ran the same app on SDK 1.5.
>
> >> The app got crashed when I scroll down/up the list items very fast
> >> (fling)
>
> >> I/dalvikvm( 1006): Stack overflow, expanding (0x41048200 to
> >> 0x41048000)
> >> I/dalvikvm( 1006): Shrank stack (to 0x41048200, curFrame is
> >> 0x41049cd8)
> >> D/AndroidRuntime( 1006): Shutting down VM
> >> W/dalvikvm( 1006): threadid=3: thread exiting with uncaught exception
> >> (group=0x4000fe70)
> >> E/AndroidRuntime( 1006): Uncaught handler: thread main exiting due to
> >> uncaught exception
> >> E/AndroidRuntime( 1006): java.lang.StackOverflowError
> >> E/AndroidRuntime( 1006):        at android.text.Styled.measureText
> >> (Styled.java:371)
> >> E/AndroidRuntime( 1006):        at android.text.Layout.measureText
> >> (Layout.java:1600)
> >> E/AndroidRuntime( 1006):        at android.text.Layout.getLineMax
> >> (Layout.java:654)
> >> E/AndroidRuntime( 1006):        at 
> >> android.text.Layout.draw(Layout.java:310)
> >> E/AndroidRuntime( 1006):        at android.text.BoringLayout.draw
> >> (BoringLayout.java:356)
> >> E/AndroidRuntime( 1006):        at android.widget.TextView.onDraw
> >> (TextView.java:3921)
> >> E/AndroidRuntime( 1006):        at android.view.View.draw(View.java:5838)
> >> E/AndroidRuntime( 1006):        at android.view.ViewGroup.drawChild
> >> (ViewGroup.java:1486)
> >> E/AndroidRuntime( 1006):        at android.view.ViewGroup.dispatchDraw
> >> (ViewGroup.java:1228)
> >> E/AndroidRuntime( 1006):        at android.view.View.buildDrawingCache
> >> (View.java:5615)
> >> E/AndroidRuntime( 1006):        at android.view.View.getDrawingCache
> >> (View.java:5458)
> >> E/AndroidRuntime( 1006):        at android.view.ViewGroup.drawChild
> >> (ViewGroup.java:1422)
> >> E/AndroidRuntime( 1006):        at android.view.ViewGroup.dispatchDraw
> >> (ViewGroup.java:1228)
> >> E/AndroidRuntime( 1006):        at android.widget.AbsListView.dispatchDraw
> >> (AbsListView.java:1319)
> >> E/AndroidRuntime( 1006):        at android.widget.ListView.dispatchDraw
> >> (ListView.java:2820)
> >> E/AndroidRuntime( 1006):        at android.view.View.draw(View.java:5944)
> >> E/AndroidRuntime( 1006):        at android.widget.AbsListView.draw
> >> (AbsListView.java:2121)
> >> E/AndroidRuntime( 1006):        at android.view.ViewGroup.drawChild
> >> (ViewGroup.java:1486)
> >> E/AndroidRuntime( 1006):        at android.view.ViewGroup.dispatchDraw
> >> (ViewGroup.java:1228)
> >> E/AndroidRuntime( 1006):        at android.view.ViewGroup.drawChild
> >> (ViewGroup.java:1484)
> >> E/AndroidRuntime( 1006):        at android.view.ViewGroup.dispatchDraw
> >> (ViewGroup.java:1228)
> >> E/AndroidRuntime( 1006):        at android.view.View.draw(View.java:5944)
> >> E/AndroidRuntime( 1006):        at android.widget.FrameLayout.draw
> >> (FrameLayout.java:352)
> >> E/AndroidRuntime( 1006):        at android.view.ViewGroup.drawChild
> >> (ViewGroup.java:1486)
> >> E/AndroidRuntime( 1006):        at android.view.ViewGroup.dispatchDraw
> >> (ViewGroup.java:1228)
> >> E/AndroidRuntime( 1006):        at android.view.ViewGroup.drawChild
> >> (ViewGroup.java:1484)
> >> E/AndroidRuntime( 1006):        at android.view.ViewGroup.dispatchDraw
> >> (ViewGroup.java:1228)
> >> E/AndroidRuntime( 1006):        at android.view.View.draw(View.java:5841)
> >> E/AndroidRuntime( 1006):        at android.widget.FrameLayout.draw
> >> (FrameLayout.java:352)
> >> E/AndroidRuntime( 1006):        at android.view.ViewGroup.drawChild
> >> (ViewGroup.java:1486)
> >> E/AndroidRuntime( 1006):        at android.view.ViewGroup.dispatchDraw
> >> (ViewGroup.java:1228)
> >> E/AndroidRuntime( 1006):        at android.view.ViewGroup.drawChild
> >> (ViewGroup.java:1484)
> >> E/AndroidRuntime( 1006):        at android.view.ViewGroup.dis

[android-developers] Re: The app got crashed on SDK 1.5 which is working fine on SDK 1.0

2009-05-11 Thread manoj

How can I lessen the number of views in my layout?

can you please suggest me in detail?

Thanks,
Manoj.

On May 11, 6:19 pm, Streets Of Boston  wrote:
> I'm not absolutely sure, but i remember reading that sdk1.5 is much
> much more conservative on the allowable depth and width of your
> screen's layout.
>
> If you go very deep (from parent-views to child-views) or very wide
> (many 'sibling' views), sdk1.1 had a bit of a hard time, but could
> handle it. However, sdk1.5 is much more finnicky and may crash if your
> view-hierarchy is too deep or wide.
>
> Based on your stack-trace, i count at least 13 'drawChild' calls. This
> could be the problem. Try to lessen the number of views in your
> layout.
>
> On May 11, 9:04 am, manoj  wrote:
>
> > Hi friends,
>
> > I have developed an application which has tabActivity using SDK 1.0
> > r2.
>
> > 1st Tab contains List view. -> the list contains some images
>
> > 2nd and 3rd contains some webviews.
>
> > The app works fine on G1 mobile.
>
> > Today I downloaded SDK 1.5 and ran the same app on SDK 1.5.
>
> > The app got crashed when I scroll down/up the list items very fast
> > (fling)
>
> > I/dalvikvm( 1006): Stack overflow, expanding (0x41048200 to
> > 0x41048000)
> > I/dalvikvm( 1006): Shrank stack (to 0x41048200, curFrame is
> > 0x41049cd8)
> > D/AndroidRuntime( 1006): Shutting down VM
> > W/dalvikvm( 1006): threadid=3: thread exiting with uncaught exception
> > (group=0x4000fe70)
> > E/AndroidRuntime( 1006): Uncaught handler: thread main exiting due to
> > uncaught exception
> > E/AndroidRuntime( 1006): java.lang.StackOverflowError
> > E/AndroidRuntime( 1006):        at android.text.Styled.measureText
> > (Styled.java:371)
> > E/AndroidRuntime( 1006):        at android.text.Layout.measureText
> > (Layout.java:1600)
> > E/AndroidRuntime( 1006):        at android.text.Layout.getLineMax
> > (Layout.java:654)
> > E/AndroidRuntime( 1006):        at android.text.Layout.draw(Layout.java:310)
> > E/AndroidRuntime( 1006):        at android.text.BoringLayout.draw
> > (BoringLayout.java:356)
> > E/AndroidRuntime( 1006):        at android.widget.TextView.onDraw
> > (TextView.java:3921)
> > E/AndroidRuntime( 1006):        at android.view.View.draw(View.java:5838)
> > E/AndroidRuntime( 1006):        at android.view.ViewGroup.drawChild
> > (ViewGroup.java:1486)
> > E/AndroidRuntime( 1006):        at android.view.ViewGroup.dispatchDraw
> > (ViewGroup.java:1228)
> > E/AndroidRuntime( 1006):        at android.view.View.buildDrawingCache
> > (View.java:5615)
> > E/AndroidRuntime( 1006):        at android.view.View.getDrawingCache
> > (View.java:5458)
> > E/AndroidRuntime( 1006):        at android.view.ViewGroup.drawChild
> > (ViewGroup.java:1422)
> > E/AndroidRuntime( 1006):        at android.view.ViewGroup.dispatchDraw
> > (ViewGroup.java:1228)
> > E/AndroidRuntime( 1006):        at android.widget.AbsListView.dispatchDraw
> > (AbsListView.java:1319)
> > E/AndroidRuntime( 1006):        at android.widget.ListView.dispatchDraw
> > (ListView.java:2820)
> > E/AndroidRuntime( 1006):        at android.view.View.draw(View.java:5944)
> > E/AndroidRuntime( 1006):        at android.widget.AbsListView.draw
> > (AbsListView.java:2121)
> > E/AndroidRuntime( 1006):        at android.view.ViewGroup.drawChild
> > (ViewGroup.java:1486)
> > E/AndroidRuntime( 1006):        at android.view.ViewGroup.dispatchDraw
> > (ViewGroup.java:1228)
> > E/AndroidRuntime( 1006):        at android.view.ViewGroup.drawChild
> > (ViewGroup.java:1484)
> > E/AndroidRuntime( 1006):        at android.view.ViewGroup.dispatchDraw
> > (ViewGroup.java:1228)
> > E/AndroidRuntime( 1006):        at android.view.View.draw(View.java:5944)
> > E/AndroidRuntime( 1006):        at android.widget.FrameLayout.draw
> > (FrameLayout.java:352)
> > E/AndroidRuntime( 1006):        at android.view.ViewGroup.drawChild
> > (ViewGroup.java:1486)
> > E/AndroidRuntime( 1006):        at android.view.ViewGroup.dispatchDraw
> > (ViewGroup.java:1228)
> > E/AndroidRuntime( 1006):        at android.view.ViewGroup.drawChild
> > (ViewGroup.java:1484)
> > E/AndroidRuntime( 1006):        at android.view.ViewGroup.dispatchDraw
> > (ViewGroup.java:1228)
> > E/AndroidRuntime( 1006):        at android.view.View.draw(View.java:5841)
> > E/AndroidRuntime( 1006):        at android.widget.FrameLayout.draw
> > (FrameLayout.java:352)
> > E/AndroidRuntime( 1006):        at android.view.ViewGroup.drawChild
> > (ViewGroup.java:1486)
> > E/AndroidRuntime( 1006):        at android.view.ViewGroup.dispatchDraw
> > (ViewGroup.java:1228)
> > E/AndroidRuntime( 1006):        at android.view.ViewGroup.drawChild
> > (ViewGroup.java:1484)
> > E/AndroidRuntime( 1006):        at android.view.ViewGroup.dispatchDraw
> > (ViewGroup.java:1228)
> > E/AndroidRuntime( 1006):        at android.view.ViewGroup.drawChild
> > (ViewGroup.java:1484)
> > E/AndroidRuntime( 1006):        at android.view.ViewGroup.dispatchDraw
> > (ViewGroup.java:1228)
> > E/AndroidRuntime( 1006):        at and

[android-developers] Re: Widget design in Gimp

2009-05-11 Thread Jiri

I have been facing the same problem. First I wanted to create my own
widget background but then I have downloaded one of the examples of
the background from this site (http://developer.android.com/guide/
practices/ui_guidelines/widget_design.html). Then I have used the
draw9patch utility (part of the Android SDK -
http://developer.android.com/guide/developing/tools/draw9patch.html)
to allow stretch the picture in any different size with correct
proportion. Using this utility you don't have to have precise size of
the background image because it will be resized as required.

This way, I have got the same look and feel of the widget background
what original Google widgets have.

Cheers,
Jiri


On May 11, 3:31 pm, Jose de Paula Eufrasio Junior
 wrote:
> So, I was reading this 
> thread:http://groups.google.com/group/android-discuss/browse_thread/thread/7...
>
> Does anyone here use Gimp to adjust the widget sizes and shadow? Or I am
> really limited to Photoshop?
>
> --
> José de Paula Eufrásio Júnior (coredump)
> MCSO, GRC Professionalhttp://core.eti.br
--~--~-~--~~~---~--~~
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] How to remove the tab on android backgournd

2009-05-11 Thread Vingo Cheng
All:

 I would like to change the android behaviour. Who know which code or how 
to remove the tab on the android ? There is a tab page on the android desktop 
and user can drop the tab to open the page (there are the application installed 
in the page view). I would like to remove the whole page from the destkop. who 
know how or what is the related source codes ?

 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] debug application - gdb

2009-05-11 Thread Maha

Hi,

   Please tell me how to debug application using gdb

Thanks,
Maha
--~--~-~--~~~---~--~~
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: Detecting new video

2009-05-11 Thread kiriri

Up
Someone has an idea?
--~--~-~--~~~---~--~~
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 id of array in spinner

2009-05-11 Thread daehoon

Here is code

Spinner s = (Spinner) findViewById(R.id.spinner);
ArrayAdapter adapter = ArrayAdapter.createFromResource(
this, R.array.planets,
android.R.layout.simple_spinner_item);
adapter.setDropDownViewResource
(android.R.layout.simple_spinner_dropdown_item);
s.setAdapter(adapter);


first
second
third


I want to use id of array to call other class.
something like this  swith(i) : case 0: Intent i = new Intent(this,
xxx.class);
 startActivity
(i);
  case 1:
x
how to write exactly. Can anyone help?
--~--~-~--~~~---~--~~
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] Voice search on ADP1 + 1.5: 'Connection problem'

2009-05-11 Thread BoD

Hi.

Since I installed the 1.5 firmware from HTC's website on my ADP1, the
voice search feature doesn't work and gives immediately a 'Connection
problem' message.
I don't think it's a network problem since everything else works
normally.
I don't know if this is might be the problem, but I'm not in the US
(but in France).

Thanks for your help!

BoD
--~--~-~--~~~---~--~~
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: Why supports Typeface.createFromAsset only?

2009-05-11 Thread freeanderson

My opinion is not related 'solution'. I said 'why'.
And see. not nobody.
http://groups.google.com/group/android-developers/search?group=android-developers&q=typeface&qt_g=Search+this+group
And I don't think that the feature of reading from asset is more
necessary than from a file.

If you don't know the reason, just pass. that is enough.
I didn't expect reply like 'YOU DO MAKE IT'.

On May 11, 4:05 pm, Raphael  wrote:
> On Sun, May 10, 2009 at 7:57 PM, freeanderson  wrote:
>
> > just cause of time? i guess it seems to be intended.
> > it doesn't make a sense. I've saw JNI source of Android.
> > FileInputStream is much easier than extracting from assets resources.
>
> Maybe nobody needed the feature. Just contribute it if it's that easy.
>
> R/
>
>
>
> > On May 11, 11:15 am, Dianne Hackborn  wrote:
> >> I don't know, but it could be just that nobody had time to do it.  You 
> >> could
> >> contribute a patch if you strongly want it.
>
> >> On Sun, May 10, 2009 at 4:11 PM, freeanderson 
> >> wrote:
>
> >> > Hi.
>
> >> > The Typeface can not read a TTF font from external file.
> >> > I just want to know why.
> >> > Why this feature is denied even in 1.5r1?
> >> > And have any plan to open the feature?
>
> >> --
> >> 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: Why supports Typeface.createFromAsset only?

2009-05-11 Thread Romain Guy

> And I don't think that the feature of reading from asset is more
> necessary than from a file.

It is, because it allows apps (and games notably) to bundle fonts in the apk.

-- 
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: Soft Keyboard Question

2009-05-11 Thread lvwz2008
  you can make a Activity that include only a ImageView ,


likr this:






--



在2009-05-10,csyperski  写道:
>
>I have a class that extends ImageView, which also handles keyboard
>input, currently via OnKeyListener, which works great with the 1.1
>sdk, but how do I port this to the 1.5 sdk?  How do I get the soft
>keyboard to load for this View?  I haven't found a ton of
>documentation regarding the new input framework.  Any nudge in the
>right direction would be great.
>
>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: WebView in the 1.5 SDK

2009-05-11 Thread daniel.benedykt

I am having the same problem on 1.5
Does anyone have a solution for this?

Thanks

Daniel

On Apr 28, 2:29 pm, Kenn Min Chong  wrote:
> Hi Richard!
>    I'm getting this same issue too. Prior to1.5, theWebViewobject
> will display the page within the same view. Now with1.5, for some
> sites, the app will open up a new view and basically open the page
> there instead. Pressing the "back" button will move the view back to
> the main app view. Is there a way to have it display on the main app
> view/window everytime?
>
> Kenn.
>
> On Apr 22, 12:50 pm, jarkman  wrote:
>
> > That's a relief - thanks!
>
> > Do you know anything about changes inwebViewfor1.5which might
> > explain the non-appearance of the content ?
>
> > Thanks,
>
> > Richard
>
> > On Apr 22, 5:13 pm, Mike Hearn  wrote:
>
> > > It's not deprecated, it's a bug in the droiddoc tool - deprecating a
> > > class marks all its subclasses as deprecated too, which doesn't make
> > > sense. I fixed this bug in the public tree some months ago, but it
> > > appears the fix did not propagate to Googles internal tree.
>
> > > Ignore it.WebViewis not deprecated.
>
> > > On Apr 22, 5:01 pm, jarkman  wrote:
>
> > > > We're porting our apps to the1.5preview SDK. That has mostly been
> > > > prettty painless, but we do have aWebViewwhich is not showing any
> > > > content, for reasons which are currently unknown.
>
> > > > Looking in the1.5SDK docs, I see thatWebViewis deprecated. The
> > > > recommendation there is to use a FrameLayout, RelativeLayout, or a
> > > > custom layout instead.
>
> > > > I don't understand that recommendation, since FrameLayout and
> > > > RelativeLayout don't do the thing thatWebViewdoes best - showing a
> > > > bunch of HTML content pulled down from our server at runtime.
>
> > > > So, what am I missing ? CanWebViewreally be simulated with a
> > > > FrameLayout ?
>
> > > > Thanks,
>
> > > > Richard
>
>
--~--~-~--~~~---~--~~
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: where does the "net.XXX.dns1" be set?

2009-05-11 Thread François Guillemé
in /etc/ppp/ip-up when ppp has established the connection

2009/5/11 www_...@yahoo.com.cn 

>
> Dear all
>   In file mobiledatastatetracker.java, sDnsPropNames is definde about
> dsn server.
>   I do not find where the "net.xxx.dns1" or "net.xxx.dns2" be set.
>   Are there anybody can help me ?
> >
>


-- 
François

--~--~-~--~~~---~--~~
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: Calendar Apps missing in Android 1.5 SDK

2009-05-11 Thread zlu

+1

On May 11, 5:31 am, Shrikant Agrawal  wrote:
> Hi Guys,
>
> It seems that there is no calendar app in the android 1.5 sdk.
>
> Actually in my app i want to retreive the information stored in the
> calendar app in  android. But I cant find the classes in Android
> 1.5 .
>
> Is calendar omitted from the 1.5 release or I am not able to find it?
> Can anyone help me this??
>
> If calendar apis are omitted then how can i find the events/meeting
> infrmation stored in the calendar app of the phone.
>
> Thanks
> Shrikant
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Using SQLite for caching and serialization options

2009-05-11 Thread hapciu

Hi Alan,

I have an almost identical problem. What approach did you take after
all ?

So far I'm thinking of:
- use a common table for the fields of the superclass, and a table for
each in subclass (the subclass fields). This is overkill.
- flatten the subclass fields and put them in the database as byte[] -
here I'm not very clear if I should use serialization or parcelables

Thanks,
H


On Apr 15, 9:59 am, Alan Jones  wrote:
> Hi,
>
> On Apr 14, 4:27 am, "nEx.Software"  wrote:
>
> > You could use an object-oriented database such 
> > ashttp://www.db4o.com/android/,
> > of course this one requires GPL.
>
> Interesting link, thanks. Though at this stage I won't be releasing
> this under GPL so
> that's not an option yet.
>
> Does anyone have suggestions regarding this? Information on overhead
> of serializing would
> be hugely helpful in deciding how to approach this.
>
> Cheers,
>
> Alan.
--~--~-~--~~~---~--~~
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 could i load kml files with gmaps api ?

2009-05-11 Thread LEMESLE Philippe
would someone could help me ?

i tried the code :
http://groups.google.com/group/android-developers/browse_thread/thread/45f8d9b6e24f60f0

Intent mapIntent = new Intent(Intent.ACTION_VIEW, uri);
Uri uri1 = Uri.parse("geo:0,0?q=http://code.google.com/apis/kml/
documentation/KML_Samples.kml");
mapIntent.setData(uri1);
startActivity(Intent.createChooser(mapIntent, "Sample Map "));


without succes ...

overlays in kml are not loaded ...


De : android-developers@googlegroups.com 
[mailto:android-develop...@googlegroups.com] De la part de LEMESLE Philippe
Envoyé : mardi 5 mai 2009 12:02
À : 'android-developers@googlegroups.com'
Objet : [android-developers] How could i load kml files with gmaps api ?

Hi,

i tried to find how i could load kml file but without success ...

could someone help me ?

thanks,


philippe



--~--~-~--~~~---~--~~
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] Interrupt testing

2009-05-11 Thread Raja Nagendra Kumar

Hi,

What is the process of Interrupt testing of Android applications.
Looking to know how to destroy all the background activities of the
application any time of the test and see if the application is
behaving well.

Any good place to know the detailed procedure..

Is Android has any thing Andriod Certified (3rd party testing to
certify) like the Java Verified cert approach.

Regards,
Raja Nagendra Kumar,
C.T.O
www.tejasoft.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] How to get the used memory (ram) by a task/process?

2009-05-11 Thread Morpheo

Hi everybody,

I have a List of RunningTasks:

ActivityManager am = (ActivityManager)getSystemService
(ACTIVITY_SERVICE);
List list = am.getRunningTasks
(10);

and i can to get the app icon of each Task (i.e.):

pm = getPackageManager();
pm.getApplicationIcon("com.giu.browser");

Now, how can I get the memory used by a Task? I don't find nothing
like that in the api reference.
The class RunningTaskInfo has not nothing about memory used.

Any idea?

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] android create avd - usage in ant

2009-05-11 Thread Raja Nagendra Kumar

Hi,

Is there a way to create avd profile using ant. The create avd is
using java which inturn expects a user input to customize or no.
SDK 1.1 was using mostly ant tags to automate the build however in
1.5r1 we see Java Class doing lot of things internally.

is there any work around to this.. basically we are looking to create
a default profile using exec and it should assume that users answer is
no or what ever is the default value.

Regards,
Raja Nagendra Kumar,
C.T.O
www.tejasoft.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: install unsuccessful on my g1 with 1.5 sdk

2009-05-11 Thread Hayden

I've completely removed the "minsdkversion" from my manifest file and
the error still persists. I created an AVD running 1.1, and the
emulator runs it fine as well. It has to be some kind of change from
1.1 to the 1.5 SDK.  Any ideas?

On May 10, 4:27 pm, Hayden  wrote:
> Today I tried to install my app with the the apk created with the 1.5
> sdk and I keep getting "install unsuccessful."  It worked fine under
> the 1.1 sdk.  The only thing I can think would cause a problem is the
> new "minsdkversion" which I have tried values 1 and 2 (my g1 has US
> rc33).  The 1.5 sdk emulator has no problem installing my app.  Any
> ideas what the problem may be?
--~--~-~--~~~---~--~~
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: Problems with Cupcake OTA update for ADP1

2009-05-11 Thread Disconnect
There is no OTA for adp1. HTC offers it as a direct download. Is that what
you meant?

On Mon, May 11, 2009 at 2:32 AM, Agus  wrote:

> I am using ADP1 and recently received Cupcake OTA update.
> now the "adb devices" command does not list my G1, and there are some
> problems when opening Calendar and Market app.
> Both the Calendar and Market app now auto-close immediately as soon as they
> are opened.
>
> Maybe I shouldn't have run the Cupcake update.
> How do I downgrade my firmware?
>
>
> Model number: Android Dev Phone 1
> Firmware version: 1.5
> Baseband version: 62.505.20.17TH_2.22.19.26I
> Kernel Version:
> 2.6.27-00392-g8312baf
> android-bu...@apa27 #72
> Build number: CRB21
>
>
>
> >
>

--~--~-~--~~~---~--~~
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: VerifyError with Maps Add-ons

2009-05-11 Thread Zach Hobbs

Not doing any instrumentation tests.  The superclass of
MusicMapActivity is com.google.android.maps.MapActivity, so how could
this class not be found? I do have "" in my Manifest under my
 tag.

Thanks,
-Zach



On May 8, 4:15 pm, fadden  wrote:
> On May 7, 12:52 pm, Zach Hobbs  wrote:
>
> > 05-07 15:44:32.024: WARN/dalvikvm(16630): Unable to resolve superclass
> > of Lcom/tunewiki/lyricplayer/android/community/maps/MusicMapActivity;
> > (210)
> > 05-07 15:44:32.024: WARN/dalvikvm(16630): Link of class 'Lcom/tunewiki/
> > lyricplayer/android/community/maps/MusicMapActivity;' failed
>
> The superclass of MusicMapActivity couldn't be found.  This prevented
> the class from being loaded.  Then, when VideoPlayer.launchMusicApp()
> tried to refer to it, the verifier got irked:
>
> > 05-07 15:44:32.024: ERROR/dalvikvm(16630): Could not find class
> > 'com.tunewiki.lyricplayer.android.community.maps.MusicMapActivity',
> > referenced from method
> > com.tunewiki.lyricplayer.android.player.VideoPlayer.launchMusicMap
>
> So your basic problem isn't aVerifyError, but rather that the
> superclass of your MusicMapActivity wasn't available from the class
> loader.  I don't know why this would vary from run to run.  I've heard
> of some strange things happening with instrumentation tests; are you
> using those 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] Alert Text box value read error

2009-05-11 Thread N V

Hello all,

I've been trying to access the values of the EditTexts in the alert
dialog text entry API demo. I've added two lines to the code in the
onClick method for the

case DIALOG_TEXT_ENTRY: // This example shows how to add a custom
layout to an AlertDialog LayoutInflater factory = LayoutInflater.from
(this);
final View textEntryView = factory.inflate
(R.layout.alert_dialog_text_entry, null);
return new AlertDialog.Builder(AlertDialogSamples.this) .
setIcon(R.drawable.alert_dialog_icon) .setTitle
(R.string.alert_dialog_text_entry) .
setView(textEntryView) .setPositiveButton(R.string.alert_dialog_ok,
newDialogInterface.OnClickListener()
 {
 public void onClick(DialogInterface dialog, int whichButton) {

/* User clicked OK so do some stuff */
 EditText userNameEt= (EditText) findViewById(R.id.username_edit);
 String userName= userNameEt.getText().toString();

} }) .setNegativeButton(R.string.alert_dialog_cancel, new
DialogInterface.OnClickListener() { public void onClick
(DialogInterface dialog, int whichButton) {

/* User clicked cancel so do some stuff */ } })
 .create();
}

It runs fine until i press the "Ok" button. I then get an "application
closed unexpectadly" error. What is the correct way to access the
values 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: The app got crashed on SDK 1.5 which is working fine on SDK 1.0

2009-05-11 Thread jarkman

Look at your app with the Hierarchy Viewer, and look at ways to
reimplement parts of your UI so that the hierarchy is shallower.

So, for example, you might replace two nested LinearLayouts with one
RelativeLayout, to get the same result with a shallower tree.

You could also take a look at Romain Guy's blog article on the
subject:
http://android-developers.blogspot.com/2009/03/android-layout-tricks-3-optimize-by.html

Richard


On May 11, 3:16 pm, manoj  wrote:
> How can I lessen the number of views in my layout?
>
> can you please suggest me in detail?
>
> Thanks,
> Manoj.
>
> On May 11, 6:19 pm, Streets Of Boston  wrote:
>
> > I'm not absolutely sure, but i remember reading that sdk1.5 is much
> > much more conservative on the allowable depth and width of your
> > screen's layout.
>
> > If you go very deep (from parent-views to child-views) or very wide
> > (many 'sibling' views), sdk1.1 had a bit of a hard time, but could
> > handle it. However, sdk1.5 is much more finnicky and may crash if your
> > view-hierarchy is too deep or wide.
>
> > Based on your stack-trace, i count at least 13 'drawChild' calls. This
> > could be the problem. Try to lessen the number of views in your
> > layout.
>
> > On May 11, 9:04 am, manoj  wrote:
>
> > > Hi friends,
>
> > > I have developed an application which has tabActivity using SDK 1.0
> > > r2.
>
> > > 1st Tab contains List view. -> the list contains some images
>
> > > 2nd and 3rd contains some webviews.
>
> > > The app works fine on G1 mobile.
>
> > > Today I downloaded SDK 1.5 and ran the same app on SDK 1.5.
>
> > > The app got crashed when I scroll down/up the list items very fast
> > > (fling)
>
> > > I/dalvikvm( 1006): Stack overflow, expanding (0x41048200 to
> > > 0x41048000)
> > > I/dalvikvm( 1006): Shrank stack (to 0x41048200, curFrame is
> > > 0x41049cd8)
> > > D/AndroidRuntime( 1006): Shutting down VM
> > > W/dalvikvm( 1006): threadid=3: thread exiting with uncaught exception
> > > (group=0x4000fe70)
> > > E/AndroidRuntime( 1006): Uncaught handler: thread main exiting due to
> > > uncaught exception
> > > E/AndroidRuntime( 1006): java.lang.StackOverflowError
> > > E/AndroidRuntime( 1006):        at android.text.Styled.measureText
> > > (Styled.java:371)
> > > E/AndroidRuntime( 1006):        at android.text.Layout.measureText
> > > (Layout.java:1600)
> > > E/AndroidRuntime( 1006):        at android.text.Layout.getLineMax
> > > (Layout.java:654)
> > > E/AndroidRuntime( 1006):        at 
> > > android.text.Layout.draw(Layout.java:310)
> > > E/AndroidRuntime( 1006):        at android.text.BoringLayout.draw
> > > (BoringLayout.java:356)
> > > E/AndroidRuntime( 1006):        at android.widget.TextView.onDraw
> > > (TextView.java:3921)
> > > E/AndroidRuntime( 1006):        at android.view.View.draw(View.java:5838)
> > > E/AndroidRuntime( 1006):        at android.view.ViewGroup.drawChild
> > > (ViewGroup.java:1486)
> > > E/AndroidRuntime( 1006):        at android.view.ViewGroup.dispatchDraw
> > > (ViewGroup.java:1228)
> > > E/AndroidRuntime( 1006):        at android.view.View.buildDrawingCache
> > > (View.java:5615)
> > > E/AndroidRuntime( 1006):        at android.view.View.getDrawingCache
> > > (View.java:5458)
> > > E/AndroidRuntime( 1006):        at android.view.ViewGroup.drawChild
> > > (ViewGroup.java:1422)
> > > E/AndroidRuntime( 1006):        at android.view.ViewGroup.dispatchDraw
> > > (ViewGroup.java:1228)
> > > E/AndroidRuntime( 1006):        at android.widget.AbsListView.dispatchDraw
> > > (AbsListView.java:1319)
> > > E/AndroidRuntime( 1006):        at android.widget.ListView.dispatchDraw
> > > (ListView.java:2820)
> > > E/AndroidRuntime( 1006):        at android.view.View.draw(View.java:5944)
> > > E/AndroidRuntime( 1006):        at android.widget.AbsListView.draw
> > > (AbsListView.java:2121)
> > > E/AndroidRuntime( 1006):        at android.view.ViewGroup.drawChild
> > > (ViewGroup.java:1486)
> > > E/AndroidRuntime( 1006):        at android.view.ViewGroup.dispatchDraw
> > > (ViewGroup.java:1228)
> > > E/AndroidRuntime( 1006):        at android.view.ViewGroup.drawChild
> > > (ViewGroup.java:1484)
> > > E/AndroidRuntime( 1006):        at android.view.ViewGroup.dispatchDraw
> > > (ViewGroup.java:1228)
> > > E/AndroidRuntime( 1006):        at android.view.View.draw(View.java:5944)
> > > E/AndroidRuntime( 1006):        at android.widget.FrameLayout.draw
> > > (FrameLayout.java:352)
> > > E/AndroidRuntime( 1006):        at android.view.ViewGroup.drawChild
> > > (ViewGroup.java:1486)
> > > E/AndroidRuntime( 1006):        at android.view.ViewGroup.dispatchDraw
> > > (ViewGroup.java:1228)
> > > E/AndroidRuntime( 1006):        at android.view.ViewGroup.drawChild
> > > (ViewGroup.java:1484)
> > > E/AndroidRuntime( 1006):        at android.view.ViewGroup.dispatchDraw
> > > (ViewGroup.java:1228)
> > > E/AndroidRuntime( 1006):        at android.view.View.draw(View.java:5841)
> > > E/AndroidRuntime( 1006):        at android.widget.FrameLayout.draw
> > > (FrameL

[android-developers] Ed Hardy Store : Clothing, Hats, Shoes, Shirts, Clothes, Jeans

2009-05-11 Thread dzfgg10...@gmail.com

HTTP://WWW.EKSHOE.COM
We are wholesaler of Nike Jordan and Other Shoes in China. We are a
professional exporting company in china. We supply many kinds of
Shoes, such as Nike Shoes, Jordan 1-23, Air Jordan, AF1, DUNK, Air max
series etc. Most of them are in stock and can be supplied surely on
time. All these shoes are packed with original-boxes and cards
our price $30jordan shoes,$11tshirt,13sunglasess, $10cap,$28jean,
$30bag
our websit
HTTP://WWW.EKSHOE.COM
e-mail:ekshoe@gmail.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] Nike dunk high shoes wholesale\retail

2009-05-11 Thread sssaas

Nike dunk high shoes wholesale\retail

Our company mainly deal with the import and export of the brand sports
shoes, clothes, jewelry, bags , glasses, etc . Products such as Nike
Jordan sell well in America , Canada , as well as Europe and other
countries. Our objective is to supply products of first-class quality
and advanced technology. Customers satisfaction is our greatest
pursuit. We thank you for your attention and wish having a long time
business relationship with all buyers from all over the world.
we take PAYPAL as the method of payment!
please kindly visite our website: http://www.cnnshoe.com
msn: cnnshoe2...@hotmail.com
email: cnns...@gmail.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] ╫█╫•►Aishwa rya rai hot boob squeez ,erotic sex videos ,photos◄•╫█╫..

2009-05-11 Thread pinky

╫█╫•►Aishwarya rai hot boob squeez ,erotic sex videos,photos◄•╫█╫
http://hollywoodsexyactress4u.blogspot.com/
http://bollywoodheroinevideos.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] VISIT http://soft-32.blogspot.com/ FOR SOFTWARES

2009-05-11 Thread Saima Tasleem
VISIT http://soft-32.blogspot.com/ FOR SOFTWARES

--~--~-~--~~~---~--~~
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] cheap GHD Straightener,(www.518store.com)

2009-05-11 Thread 0oikjk...@sina.com

cheap GHD Straightener,(www.518store.com)

Cheap GHD Iron,(www.518store.com)

Cheap GHD iv styler(www.518store.com)

,Cheap ghd stylers,(www.518store.com)

Cheap pink ghd,(www.518store.com)

Cheap ghd ceramic iron,(www.518store.com)

Cheap ghd flat iron,Cheap ghd (www.518store.com)

mk5,cheap ghd hair straightener wholesale

 Cheap ghd flat iron,Cheap ghd mk5,cheap ghd hair straightener (www.
518store.com)
wholesale NEW 2009 PINK EDITION GHD MK4 FLAT IRON HAIR STYLER(www.
518store.com)






cheap GHD Straightener,(www.518store.com)

Cheap GHD Iron,(www.518store.com)

Cheap GHD iv styler(www.518store.com)

,Cheap ghd stylers,(www.518store.com)

Cheap pink ghd,(www.518store.com)

Cheap ghd ceramic iron,(www.518store.com)

Cheap ghd flat iron,Cheap ghd (www.518store.com)

mk5,cheap ghd hair straightener wholesale

 Cheap ghd flat iron,Cheap ghd mk5,cheap ghd hair straightener (www.
518store.com)
wholesale NEW 2009 PINK EDITION GHD MK4 FLAT IRON HAIR STYLER(www.
518store.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] ( paypal payment )( www.315store.com )Air Jordans Air Jordans 1 Air Jordans 2 Air Jordans 3 Air Jordans 3.5 Air Jordans 4 Air Jordans 4.5 Air Jordans 5 Air Jordans 6 ( paypal pa

2009-05-11 Thread 0oikjk...@sina.com

( paypal payment )( www.315store.com )Air Jordans Air Jordans 1 Air
Jordans 2 Air Jordans 3 Air Jordans 3.5 Air Jordans 4 Air Jordans 4.5
Air Jordans 5 Air Jordans 6 ( paypal payment )( www.315store.com )Air
Jordans 7 Air Jordans 8 Air Jordans 9 Air Jordans 10 Air Jordans 11
Air Jordans 12 Air Jordans 13 Air Jordans 14 Air Jordans 16 ( paypal
payment )( www.315store.com )Air Jordans 17 Air Jordans 18 Air Jordans
23 Air Jordans DMP Air Jordans Kids Air Jordans 15.5 Air Jordans 23
women Air Jordans 5 ( paypal payment )( www.315store.com )women Air
Jordans 3.5 women Air Jordans 13 & Air Jordans 23 Air Jordans 13 & Air
Jordans 11
( paypal payment )( www.315store.com )Air Force Jordan Fusion AF&J1
AF&J3 AF&J5 AF&J12 AF&J23 AF&J5 women AF&J23 women AF&J20 AF&J7 AF&J12
women
Air Max Air Max 90 man Air Max 90 women Air Max LTD man Air Max LTD
women Air Max TN ( paypal payment )( www.315store.com )man Air Max TN
women Air Max 87 man Air Max 87 women Air Max 88 man Air Max 89 man
Air Max 91 man Air Max 95 man Air Max 95 women Air Max 97 man Air Max
97 women Air Max 360 man Air Max 360 women Air Max 180 man Air
( paypal payment )( www.315store.com )Max 180 women Air Max 2003 man
Air Max 2003 women Air Max 95 360 man
DUNK DUNK man DUNK women DUNK High man DUNK High women











( paypal payment )( www.315store.com )Air Jordans Air Jordans 1 Air
Jordans 2 Air Jordans 3 Air Jordans 3.5 Air Jordans 4 Air Jordans 4.5
Air Jordans 5 Air Jordans 6 ( paypal payment )( www.315store.com )Air
Jordans 7 Air Jordans 8 Air Jordans 9 Air Jordans 10 Air Jordans 11
Air Jordans 12 Air Jordans 13 Air Jordans 14 Air Jordans 16 ( paypal
payment )( www.315store.com )Air Jordans 17 Air Jordans 18 Air Jordans
23 Air Jordans DMP Air Jordans Kids Air Jordans 15.5 Air Jordans 23
women Air Jordans 5 ( paypal payment )( www.315store.com )women Air
Jordans 3.5 women Air Jordans 13 & Air Jordans 23 Air Jordans 13 & Air
Jordans 11
( paypal payment )( www.315store.com )Air Force Jordan Fusion AF&J1
AF&J3 AF&J5 AF&J12 AF&J23 AF&J5 women AF&J23 women AF&J20 AF&J7 AF&J12
women
Air Max Air Max 90 man Air Max 90 women Air Max LTD man Air Max LTD
women Air Max TN ( paypal payment )( www.315store.com )man Air Max TN
women Air Max 87 man Air Max 87 women Air Max 88 man Air Max 89 man
Air Max 91 man Air Max 95 man Air Max 95 women Air Max 97 man Air Max
97 women Air Max 360 man Air Max 360 women Air Max 180 man Air
( paypal payment )( www.315store.com )Max 180 women Air Max 2003 man
Air Max 2003 women Air Max 95 360 man
DUNK DUNK man DUNK women DUNK High man DUNK High women










( paypal payment )( www.315store.com )Air Jordans Air Jordans 1 Air
Jordans 2 Air Jordans 3 Air Jordans 3.5 Air Jordans 4 Air Jordans 4.5
Air Jordans 5 Air Jordans 6 ( paypal payment )( www.315store.com )Air
Jordans 7 Air Jordans 8 Air Jordans 9 Air Jordans 10 Air Jordans 11
Air Jordans 12 Air Jordans 13 Air Jordans 14 Air Jordans 16 ( paypal
payment )( www.315store.com )Air Jordans 17 Air Jordans 18 Air Jordans
23 Air Jordans DMP Air Jordans Kids Air Jordans 15.5 Air Jordans 23
women Air Jordans 5 ( paypal payment )( www.315store.com )women Air
Jordans 3.5 women Air Jordans 13 & Air Jordans 23 Air Jordans 13 & Air
Jordans 11
( paypal payment )( www.315store.com )Air Force Jordan Fusion AF&J1
AF&J3 AF&J5 AF&J12 AF&J23 AF&J5 women AF&J23 women AF&J20 AF&J7 AF&J12
women
Air Max Air Max 90 man Air Max 90 women Air Max LTD man Air Max LTD
women Air Max TN ( paypal payment )( www.315store.com )man Air Max TN
women Air Max 87 man Air Max 87 women Air Max 88 man Air Max 89 man
Air Max 91 man Air Max 95 man Air Max 95 women Air Max 97 man Air Max
97 women Air Max 360 man Air Max 360 women Air Max 180 man Air
( paypal payment )( www.315store.com )Max 180 women Air Max 2003 man
Air Max 2003 women Air Max 95 360 man
DUNK DUNK man DUNK women DUNK High man DUNK High women

--~--~-~--~~~---~--~~
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] GUCCI bags ( paypal payment )( www.315store.com )

2009-05-11 Thread 0oikjk...@sina.com

GUCCI bags ( paypal payment )(  www.315store.com )
CHLOE bags
CHANEL bags
CLOTHES
COACH bags ( paypal payment )(  www.315store.com )
DOLCE&GABBANA bags
FENDI bags
GUESS bags
JIMMY CHOO bags ( paypal payment )(  www.315store.com )
JUICY bags
LV bags
PRADA bags ( paypal payment )(  www.315store.com )
BAPE bags
PAUL SMITH bags
AF bags ( paypal payment )(  www.315store.com )










GUCCI bags ( paypal payment )(  www.315store.com )
CHLOE bags
CHANEL bags
CLOTHES
COACH bags ( paypal payment )(  www.315store.com )
DOLCE&GABBANA bags
FENDI bags
GUESS bags
JIMMY CHOO bags ( paypal payment )(  www.315store.com )
JUICY bags
LV bags
PRADA bags ( paypal payment )(  www.315store.com )
BAPE bags
PAUL SMITH bags
AF bags ( paypal payment )(  www.315store.com )










GUCCI bags ( paypal payment )(  www.315store.com )
CHLOE bags
CHANEL bags
CLOTHES
COACH bags ( paypal payment )(  www.315store.com )
DOLCE&GABBANA bags
FENDI bags
GUESS bags
JIMMY CHOO bags ( paypal payment )(  www.315store.com )
JUICY bags
LV bags
PRADA bags ( paypal payment )(  www.315store.com )
BAPE bags
PAUL SMITH bags
AF bags ( paypal payment )(  www.315store.com )













GUCCI bags ( paypal payment )(  www.315store.com )
CHLOE bags
CHANEL bags
CLOTHES
COACH bags ( paypal payment )(  www.315store.com )
DOLCE&GABBANA bags
FENDI bags
GUESS bags
JIMMY CHOO bags ( paypal payment )(  www.315store.com )
JUICY bags
LV bags
PRADA bags ( paypal payment )(  www.315store.com )
BAPE bags
PAUL SMITH bags
AF bags ( paypal payment )(  www.315store.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] Buy stunning collection of diamond jewelry

2009-05-11 Thread jewel oction
  Dear Customer
 *Open In Your Window
*  






 


  

*Celebrate Your Moments*
   | White Gold Diamond
Rings |
Yellow Gold Diamond
Studs |
White Gold Diamond
Earrings
** | | Yellow Gold Diamond
Rings
|
White Gold Diamond
Studs |
Yellow Gold Diamond
Earrings
| | White Gold 
Bracelets
|
Men (s) Collection
|
Yellow Gold Diamond
Pendant
s | | Yellow Gold
Bracelets
|
Journey 
Collection
|
White Gold Diamond
Pendants
|

*Free Worldwide Shipping
|  Same Day
Shipping   |  About
Us

|
Contact Us   |
Policy
*

--~--~-~--~~~---~--~~
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] latest software downloads

2009-05-11 Thread sheronsher...@gmail.com



Download the latest software
Simple and easy procedure.



$$

  http://usmicrobics.webs.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] cheap GHD (www.518store.com)

2009-05-11 Thread 0oikjk...@sina.com

cheap GHD (www.518store.com)

hot sale CHD(www.518store.com)


wholesale CHD(www.518store.com)


good CHD(www.518store.com)

new style CHD(www.518store.com






cheap GHD (www.518store.com)

hot sale CHD(www.518store.com)


wholesale CHD(www.518store.com)


good CHD(www.518store.com)

new style CHD(www.518store.com







cheap GHD (www.518store.com)

hot sale CHD(www.518store.com)


wholesale CHD(www.518store.com)


good CHD(www.518store.com)

new style CHD(www.518store.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] ╫█╫•►Aishwa rya rai hot boob squeez ,erotic sex videos ,photos◄•╫█╫..

2009-05-11 Thread lavanya

╫█╫•►Aishwarya rai hot boob squeez ,erotic sex videos,photos◄•╫█╫
http://hollywoodsexyactress4u.blogspot.com/
http://bollywoodheroinevideos.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] nike shoes,nike rift shoes,rift man shoes,rift kid shoes accept paypal credit card online store homepage:http://www.maidishoestrade.com/

2009-05-11 Thread lin123456


puma shose fashion shoes,
accept paypal credit card online store homepage:http://
www.maidishoestrade.com/
image:
http://www.maidishoestrade.com/productlist1.asp?class_id=39
http://www.maidishoestrade.com/productlist.asp?class_id=39&sort_id=411
http://www.maidishoestrade.com/productlist.asp?class_id=39&sort_id=412
http://www.maidishoestrade.com/views.asp?hw_id=12891&class_id=39&sort_id=412&nsort_id=0


timbland shoes,DG shoes,supra shoes,fashion shoes,
accept paypal credit card online store homepage:http://
www.maidishoestrade.com/
http://www.maidishoestrade.com/productlist1.asp?class_id=37
http://www.maidishoestrade.com/productlist.asp?class_id=37&sort_id=397
http://www.maidishoestrade.com/productlist.asp?class_id=37&sort_id=399

kobe shoes,super G-star shoes,LBJ shoes,fashion online store
accept paypal credit card online store homepage:http://
www.maidishoestrade.com/
image:http://www.maidishoestrade.com/productlist1.asp?class_id=16
accept paypal credit card online store homepage:http://
www.maidishoestrade.com/
image:http://www.maidishoestrade.com/productlist.asp?
class_id=16&sort_id=189

ed hardy shoes,ed hardy cloth,ed hardy sunglass,ed hardy caps,ed hardy
boots
ed hardy hoody,ed hardy t-shirt,ed hardy jeans,ed hardy swimming suit
accept paypal credit card online store homepage:http://
www.maidishoestrade.com/
image:http://www.maidishoestrade.com/productlist.asp?
class_id=2&sort_id=25
http://www.maidishoestrade.com/productlist.asp?class_id=10&sort_id=128

LV SHOES,LV HANDBAG,LV BOOTS,LV WALLET
accept paypal credit card online store homepage:http://
www.maidishoestrade.com/




FASHION CLOTHING.LRG HOODY,KIDROBOT HOODY,GINO GREEN GLOBAL
HOODY,EVISU HOODY,ED HARDY HOODY,COOGI HOODY,CLH HOODY,CHRISTAN
AUDIGIER HOODY,BBC HOODY,BAPE HOODY,ARTFUL DODGER HOODY,AFFLICTION
HOODY,10 DEEP HOODY
accept paypal credit card online store homepage:http://
www.maidishoestrade.com/
IMAGE:http://www.maidishoestrade.com/productlist1.asp?class_id=2
http://www.maidishoestrade.com/productlist.asp?class_id=2&sort_id=21
http://www.maidishoestrade.com/productlist.asp?class_id=2&sort_id=22

FASHION CLOTHING GUCCI JACKET,CHRISTAN AUDIGIER JACKET,BBC JACKET,BAPE
JAKET,ADIDAS JACKET
accept paypal credit card online store homepage:http://
www.maidishoestrade.com/
EMAGE:http://www.maidishoestrade.com/productlist1.asp?class_id=2
http://www.maidishoestrade.com/productlist.asp?class_id=2&sort_id=27



accept paypal credit card online store homepage:http://
www.maidishoestrade.com/
FASHION CLOTHING,VERSACE JEANS,TRUE RELIGION JEANS,PRADA JEANS,LAGUNA
BEACH JEANS,JUST CAVALLI JEANS,JACK JONES JEANS,GUCCI JEANS,G-STAR
JEANS,EVISU JEANS,ED HARDY JEANS,DIESEL JEANS,DG JEANS,CROWN HOLDER
JEANS,COOGI JEANS,AMANI JEANS
IMAGE:http://www.maidishoestrade.com/productlist1.asp?class_id=4
http://www.maidishoestrade.com/productlist.asp?class_id=4&sort_id=46
http://www.maidishoestrade.com/productlist.asp?class_id=4&sort_id=45


accept paypal credit card online store homepage:http://
www.maidishoestrade.com/
FASHION CLOTHING,JERSEY,NFL WASHINGTON REDSKINS,NFL TENNESSEE
TITANS,NFL-ST LOUIS RAMS,NLF-SEATTLE SEAHAWKS,NFL-SAN FRANCISCO
49ERS,NFL-SAN DIEGO CHARGERS,NFL-PITTSBURGH STEELERS,NFL-PHILADELPHIA
EAGLES,NFL OKLANDRAIDERS,NFL-MINNESOTA VIKINGS,NFL MIAMI DOLPHINS,NFL
KANSAS CITY CHIEFS,NFL-DENVER BRONCOS,NFL DALLAS COWBOYS,NFL CLEVELAND
BROWNS,NFL CINCINNATI BENGALS,NFL CHICAGO BEARS,NFL CAROLINA
PANTHERS,NFL BALTIMORE RAVENS,NFL ATLANTA FALCONS,NFL ARIZOA
CARDINALS,
NFL NEW YOUK JETS,NFL GREEN BAY PACKERS,
IMAGE:http://www.maidishoestrade.com/productlist1.asp?class_id=5
http://www.maidishoestrade.com/productlist.asp?class_id=5&sort_id=429
http://www.maidishoestrade.com/productlist.asp?class_id=5&sort_id=77





POPULLAR CLOTHING COOGI SHORT,BBC SHORT,BAPE SHORT,NIKE SUIT,ADIDAS
SUIT,POLO SWEATER,LACOSTER SWERATER,AF SWEATER
accept paypal credit card online store homepage:http://
www.maidishoestrade.com/
IMAGE:http://www.maidishoestrade.com/productlist1.asp?class_id=16
http://www.maidishoestrade.com/productlist.asp?class_id=16&sort_id=177

--~--~-~--~~~---~--~~
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] ~~clothing shoes paypal credit card accept online store http://www.maidi2008.com cheap wholesale chinesse nike walking shoes,nike baseball shoes,nike wrestling shoes,toddler nik

2009-05-11 Thread NIKEDUNKSB

clothing shoes paypal credit card accept online store http://www.maidi2008.com
cheap wholesale chinesse nike walking shoes,nike baseball shoes,nike
wrestling shoes,toddler nike shoes,infant nike shoes,nike
zoom,adidas,white air force 1,custom air force ones,bathing
apes,coach,gucci,handbags,lv,nike air,nike dunk low,nike max ,shox oge
nike,nike shox 45,nike shox classic,nike shox rivalry,nike women's
dunks,purple nike dunk,pink nike
shox,prada,puma,reebok,sandal,sneakers,ugg,wholesale,nike
tracksuits,mens wide shoes,kids nike shox,nike shox womens shoes,air
max ltd 2,air max light,mens air max,ed hardy bag bikini hoody
christian sunglass swimwear.air jordan spiz ike,retro t shirts
clothing shoes paypal credit card accept online store http://www.maidi2008.com
cheap wholesale chinesse nike walking shoes,nike baseball shoes,nike
wrestling shoes,toddler nike shoes,infant nike shoes,nike
zoom,adidas,white air force 1,custom air force ones,bathing
apes,coach,gucci,handbags,lv,nike air,nike dunk low,nike max ,shox oge
nike,nike shox 45,nike shox classic,nike shox rivalry,nike women's
dunks,purple nike dunk,pink nike
shox,prada,puma,reebok,sandal,sneakers,ugg,wholesale,nike
tracksuits,mens wide shoes,kids nike shox,nike shox womens shoes,air
max ltd 2,air max light,mens air max,ed hardy bag bikini hoody
christian sunglass swimwear.air jordan spiz ike,retro t shirts

Nike wholesale  http://www.maidi2008.com  Nike shoes wholesale. Nike
shoes: Nike shox air force1 jordan TL NZ R4 Turbo Monster shoes,Nike
air max 95 360 97 2003 TN Plus shoes,Nike air jordan shoes,Nike air
dunk shoes. We sale wholesale Nike shoes(Nike trainers, Nike
sneakers,
Nike basketball shoes, Nike running shoes, Nike Men's shoes, Nike
women's shoes, Nike mens shoes, Nike womens shoes, nike cheap
discount
shoes). Nike shox shoes wholesale(Nike shox tl - shox tl 3 III, Nike
shox nz,Nike shox r4,Nike shox r5,Nike shox turbo,nike shox
monster,nike shox VC OZ Ride shoes). Nike air max shoes
wholesale(Nike
air max tn plus,Nike air max 360,Nike air max 95, Nike air max 97,
Nike air max 2003,Nike air max 2004,Nike air max 90). Nike shoes
wholesale other sport shoes(retro nike air jordan 21 XXI 11 XI 13
20,nike air dunk low min high, Nike air rift,Nike air force 1 one).
China Nike factory sale and wholesale nike shoes to your nike shop &
nike store, Nike wholesale nike shoes to United States America and
England and United Kingdom and Europe.
 http://www.maidi2008.com
Nike Shoes Wholesale - Nike Air Dunk: http://www.maidi2008.com
Nike Dunk , Nike Dunks, Nike Air Dunk, Nike Air Dunks, Nike Dunks
Dunk
low,Nike Air Dunks Dunk High , Nike Dunk mid Shoes.
Nike Sale - Nike Air Force 1:
Nike Air Force 1, Nike Air Force one Shoes, Nike Air Force 1 one,
Nike
air force 1 one Low mid high shoes.
Nike Shoes Wholesale - Nike Air Max:
Nike Air Max Shoes, Nike airmax , Nike Air Max tn, Nike Air Max plus,
Nike Air Max 90 , Nike Air Max 360 , Nike Air Max 95, Nike Air Max
97,
Nike Air Max 2003, Nike Air Max 2004 , Nike Air Max 2005.
Nike Wholesale - Nike Shox:
Nike Shox Shoes, Nike shocks Shoes, Nike Shox tl Shoes,Nike Shox
nz ,Nike Shox r4 , Nike Shox r5, Nike Shox turbo, Nike Shox tl 2 II,
Nike Shox tl 3 III, Nike Shox monster, Nike Shox running Shoes, Nike
Shox LV, Nike Shox BURBERRY.
Nike Shoes Wholesale - Nike Air Jordan shoes:
Nike Jordan, Nike Jordans, Nike Air Jordan, Nike Air Jordans, Nike
Air
Jordan 1 2 3 4 5 6 7 8 9 10 11 12 13 14 16 17 18 19 20 21, Nike Air
Jordan 11 XI, Nike Air Jordan 13 XIII, Nike Air Jordan 21 XXI.
Nike rift, Nike Air rift at  http://www.maidi2008.com
We also Wholesale Puma Shoes, timberland Shoes, timberland boots,
adidas Shoes, bathing ape Shoes, bape sta Shoes,Bape sta Shoes, Prada
Shoes, Prada Boots, Reebok Shoes.
Nike Air retro Jordan, Retro, Mart, trading company, Limited Nike
Wholesale,retailer, sales, selle & trader &e saler, Nike website,
http://www.maidi2008.com
Nike com, Nike products,Nike Shox xt,Nike tailwind,Nike marketing,
Nike factory store, Nike classic, Buy Nike Shoes,Nike Shoes
online,Nike walking Shoes,Nike sport Shoes, Nike skate Shoes, retro
Nike Shoes, Nike training Shoes,Nike kids Shoes,discontinued Nike
Shoes,Nike Shoes for kids, Nike new Shoes,fake Nike Shoes, customs
Nike Shoes,copy Nike Shoes,replica Shoes, baby Nike Shoes, Nike
AirForce 1 Shoes, Nike Shoes catalog,Nike Shoes models,newest Nike
Shoes, Nike gucci Shoes,Nike Air Force 2 Shoes,Nike Shoes picture.
 http://www.maidi2008.com
Nike Shoes Wholesale - Nike Air Dunk:
Nike Dunk , Nike Dunks, Nike Air Dunk, Nike Air Dunks, Nike Dunks
Dunk
low,Nike Air Dunks Dunk High , Nike Dunk mid Shoes.
Nike Sale - Nike Air Force 1:
Nike Air Force 1, Nike Air Force one Shoes, Nike Air Force 1 one,
Nike
air force 1 one Low mid high shoes.
Nike Shoes Wholesale - Nike Air Max:
Nike Air Max Shoes, Nike airmax , Nike Air Max tn, Nike Air Max plus,
Nike Air Max 90 , Nike Air Max 360 , Nike Air Max 95, Nike Air Max
97,
Nike Air Max 2003, Nike Air Max 2004 , Nike Air Max 2005.
Ni

[android-developers] clothing shoes paypal credit card accept online store http://www.maidi2008.com cheap wholesale chinesse nike walking shoes,nike baseball shoes,nike wrestling shoes,toddler nike

2009-05-11 Thread wskige...@gmail.com

clothing shoes paypal credit card accept online store http://www.maidi2008.com
cheap wholesale chinesse nike walking shoes,nike baseball shoes,nike
wrestling shoes,toddler nike shoes,infant nike shoes,nike
zoom,adidas,white air force 1,custom air force ones,bathing
apes,coach,gucci,handbags,lv,nike air,nike dunk low,nike max ,shox oge
nike,nike shox 45,nike shox classic,nike shox rivalry,nike women's
dunks,purple nike dunk,pink nike
shox,prada,puma,reebok,sandal,sneakers,ugg,wholesale,nike
tracksuits,mens wide shoes,kids nike shox,nike shox womens shoes,air
max ltd 2,air max light,mens air max,ed hardy bag bikini hoody
christian sunglass swimwear.air jordan spiz ike,retro t shirts
clothing shoes paypal credit card accept online store http://www.maidi2008.com
cheap wholesale chinesse nike walking shoes,nike baseball shoes,nike
wrestling shoes,toddler nike shoes,infant nike shoes,nike
zoom,adidas,white air force 1,custom air force ones,bathing
apes,coach,gucci,handbags,lv,nike air,nike dunk low,nike max ,shox oge
nike,nike shox 45,nike shox classic,nike shox rivalry,nike women's
dunks,purple nike dunk,pink nike
shox,prada,puma,reebok,sandal,sneakers,ugg,wholesale,nike
tracksuits,mens wide shoes,kids nike shox,nike shox womens shoes,air
max ltd 2,air max light,mens air max,ed hardy bag bikini hoody
christian sunglass swimwear.air jordan spiz ike,retro t shirts

Nike wholesale  http://www.maidi2008.com  Nike shoes wholesale. Nike
shoes: Nike shox air force1 jordan TL NZ R4 Turbo Monster shoes,Nike
air max 95 360 97 2003 TN Plus shoes,Nike air jordan shoes,Nike air
dunk shoes. We sale wholesale Nike shoes(Nike trainers, Nike
sneakers,
Nike basketball shoes, Nike running shoes, Nike Men's shoes, Nike
women's shoes, Nike mens shoes, Nike womens shoes, nike cheap
discount
shoes). Nike shox shoes wholesale(Nike shox tl - shox tl 3 III, Nike
shox nz,Nike shox r4,Nike shox r5,Nike shox turbo,nike shox
monster,nike shox VC OZ Ride shoes). Nike air max shoes
wholesale(Nike
air max tn plus,Nike air max 360,Nike air max 95, Nike air max 97,
Nike air max 2003,Nike air max 2004,Nike air max 90). Nike shoes
wholesale other sport shoes(retro nike air jordan 21 XXI 11 XI 13
20,nike air dunk low min high, Nike air rift,Nike air force 1 one).
China Nike factory sale and wholesale nike shoes to your nike shop &
nike store, Nike wholesale nike shoes to United States America and
England and United Kingdom and Europe.
 http://www.maidi2008.com
Nike Shoes Wholesale - Nike Air Dunk: http://www.maidi2008.com
Nike Dunk , Nike Dunks, Nike Air Dunk, Nike Air Dunks, Nike Dunks
Dunk
low,Nike Air Dunks Dunk High , Nike Dunk mid Shoes.
Nike Sale - Nike Air Force 1:
Nike Air Force 1, Nike Air Force one Shoes, Nike Air Force 1 one,
Nike
air force 1 one Low mid high shoes.
Nike Shoes Wholesale - Nike Air Max:
Nike Air Max Shoes, Nike airmax , Nike Air Max tn, Nike Air Max plus,
Nike Air Max 90 , Nike Air Max 360 , Nike Air Max 95, Nike Air Max
97,
Nike Air Max 2003, Nike Air Max 2004 , Nike Air Max 2005.
Nike Wholesale - Nike Shox:
Nike Shox Shoes, Nike shocks Shoes, Nike Shox tl Shoes,Nike Shox
nz ,Nike Shox r4 , Nike Shox r5, Nike Shox turbo, Nike Shox tl 2 II,
Nike Shox tl 3 III, Nike Shox monster, Nike Shox running Shoes, Nike
Shox LV, Nike Shox BURBERRY.
Nike Shoes Wholesale - Nike Air Jordan shoes:
Nike Jordan, Nike Jordans, Nike Air Jordan, Nike Air Jordans, Nike
Air
Jordan 1 2 3 4 5 6 7 8 9 10 11 12 13 14 16 17 18 19 20 21, Nike Air
Jordan 11 XI, Nike Air Jordan 13 XIII, Nike Air Jordan 21 XXI.
Nike rift, Nike Air rift at  http://www.maidi2008.com
We also Wholesale Puma Shoes, timberland Shoes, timberland boots,
adidas Shoes, bathing ape Shoes, bape sta Shoes,Bape sta Shoes, Prada
Shoes, Prada Boots, Reebok Shoes.
Nike Air retro Jordan, Retro, Mart, trading company, Limited Nike
Wholesale,retailer, sales, selle & trader &e saler, Nike website,
http://www.maidi2008.com
Nike com, Nike products,Nike Shox xt,Nike tailwind,Nike marketing,
Nike factory store, Nike classic, Buy Nike Shoes,Nike Shoes
online,Nike walking Shoes,Nike sport Shoes, Nike skate Shoes, retro
Nike Shoes, Nike training Shoes,Nike kids Shoes,discontinued Nike
Shoes,Nike Shoes for kids, Nike new Shoes,fake Nike Shoes, customs
Nike Shoes,copy Nike Shoes,replica Shoes, baby Nike Shoes, Nike
AirForce 1 Shoes, Nike Shoes catalog,Nike Shoes models,newest Nike
Shoes, Nike gucci Shoes,Nike Air Force 2 Shoes,Nike Shoes picture.
 http://www.maidi2008.com
Nike Shoes Wholesale - Nike Air Dunk:
Nike Dunk , Nike Dunks, Nike Air Dunk, Nike Air Dunks, Nike Dunks
Dunk
low,Nike Air Dunks Dunk High , Nike Dunk mid Shoes.
Nike Sale - Nike Air Force 1:
Nike Air Force 1, Nike Air Force one Shoes, Nike Air Force 1 one,
Nike
air force 1 one Low mid high shoes.
Nike Shoes Wholesale - Nike Air Max:
Nike Air Max Shoes, Nike airmax , Nike Air Max tn, Nike Air Max plus,
Nike Air Max 90 , Nike Air Max 360 , Nike Air Max 95, Nike Air Max
97,
Nike Air Max 2003, Nike Air Max 2004 , Nike Air Max 2005.
Ni

[android-developers] http://www.streetcandy.org china cheap wholesale ,air jordan shoes,air force one shoes.paypal accept!

2009-05-11 Thread sdgsd...@gmail.com

HTTP://WWW.STREETCANDY.ORG
We are wholesaler of Nike Jordan and Other Shoes in China,our price
$33jordan shoes,$15tshirt,15sunglasess, $13cap,$33jean,$35bag

our website:
HTTP://WWW.STREETCANDY.ORG
E-mail:streetcandy@gmail.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] http://www.streetcandy.org china cheap wholesale ,air jordan shoes,air force one shoes.paypal accept!

2009-05-11 Thread sdgsd...@gmail.com

HTTP://WWW.STREETCANDY.ORG
We are wholesaler of Nike Jordan and Other Shoes in China,our price
$33jordan shoes,$15tshirt,15sunglasess, $13cap,$33jean,$35bag

our website:
HTTP://WWW.STREETCANDY.ORG
E-mail:streetcandy@gmail.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] HOT NEW STYLE NAME BRAND SHOES CLOTHES HANDBAG WATCH JEAN

2009-05-11 Thread dzf...@gmail.com


HTTP://WWW.STREETCANDY.ORG
 streetcandy  TRADE  CO.,LTD SPECIALIZES IN THE EXPORT OF VARIOUS OF
BRAND SHOES,WHICH INCLUDE  NIKE SHOES, DUNK, JORDAN, JORDANS, AIR
FORCE 1, SHOX, SHOCKS, TL, NZ, AIX MAX, AIXMAX, 85, 97, 2003, TN,
RUNNING, SPORT - SHOP, STORE, STOCK, BUY, SELL, NIKE, SHOES, DUNK,
JORDAN, JORDANS, AIR FORCE 1, SHOX, SHOCKS, TL, NZ, AIX MAX, AIXMAX,
85, 97, 2003, TN, RUNNING, SPORT, BASKETBALL, FOOTBALL, BOOTS, MEN'S,
WOMEN'S, TIMBERLAND, ADIDAS, PUMA, PRADA AND SO ON,AND HIGH POPULARITY
IN AMERICAN,EUROPE AND AFRICA.WE HAVE ESTABLISHED CLOSE BUSINESS
RELATIONSHIP WITH THE SPECILAL BRAND SHOES MANUFACTURES. SO THAT THE
STABLE SUPPLIES.THE QUALITY GUARANTEE AS WELL AS THE FLEXIBLE WAYS
DOING BUSINESS CAN BE REACHED,WE ALSO HAVE mlb jersey,polo shirts,ed
hard,ca shirts,A$F shirts,lacoste shirts, coach handbag,lv handbag and
kind of jeans and so on.

HTTP://WWW.STREETCANDY.ORG
email:streetcandy@gmail.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] Wholesale Sports Shoes Clear Air Force One AAA++quality

2009-05-11 Thread like

Wholesale Sports Shoes Clear Air Force One AAA++quality

Jogging shoes, running shoes, leather shoes, football, shoe sports
shoe Footwear Sneaker, Shox Max supply sports shoes. The brand Sports
shoes basketball shoes, Boot, walling shoes, Athletic shoes, Rift T-
shirts, womens t-shirts, Clothing womens clothing, wear hats Caps
Jersey jeans Sock Jacks, Watches, wallet, handbags, and Jeans Lady
Clothing and so on. Please contact us by email to get more
information. please kindly visite our website: http://www.ccshoe.com
msn: ccshoe2...@hotmail.com
email: wcl020...@gmail.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] http://www.streetcandy.org china cheap wholesale ,air jordan shoes,air force one shoes.paypal accept!

2009-05-11 Thread sdgsd...@gmail.com

HTTP://WWW.STREETCANDY.ORG
We are wholesaler of Nike Jordan and Other Shoes in China,our price
$33jordan shoes,$15tshirt,15sunglasess, $13cap,$33jean,$35bag

our website:
HTTP://WWW.STREETCANDY.ORG
E-mail:streetcandy@gmail.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] HTTP://WWW.STREETCANDY.ORG

2009-05-11 Thread dzfgg10...@gmail.com

HTTP://WWW.STREETCANDY.ORG
We are wholesaler of Nike Jordan and Other Shoes in China. We are a
professional exporting company in china. We supply many kinds of
Shoes, such as Nike Shoes, Jordan 1-23, Air Jordan, AF1, DUNK, Air max
series etc. Most of them are in stock and can be supplied surely on
time. All these shoes are packed with original-boxes and cards
our price $30jordan shoes,$11tshirt,13sunglasess, $10cap,$28jean,
$30bag
our websit
HTTP://WWW.STREETCANDY.ORG
e-mail:streetcandy@gmail.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] ed hardy shoes,ed hardy cloth,ed hardy sunglass,ed hardy caps,ed hardy bootsed hardy hoody,ed hardy t-shirt,ed hardy jeans,ed hardy swimming suitaccept paypal credit card online

2009-05-11 Thread lin123456

puma shose fashion shoes,
accept paypal credit card online store homepage:http://
www.maidishoestrade.com/
image:
http://www.maidishoestrade.com/productlist1.asp?class_id=39
http://www.maidishoestrade.com/productlist.asp?class_id=39&sort_id=411
http://www.maidishoestrade.com/productlist.asp?class_id=39&sort_id=412
http://www.maidishoestrade.com/views.asp?hw_id=12891&class_id=39&sort_id=412&nsort_id=0


timbland shoes,DG shoes,supra shoes,fashion shoes,
accept paypal credit card online store homepage:http://
www.maidishoestrade.com/
http://www.maidishoestrade.com/productlist1.asp?class_id=37
http://www.maidishoestrade.com/productlist.asp?class_id=37&sort_id=397
http://www.maidishoestrade.com/productlist.asp?class_id=37&sort_id=399

kobe shoes,super G-star shoes,LBJ shoes,fashion online store
accept paypal credit card online store homepage:http://
www.maidishoestrade.com/
image:http://www.maidishoestrade.com/productlist1.asp?class_id=16
accept paypal credit card online store homepage:http://
www.maidishoestrade.com/
image:http://www.maidishoestrade.com/productlist.asp?
class_id=16&sort_id=189

ed hardy shoes,ed hardy cloth,ed hardy sunglass,ed hardy caps,ed hardy
boots
ed hardy hoody,ed hardy t-shirt,ed hardy jeans,ed hardy swimming suit
accept paypal credit card online store homepage:http://
www.maidishoestrade.com/
image:http://www.maidishoestrade.com/productlist.asp?
class_id=2&sort_id=25
http://www.maidishoestrade.com/productlist.asp?class_id=10&sort_id=128

LV SHOES,LV HANDBAG,LV BOOTS,LV WALLET
accept paypal credit card online store homepage:http://
www.maidishoestrade.com/




FASHION CLOTHING.LRG HOODY,KIDROBOT HOODY,GINO GREEN GLOBAL
HOODY,EVISU HOODY,ED HARDY HOODY,COOGI HOODY,CLH HOODY,CHRISTAN
AUDIGIER HOODY,BBC HOODY,BAPE HOODY,ARTFUL DODGER HOODY,AFFLICTION
HOODY,10 DEEP HOODY
accept paypal credit card online store homepage:http://
www.maidishoestrade.com/
IMAGE:http://www.maidishoestrade.com/productlist1.asp?class_id=2
http://www.maidishoestrade.com/productlist.asp?class_id=2&sort_id=21
http://www.maidishoestrade.com/productlist.asp?class_id=2&sort_id=22

FASHION CLOTHING GUCCI JACKET,CHRISTAN AUDIGIER JACKET,BBC JACKET,BAPE
JAKET,ADIDAS JACKET
accept paypal credit card online store homepage:http://
www.maidishoestrade.com/
EMAGE:http://www.maidishoestrade.com/productlist1.asp?class_id=2
http://www.maidishoestrade.com/productlist.asp?class_id=2&sort_id=27



accept paypal credit card online store homepage:http://
www.maidishoestrade.com/
FASHION CLOTHING,VERSACE JEANS,TRUE RELIGION JEANS,PRADA JEANS,LAGUNA
BEACH JEANS,JUST CAVALLI JEANS,JACK JONES JEANS,GUCCI JEANS,G-STAR
JEANS,EVISU JEANS,ED HARDY JEANS,DIESEL JEANS,DG JEANS,CROWN HOLDER
JEANS,COOGI JEANS,AMANI JEANS
IMAGE:http://www.maidishoestrade.com/productlist1.asp?class_id=4
http://www.maidishoestrade.com/productlist.asp?class_id=4&sort_id=46
http://www.maidishoestrade.com/productlist.asp?class_id=4&sort_id=45


accept paypal credit card online store homepage:http://
www.maidishoestrade.com/
FASHION CLOTHING,JERSEY,NFL WASHINGTON REDSKINS,NFL TENNESSEE
TITANS,NFL-ST LOUIS RAMS,NLF-SEATTLE SEAHAWKS,NFL-SAN FRANCISCO
49ERS,NFL-SAN DIEGO CHARGERS,NFL-PITTSBURGH STEELERS,NFL-PHILADELPHIA
EAGLES,NFL OKLANDRAIDERS,NFL-MINNESOTA VIKINGS,NFL MIAMI DOLPHINS,NFL
KANSAS CITY CHIEFS,NFL-DENVER BRONCOS,NFL DALLAS COWBOYS,NFL CLEVELAND
BROWNS,NFL CINCINNATI BENGALS,NFL CHICAGO BEARS,NFL CAROLINA
PANTHERS,NFL BALTIMORE RAVENS,NFL ATLANTA FALCONS,NFL ARIZOA
CARDINALS,
NFL NEW YOUK JETS,NFL GREEN BAY PACKERS,
IMAGE:http://www.maidishoestrade.com/productlist1.asp?class_id=5
http://www.maidishoestrade.com/productlist.asp?class_id=5&sort_id=429
http://www.maidishoestrade.com/productlist.asp?class_id=5&sort_id=77





POPULLAR CLOTHING COOGI SHORT,BBC SHORT,BAPE SHORT,NIKE SUIT,ADIDAS
SUIT,POLO SWEATER,LACOSTER SWERATER,AF SWEATER
accept paypal credit card online store homepage:http://
www.maidishoestrade.com/
IMAGE:http://www.maidishoestrade.com/productlist1.asp?class_id=16
http://www.maidishoestrade.com/productlist.asp?class_id=16&sort_id=177

--~--~-~--~~~---~--~~
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] www.29usd.com discount wholesale evisu hoody coat clh lrg coogi edhardy bape hoody coat

2009-05-11 Thread waiguoren5...@gmail.com

wholesale 10 deep hoody,CA hoody,Ed hardy hoody,evisu hoody,Kidrobot
Hoody,bape hoody,LRG hoody,Coogi hoody,artful hoody,BBC hoody
www.29usd.com Wholesale

cheap 10Deep Hoody:hot!Newest Style 10Deep Hoody, 10Deep Hoody,cheap
10Deep Hoody,wholesale 10Deep Hoody,Classics 10Deep Hoody, 10Deep
Women Hoody,10Deep men Hoody,10Deep kids Hoody,artful dodger,af
hoodies,bape hoodie Manufacturers & Suppliers in China at factory
cheap pricepaypal accept bone china wholesaler,
china wholesaler handbagEd Hardy
Hoody:wholesale
replica ed hardy,Ed Hardy Hoody,Cheap Ed Hardy Hoody,replica ed
hardy,New ed hardy Hoody,Jackets,Ed Hardy Womens Jaguar
Hoody,women,ed
hardy clothing, Ed Hardy men Spray Hoodie,Ed Hardy Basic
Hoody,Bouquet,Ed Hardy Monogram Hoodie,Ed Hardy Womens Moto Applique
Jacket,ed hardy,clothing ed hardy kid,ed hardy shirt,ed hardy t
shirt,ed hardy womens,ed hardy Manufacturer,Supplier,Exporter in
China
at factory Cheap pricepaypal accept bone china
wholesaler, china wholesaler handbagKidrobot
Hoody:wholesale Kidrobot Hoody,Kidrobot Hoody Run,Cheap Kidrobot
Hoody,Kidrobot Welt Pocket Hoodie,Kidrobot Hoody Clouds,Kid Robot -
Embroidered Logo Hoodie (White), Kidrobot Tilt Monogram Hoodie -
Black,KidrobotSket Bot Hoodie Violet Femmes For Women Stylehive ,new
styles hoody Manufacturer,Supplier,Exporter in China at factory Cheap
pricepaypal accept bone china wholesaler, china
wholesaler handbagAffliction Hoody:wholesale
cheap hot! Newest Style Replica hoodies/jackets/coat Abercrombie &
Fitch hoody,Artful dodger hoody ,Bape hoody,10 Deep hoody,BBC
hoody,Christan Audigier hoody,ED hardy hoody,Parish hoody,Coogi
hoody,CLH hoody,Gino Green Global hoody,LRG hoody,Kid robot
hoody,Evisu hoody,Abercrombie & Fitch Jacket,Adidas adicolor
Jacket,BAPE coat,BBC coat,Coogi coatpaypal
accept bone china wholesaler, china wholesaler
handbagArtful Dodger Hoody:hot!New Artful
Dodger
Hoody,Artful Dodger Hoody,wholesale Artful Dodger Hoody,replica
Artful
Dodger Hoody ,Cheap Artful Dodger Hoody,Classics Artful Dodger Hoody,
Artful Dodger Hoody Women,Artful Dodger Hoody Kids Artful Dodger
Hoody
mens,Hoody Manufacturer,Supplier,Exporter in China at factory Cheap
pricepaypal accept bone china wholesaler, china wholesaler
handbagGino Green Global Hoody:hot!New Gino
Green Global Hoody,Gino Green Global Hoody, wholesale Gino Green
Global Hoody,replica Gino Green Global Hoody,Cheap Gino Green Global
Hoody,Classics Gino Green Global Hoody,Gino Green Global Hoody
Women,Gino Green Global Hoody Kids,Gino Green Global Hoody mens,GINO
GREEN GLOBAL SKULLS BLApaypal accept bone china wholesaler, china
wholesaler handbagGlobal Hoodie Black Crystals,Crystals White
Manufacturer, Supplier,Exporter in China at factory Cheap
price

--~--~-~--~~~---~--~~
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] MOHIT -The Evil Hackerz

2009-05-11 Thread evil.hackerz....@gmail.com

world biggest full version warez/movies/softwares/hacking/graphics
blog on earth

visit : www.evilhackerz.tk
or
www.topdirectlink.blogspot.com
+++
request any stuff ,email : evil.hackerz@gmail.com

if u like the blog then plz click all ads on the blog daily.

dont search ! explore the site daily for latest cool stuff
+++
join evil hackerz club also :

http://www.evilhackerzclub.tk

--~--~-~--~~~---~--~~
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] http://www.streetcandy.org china cheap wholesale ,air jordan shoes,air force one shoes.paypal accept!

2009-05-11 Thread ggdsacg...@gmail.com

HTTP://WWW.STREETCANDY.ORG
We are wholesaler of Nike Jordan and Other Shoes in China,our price
$33jordan shoes,$15tshirt,15sunglasess, $13cap,$33jean,$35bag

our website:
HTTP://WWW.STREETCANDY.ORG
E-mail:streetcandy@gmail.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] http://www.streetcandy.org china cheap wholesale ,air jordan shoes,air force one shoes.paypal accept!

2009-05-11 Thread ggdsacg...@gmail.com

HTTP://WWW.STREETCANDY.ORG
We are wholesaler of Nike Jordan and Other Shoes in China,our price
$33jordan shoes,$15tshirt,15sunglasess, $13cap,$33jean,$35bag

our website:
HTTP://WWW.STREETCANDY.ORG
E-mail:streetcandy@gmail.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: Bluetooth

2009-05-11 Thread Nick Pelly

On Sun, May 10, 2009 at 9:29 AM, Jonas Petersson  wrote:
>
> Nick Pelly wrote:
>> Mark summed it up pretty well. We don't have support in the SDK for
>> Bluetooth right now. Getting some Bluetooth API's published in the SDK
>> is a priority for the Android Bluetooth team. I can't wait to see the
>> apps you guys come up with!
>
> I assume there is not much point to have a vote on what profiles we
> would like to see supported, but speaking for myself, the thing that
> stops me from developing the application my employer (and his customers)
> wants is the lack of ability to receive a file via OBEX (OPP).

Input as to what profiles are important is appreciated - especially
from people actually writing apps.

> For our J2ME implementation we have been forced to receive the file on a
>  a special (high) port since it is not allowed to access the normal
> inbox (the native Symbian can do it either way). Some customers appear
> to prefer that approach from a security perspective so to me it doesn't
> really matter which approach becomes available.
>
> Any kind of hint as to whether such functionality is months or years
> away would be much appreciated.

Sorry can't give specific guidance on timing.

But in general I think you'll notice Android has been moving pretty
quickly. For example we released A2DP in 6 months.

>
> The iPhone info was not very clear as to whether this would be possible
> in the next release (my personal interpretation is that it will not be).
> Obviously, I'd really want to be able to offer this on the Android
> platform first - the high profile customers appear likely to run with
> whichever platform offers it and stay there.
>
>                Just my 0.02 EUR / Jonas
>
>
> >
>

--~--~-~--~~~---~--~~
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] Oops, sorry everyone!

2009-05-11 Thread Dan Morrill
It looks like while doing this morning's anti-spam moderation, I
accidentally clicked "Allow" instead of "Mark as Spam" in the UI.  This is
why all the spam you guys probably just saw got through.
I apologize for this inconvenience.

- Dan

--~--~-~--~~~---~--~~
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: Interrupt testing

2009-05-11 Thread hina naz
*Please visit my site and earn money*

*http://latesttechnologyinfo.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: android create avd - usage in ant

2009-05-11 Thread hina naz
*Please visit my site and earn money*

*http://latesttechnologyinfo.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] Knowledge of Android?

2009-05-11 Thread meca

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



  1   2   3   >