[android-developers] Re: Warning on Ignoring InnerClasses attribute with dex

2008-12-18 Thread alan
kxml is built into android so you shouldnt need to include that jar (you need to use the xmlpull.org interface rather than calling kxml directly) On Dec 18, 8:20 am, Raja Nagendra Kumar nagendra.r...@gmail.com wrote: Could any one explain what is the meaning of the below warning of dex tool  

[android-developers] Re: Largish HTTP Post vs. ANR

2008-12-05 Thread Alan
/doing_http_post_with_android-t492.html Cheers, Alan On Dec 4, 6:54 pm, [EMAIL PROTECTED] wrote: So I switch over to using DefaultHttpClient and friends and it... behaves the same way. (I assume that's what you meant by HTTPComponents aka the apache stuff?) Does anybody have any direct experience

[android-developers] Re: Updating From HTTP

2008-11-07 Thread alan
runt he http request in a thread then send a message back to the ui to update it On Nov 7, 1:51 pm, Bobbie [EMAIL PROTECTED] wrote: Hey all, thanks for all your help so far!  I have the following function running on a timer every 20 seconds or so.  However, every time it runs, my user

[android-developers] Re: AlertDialog Question

2008-10-28 Thread alan
you need to use AndroidPhoneDialer.this On Oct 27, 10:44 pm, disappearedng [EMAIL PROTECTED] wrote: I have tried using this and it didn't work for me. Could you give me an example in my context? --~--~-~--~~~---~--~~ You received this message because you are

[android-developers] Re: How to control the TabHost.TabSpec's Width and Height?

2008-10-10 Thread alan
I would like to do the same, for simple text tabs the height is quite excessive On Sep 22, 3:04 am, dailyLife[EMAIL PROTECTED] wrote: Hi,   L want to control the TabHost.TabSpec's Width and Height im my program.   How to achieve such a function? Can anyone tell me the way ? thanks, goto.

[android-developers] Custom view scrolling

2008-10-09 Thread alan
I am trying to implement a custom view which can scroll horizontally and vertically. I have called setHorizontalScrollBarEnabled(true); setVerticalScrollBarEnabled(true); but no scroll bars are displayed. I have overridden computeHorizontalScrollExtent etc. but none of these

[android-developers] Re: 3D and 2D on same view

2008-10-06 Thread alan
heightMeasureSpec = View.MeasureSpec.makeMeasureSpec(height, View.MeasureSpec.EXACTLY); tx.measure(widthMeasureSpec, heightMeasureSpec); tx.layout(bounds.left, bounds.top, bounds.right, bounds.bottom); On Oct 6, 10:34 am, alan [EMAIL PROTECTED] wrote: calling measure and layout applies

[android-developers] changing path r.java

2008-09-30 Thread alan
Is it possible to change the path of r.java? My application has shared source folders with a J2ME app, r.java is automatically placed in the first folder in the project which is one of the shared folders, i would like it to be in one of the android specific folders

[android-developers] bulkInsert() function in SyncableContentProvider cause NullPointerException

2008-09-01 Thread Alan
I am using my own content provider extends from SyncableContentProvider, and I found that the function bulkInsert is FINAL, why? Besides, following code using my own content provider always get NullPointerException. It even doesn't go into insertInternal( ) of my own content provider

[android-developers] Re: How to push a .so file to /system/lib in version beta 0.9???

2008-08-20 Thread Alan
月20日, 下午12時23分, Romain Guy [EMAIL PROTECTED] wrote: Use adb remount first. Note that the system partition will be read only on actual devices. On Tue, Aug 19, 2008 at 8:19 PM, Alan [EMAIL PROTECTED] wrote: In version 0.9 beta This folder /system/lib is read only If I use command mode

<    1   2