[android-developers] setOverScrollMode ListView

2010-12-09 Thread pedr0
Hi at all, in the API documentation of ListView (http://developer.android.com/ reference/android/widget/ListView.html) I read that ListView class is a child of android.widget.AbsListView but when I try to call the method setOverScrollMode(int mode) I get a compiler error.. See documentation

[android-developers] Re: setOverScrollMode ListView

2010-12-09 Thread pedr0
Yes I do. On 9 Dic, 12:04, Kostya Vasilyev kmans...@gmail.com wrote: Are you building your project with Android 2.3? 09.12.2010 14:01, pedr0 пишет: Hi at all, in the API documentation of ListView (http://developer.android.com/ reference/android/widget/ListView.html) I read

[android-developers] Re: setOverScrollMode ListView

2010-12-09 Thread pedr0
Excuse-me, I am developing with 2.2 SDK. On 9 Dic, 12:04, Kostya Vasilyev kmans...@gmail.com wrote: Are you building your project with Android 2.3? 09.12.2010 14:01, pedr0 пишет: Hi at all, in the API documentation of ListView (http://developer.android.com/ reference/android

[android-developers] Re: setOverScrollMode ListView

2010-12-09 Thread pedr0
Thanks so much. On 9 Dic, 13:15, Kostya Vasilyev kmans...@gmail.com wrote: There you go. setOverscrollMode is new with API level 9. You need to update your build environment and project settings to Android Platform SDK 2.3 -- Kostya 09.12.2010 14:51, pedr0 пишет: Excuse-me

[android-developers] Re: Adapter fetches and parses RSS feed to get its data - best practice?

2010-12-11 Thread pedr0
I think that you way is right, and I did the same way for develop an application. But when you say a class should have only a Single Responsiblity?, well, I don't think so, a class is a representation of an object or a concept of a reality, with own data and functions (better called methods).

[android-developers] Scroll view scrolling

2010-12-13 Thread pedr0
Hi at all, I am currently developing an activity which allow user to send a feedback, the layout is composed in this way: ScrollView android:id=@+id/feedback_scroll_container android:layout_height=wrap_content

[android-developers] UnsupportedOperationException: glGenFramebuffersOES

2010-12-22 Thread pedr0
Hi at all, when I try to use the function glGenFramebuffersOES I meet an UnsupportedOperationException, I am working with android 2.1 update 1 under a Samsung galaxy S. These function aren't supported on these platform or I am wrong somethings? This is my code (very simple): public void

[android-developers] OpenGL Problem with Sphere Texture Mapping

2010-12-22 Thread pedr0
Please see the link and reply inside this post if you have not an account on OpenGL forum, the question is over there. http://www.opengl.org/discussion_boards/ubbthreads.php?ubb=showflatNumber=288188#Post288188 Thanks a lot. -- You received this message because you are subscribed to the

[android-developers] Re: OpenGL Problem with Sphere Texture Mapping

2010-12-23 Thread pedr0
you know about my progress! Thanks again. pedr0 On 23 Dic, 04:10, Mario Zechner badlogicga...@gmail.com wrote: On 22 Dez., 20:42, Robert Green rbgrn@gmail.com wrote: 3DVec normal = (sphereCenter - point).normalize(); 3DVec normal = (point - sphereCenter).normalize(); Or your world

[android-developers] Re: OpenGL Problem with Sphere Texture Mapping

2010-12-23 Thread pedr0
What do you think about it? http://en.wikipedia.org/wiki/UV_mapping On 23 Dic, 09:19, pedr0 pulsarpie...@gmail.com wrote: Thanks a lot, especially at Robert Green for his very good explanation! The absurd thing is that the code which I posted above is 100% right in a iPhone iOS, but when

[android-developers] Re: UnsupportedOperationException: glGenFramebuffersOES

2010-12-24 Thread pedr0
Ok, but I can actually use GL20, thanks a lot for your help. On 23 Dic, 10:49, Igor Korobka igok...@gmail.com wrote: I'm not an expert in area of OpenGL on Android, but GLES11Ext. glGenFramebuffersOES(1,viewFramebuffer); doesn't work on NexusOne either. But the same action with the

[android-developers] Re: How to analyze native stack trace when application crashes ?

2010-12-24 Thread pedr0
I don't know if exists tools for what are you talking about, but I meet these errors type when I use OpenGL,which is native (no Java) and I try to pass it an null pointer/object. Check there types of situation can be right for solve problems. I hope I helped you! pedr0 On 23 Dic, 11:37

[android-developers] openGL problem

2010-12-27 Thread pedr0
isn't correlated with my platform but is correlated with my use of OpenGL API, I am a newbye with this library. Thanks so much in advance. pedr0 -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android

[android-developers] Re: openGL problem

2010-12-27 Thread pedr0
This a link of my issues -- You received this message because you are subscribed to the Google 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] Re: openGL problem

2010-12-27 Thread pedr0
img198(dot)imageshack(dot)us/img198/6370/failfs.png -- You received this message because you are subscribed to the Google 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] Re: OpenGL Problem with Sphere Texture Mapping

2010-12-27 Thread pedr0
but is mathematically specified instead of placed by a 3D modeling application. On Dec 23, 12:37 am, pedr0 pulsarpie...@gmail.com wrote: What do you think about it? http://en.wikipedia.org/wiki/UV_mapping On 23 Dic, 09:19, pedr0 pulsarpie...@gmail.com wrote: Thanks a lot, especially

[android-developers] Re: OpenGL Problem with Sphere Texture Mapping

2010-12-28 Thread pedr0
angular size, and further subdivided around into equal patches, then you can your use loop variables (band / patch index) to compute UV coordinates. Just remember that UV are 0 to 1 (unless you want tiling). -- Kostya 27.12.2010 18:35, pedr0 пишет: But normal.x what is it? Is the abs

[android-developers] MultiTouch Support

2010-12-29 Thread pedr0
code the X,Y of first and second finger are the same, therefore the multitouch distance is even zero!! I am tried to develop an two fingers zoom... Any suggestion will be appreciated. pedr0 -- You received this message because you are subscribed to the Google Groups Android Developers group

[android-developers] Change Texture

2010-12-30 Thread pedr0
Hi at all, I am developing an application which use some OPENGLES feature, I have some problem when I want change textures of a object which I had created before, this is my code: public OpenGLRenderer(Context context,Bitmap first,Bitmap second,Sphere sphere) { [.creation a sphere with

[android-developers] Re: Change Texture

2010-12-30 Thread pedr0
Thanks so much, I thought this solution and it worked but isn't too much elegant, any suggestion? Thanks anyway MrChaz! On 30 Dic, 16:51, MrChaz mrchazmob...@gmail.com wrote: onDrawFrame() will be called repeatedly and in there should be a piece of code like

[android-developers] Starting email client with html pre-compiled code

2011-01-04 Thread pedr0
Hi at all, I am trying to start the default email client with some pre-compiled html text inside body, but I am not able to do so, this is a sample of my code: Intent email = new Intent(Intent.ACTION_VIEW); email.setType(text/html); StringBuilder uri = new

[android-developers] Re: Start default email client

2011-01-04 Thread pedr0
(not in the intent). What happens if you send the message yourself, from the same email program / address, to the same address? -- Kostya 30.11.2010 14:17, pedr0 пишет: I am sorry, yes it's works, it show me a email client, but when I click to send button it say me that the email is sended

[android-developers] Re: Starting email client with html pre-compiled code

2011-01-04 Thread pedr0
I founded a lot of code which SEND email with HTML code inside the body, what I am looking for is open the email client with some HTML interpreted code. I didn't find this on Google! Bye pedr0 On 4 Gen, 10:47, Sarwar Erfan erfanonl...@gmail.com wrote: I searched in Google and found working

[android-developers] Re: Starting email client with html pre-compiled code

2011-01-04 Thread pedr0
Not, the result is the same...I can see the HTML tag but I would like users see the interpretation of that. Any suggestion? Thanks any way On 4 Gen, 13:45, Kumar Bibek coomar@gmail.com wrote: Simple html is fine, but you won't be able to  embed images this way. Inline images, I mean On

[android-developers] Re: How to imitate multi-touch by emulator

2011-01-04 Thread pedr0
See this: http://stackoverflow.com/questions/2082707/android-multitouch-possible-to-test-in-emulator On 4 Gen, 10:31, Kenny Chang eric-...@163.com wrote: I want to test my multi-touch program, but I don't know how to do. -- You received this message because you are subscribed to the Google

[android-developers] Intent for start default navigator (is present)

2011-01-05 Thread pedr0
Hi at all, I would like start the default navigator with an start point and a end point, thus users can sees the route between two points. It's possibile? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

[android-developers] Re: Intent for start default navigator (is present)

2011-01-05 Thread pedr0
Ouch! I can't start the navigator in any way?! Bye! On 5 Gen, 15:47, Mark Murphy mmur...@commonsware.com wrote: There is no documented and supported Intent structure to launch Google Navigation this way -- sorry! On Wed, Jan 5, 2011 at 9:46 AM, pedr0 pulsarpie...@gmail.com wrote

[android-developers] Re: Intent for start default navigator (is present)

2011-01-05 Thread pedr0
);                                    try {                                            ctx.startActivity(intent);                                    } catch (ActivityNotFoundException e2) { }                            }                    }            }); On Wed, Jan 5, 2011 at 15:01, pedr0 pulsarpie...@gmail.com

[android-developers] Multiple screen support (panic)

2011-01-05 Thread pedr0
Hi at all, I have some problem with multiple screen support, I work with dp(dpi) for specify the layout_heigth and layout_width and I hope that is the better way to support multiple screen, but when I tried with two smartphone I meet two different result. I give an example, this is a layout I

[android-developers] Re: Multiple screen support (panic)

2011-01-05 Thread pedr0
I cannot post link...you have to change (dot) to . manually. On 5 Gen, 16:38, TreKing treking...@gmail.com wrote: On Wed, Jan 5, 2011 at 9:33 AM, pedr0 pulsarpie...@gmail.com wrote: img600(dot)imageshack(dot)us/img600/5513/htcmagicg2(dot)png img441(dot)imageshack(dot)us/img441/6440

[android-developers] Re: Multiple screen support (panic)

2011-01-05 Thread pedr0
I don't know why..but if I wrote a complete HTTP address I cannot post. On 5 Gen, 16:51, TreKing treking...@gmail.com wrote: On Wed, Jan 5, 2011 at 9:42 AM, pedr0 pulsarpie...@gmail.com wrote: I cannot post link Why not? ...you have to change (dot) to . manually. When asking for help

[android-developers] Re: Multiple screen support (panic)

2011-01-05 Thread pedr0
, pedr0 pulsarpie...@gmail.com wrote: I don't know why..but if I wrote a complete HTTP address I cannot post. On 5 Gen, 16:51, TreKing treking...@gmail.com wrote: On Wed, Jan 5, 2011 at 9:42 AM, pedr0 pulsarpie...@gmail.com wrote: I cannot post link Why not? ...you have

[android-developers] Re: Android opengl app

2011-01-06 Thread pedr0
Try to disable glBindTexture(), for use this call you have forgotten two things: 1) gl.glEnable(GL11.GL_TEXTURE_2D); // enable 2) GLUtils.texImage2D(GL10.GL_TEXTURE_2D, 0, image_data, 0); // set data try to remove the call for see if these things are the problem or not. I hope it

[android-developers] Re: HTTP parameter question

2011-01-08 Thread pedr0
You could use a StringBuilder but is very simple build it yourself without any help, I think. See this for stringbuilder :http://www.javadb.com/using-the- stringbuilder-class On 8 Gen, 02:08, John Lussmyer johnlussm...@gmail.com wrote: I don't think you understood my question. Given a list of

[android-developers] Native heap size

2011-01-10 Thread pedr0
, I read that IS NOT the GC of Dalvik which free that memory, is correct? If yes, when the memory of native heap is released? Thanks a lot in advance for any suggestion. pedr0 -- You received this message because you are subscribed to the Google Groups Android Developers group. To post

[android-developers] Create a subset of Bitmap without make a copy

2011-01-10 Thread pedr0
Hi at all, I have this problem, when I try to make a new bitmap for another one, like this: first_data = Bitmap.createBitmap(data, 0, 0, data.getWidth() / 2,data.getHeight()); second_data = Bitmap.createBitmap(data, data.getWidth() / 2, 0, data.getWidth() / 2, data.getHeight()

[android-developers] Style Question

2011-01-11 Thread pedr0
Hi at all, I tried to write my own style.xml: style name=big_strong parent=@android:style/ TextAppearance.Medium item name=android:textColor#00/item item name=android:typefacenormal/item /style style name=italic parent=@android:style/TextAppearance.Small item

[android-developers] Re: Style Question

2011-01-11 Thread pedr0
/TextAppearance.Small item name=android:textColor#00/item item name=android:typefacenormal/item item name=android:textStyleitalic/item /style I see a good explanation here: http://brainflush.wordpress.com/2009/03/15/understanding-android-themes-and-styles/ On 11 Gen, 11:46, pedr0

[android-developers] ListView graphic overflow inside a tab

2010-11-03 Thread pedr0
Hi at all, I am a little newbye in Android programming and I try to make a UI which shows five tab at the bottom on the windows, one of these tab when pressed will shows a list of rows. In fact when the tab is pressed I start another activity which contains a ListView, the main Activity is an

[android-developers] Get a view with findViewById()

2010-11-08 Thread pedr0
Hi at all, I try to customize a tab and I write this code: super.onCreate(savedInstanceState){ setContentView(R.layout.main); TabHost mTabHost = getTabHost(); Button mytab = (Button)findViewById(R.id.mybutton); Intent browser = new

[android-developers] Get a view with findViewById()

2010-11-08 Thread pedr0
Hi at all, I try to customize a tab and I write this code: super.onCreate(savedInstanceState){ setContentView(R.layout.main); TabHost mTabHost = getTabHost(); Button mytab = (Button)findViewById(R.id.mybutton); Intent browser = new

[android-developers] Use HTTP persistent connection

2010-11-12 Thread pedr0
Hi at all, I am writing a little application that make a heavy use of image from internet, but I have a little issue. I have write this code for download images over internet, these image fill some fields on a ListView : loop{ method =

[android-developers] Bar Application wheel

2010-11-16 Thread pedr0
Hi! I would like add a rotating wheel which indicates that my application do somethings in the application bar (where its name appears ). Someone knows how should I do? Thanks a lot. pedr0. -- You received this message because you are subscribed to the Google Groups Android Developers group

[android-developers] Re: Bar Application wheel

2010-11-16 Thread pedr0
, pedr0 pulsarpie...@gmail.com wrote: Hi! I would like add a rotating wheel which indicates that my application do somethings in the application bar (where its name appears ). Someone knows how should I do? Thanks a lot. pedr0. -- You received this message because you

[android-developers] Re: Bar Application wheel

2010-11-16 Thread pedr0
I think this code is okay, You agree? public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); requestWindowFeature(Window.FEATURE_PROGRESS); setProgressBarIndeterminate(true); On Nov 16, 4:19 pm, pedr0 pulsarpie...@gmail.com wrote: I tried and I have not error

[android-developers] Re: Bar Application wheel

2010-11-16 Thread pedr0
that my application do somethings in the application bar (where its name appears ). Someone knows how should I do? Thanks a lot. pedr0. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android

[android-developers] Re: Bar Application wheel

2010-11-16 Thread pedr0
I found the problem, see: http://stackoverflow.com/questions/1138809/android-showing-indeterminate-progress-bar-in-tabhost-activity On Nov 16, 4:41 pm, pedr0 pulsarpie...@gmail.com wrote: I cannot see the wheel, my activity is a tab activity, can this make wrong something? Tanks a lot

[android-developers] ListView row control

2010-11-18 Thread pedr0
Hi at all, there is a method for knows what rows are currently displayed in a ListView? I would like to use it for free memory. 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] Re: ListView row control

2010-11-18 Thread pedr0
Thanks Kostya!It works! On 18 Nov, 15:26, Kostya Vasilyev kmans...@gmail.com wrote: 18.11.2010 17:20, pedr0 пишет: Hi at all, there is a method for knows what rows are currently displayed in a ListView? I would like to use it for free memory. Thanks a lot. See AdapterView

[android-developers] Retrieve language settings

2010-11-19 Thread pedr0
Hi at all, for my application I need to know the application setting language at runtime for select a correct URL to do a correct query over internet. There is a method for knows what language are currently my application configured? Thanks a lot. -- You received this message because you are

[android-developers] Re: Retrieve language settings

2010-11-19 Thread pedr0
Solution! COUNTRY_LANGUAGE = res.getConfiguration().locale.getLanguage() +_+res.getConfiguration().locale.getCountry(); UID_VALUE = tManager.getDeviceId(); On 19 Nov, 12:45, pedr0 pulsarpie...@gmail.com wrote: Hi at all, for my application I need to know the application setting language

[android-developers] Activity state

2010-11-22 Thread pedr0
Hi at all, I want see the state of my activity (Pause Stop Resume etc etc) without override each methods like this: onPause(){ super(); Log.d(TAG, this activity+name+will come in Pause state); } There is a way to see that using an Android tools ?DDMS allow to see this, I think not but I ask for

[android-developers] Re: Spinner Style

2010-11-23 Thread pedr0
Do you are looking a spinner wheel or a spinner menu? On 23 Nov, 10:28, Jithin danijanuv...@gmail.com wrote: Hi friends,            As part of my project I need a spinner that should display items like HTML select tag rather opening a new window.            Is it possible...? -- You

[android-developers] Re: Initial position of scrollbar in ListView

2010-11-23 Thread pedr0
You can use this function: http://developer.android.com/reference/android/widget/ListView.html#setSelection(int) ListView.setSelection(int position) It works? On 23 Nov, 13:33, Prateek Jain mrprateekj...@gmail.com wrote: Hi, I think headers are the part of ListView (therefore 1st

[android-developers] Google Map Pin

2010-11-24 Thread pedr0
Google Maps, I found the pin image over internet but I don't know if I can really use it, is this image under some copyright? Thanks a lot. pedr0 -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android

[android-developers] Re: Activity state

2010-11-24 Thread pedr0
Hmm it's okay, but there isn't a way to show the activity stack of my application? On 23 Nov, 07:33, Kumar Bibek coomar@gmail.com wrote: YEs, Switch to the Logcat window, and you will see it, else type adb logcat in the commant prompt, and it will show you the logs. On Nov 22, 2:00 

[android-developers] Re: Google Map Pin

2010-11-24 Thread pedr0
Thanks so much! On 24 Nov, 13:57, Mark Murphy mmur...@commonsware.com wrote: On Wed, Nov 24, 2010 at 4:42 AM, pedr0 pulsarpie...@gmail.com wrote: I am looking for a default marker for overlay items in the maps, but I haven't finded it, something is wrong or really Google Map API don't

[android-developers] Re: how to implement Two line text with different colors on one button

2010-11-24 Thread pedr0
If your text will never change you can apply an image at your botton, in your image you can do that without problem. On 24 Nov, 14:57, xi developer xidevelope...@gmail.com wrote: In my android app development, I have one button, the button text is not a single color text, it is two lines

[android-developers] Google Maps API

2010-11-25 Thread pedr0
hi at all, I am currently developing an little application which use API Maps and I have some problems: I would like shows an comic style comic could (like Web Google Map) when the users touch an overlay item present on the map, how can I do this? I have to write by hands the code that do this?

[android-developers] Re: Google Maps API

2010-11-25 Thread pedr0
There was a mistake! Like a comic cloud, not could! Ops! :-) On 25 Nov, 10:25, pedr0 pulsarpie...@gmail.com wrote: hi at all, I am currently developing an little application which use API Maps and I have some problems: I would like shows an comic style comic could  (like Web Google Map

[android-developers] Re: Google Maps API

2010-11-25 Thread pedr0
Murphy mmur...@commonsware.com wrote: https://github.com/jgilfelt/android-mapviewballoons On Thu, Nov 25, 2010 at 4:25 AM, pedr0 pulsarpie...@gmail.com wrote: hi at all, I am currently developing an little application which use API Maps and I have some problems: I would like shows

[android-developers] Passing object via intent

2010-11-25 Thread pedr0
and I am a little bit confused about the second way, the question is: - using the second solution what may happens if the activity which share static object is killed by the OS ? Thanks a lot pedr0 -- You received this message because you are subscribed to the Google Groups Android Developers

[android-developers] Re: Passing object via intent

2010-11-25 Thread pedr0
: http://developer.android.com/reference/android/content/Intent.html#pu..., java.util.ArrayList? extends android.os.Parcelable) -- Kostya 25.11.2010 18:55, pedr0 пишет: Hi at all, I read some tutorial about the object of this topic (Passing object via intent) there tutorial

[android-developers] Re: Passing object via intent

2010-11-26 Thread pedr0
Hi TreKing, could you explain the 3rd way, I have to send to another application an ArrayListCustomObject, how to do it? On 25 Nov, 23:53, TreKing treking...@gmail.com wrote: On Thu, Nov 25, 2010 at 9:55 AM, pedr0 pulsarpie...@gmail.com wrote: I read some tutorial about the object

[android-developers] Parcelable iterface implementation in parent class

2010-11-26 Thread pedr0
Hi at all, I have this doubt thinking about the Parcelable interface, question is: Let A and B two type of object, with B that extend A, when I implement the parcelable interface for A all is ok but when I have to implement the parcelable interface for B can I write in parcel only B object

[android-developers] Re: Parcelable iterface implementation in parent class

2010-11-26 Thread pedr0
Yes It works, thanks so much. On 26 Nov, 15:18, TreKing treking...@gmail.com wrote: On Fri, Nov 26, 2010 at 5:22 AM, pedr0 pulsarpie...@gmail.com wrote: when I have to implement the parcelable interface for B can I write in parcel only B object fields ? You can write any fields you like

[android-developers] Re: Detect touch event on a OpenGL object

2010-11-29 Thread pedr0
I have the same issue, any suggestion? On 29 Nov, 13:24, Paolo brand...@gmail.com wrote: Hi there! I have developed an Augmented Reality App using OpenGL ES 1.1. It's really cool and I'm very happy for that, because Im' an opengl beginner. Now I have a problem... :( I'd like to detect touch

[android-developers] Re: problem with map overlays

2010-11-30 Thread pedr0
See the map tutorial, If I understand correct you have to put your overlay in all point of your path. Each Overlay is draw on the map using the latitude and longitude coordinated, this assumes that you know the coordinates of the point of your path.

[android-developers] addView in layout at run time

2010-11-30 Thread pedr0
this error java.lang.IllegalStateException: The specified child already has a parent. You must call removeView() on the child's parent first Is my solution which is incorrect or I make wrong something? Thanks a lot pedr0 -- You received this message because you are subscribed to the Google Groups

[android-developers] Re: addView in layout at run time

2010-11-30 Thread pedr0
(); Regards Sarwar Erfan On Nov 30, 3:18 pm, pedr0 pulsarpie...@gmail.com wrote: Hi at all, I have to put some ImageButton inside an LinearLayout, but I don't know the number of this statically, so because I keep the data through internet at run-time. I solved this problem adding new

[android-developers] Re: addView in layout at run time

2010-11-30 Thread pedr0
Thanks a lot, it's very simple to do. On 30 Nov, 10:38, pedr0 pulsarpie...@gmail.com wrote: Thanks a lot, but how to configure my botton like this: ImageButton         android:layout_width=wrap_content         android:layout_height=wrap_content / how can I set the layout_param at runtime

[android-developers] Start default email client

2010-11-30 Thread pedr0
Hi at all, How can I make a intent to start the default email client? I would like to set the receiver address of message.. 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] Re: Start default email client

2010-11-30 Thread pedr0
and body, but this one works with certain buggy email clients (H*C Se*se). -- Kostya 30.11.2010 13:30, pedr0 пишет: Hi at all, How can I make a intent to start the default email client? I would like to set the receiver address of message.. Thanks! -- Kostya Vasilyev -- WiFi Manager

[android-developers] Re: Start default email client

2010-11-30 Thread pedr0
I am sorry, yes it's works, it show me a email client, but when I click to send button it say me that the email is sended, but the email account configured doesn't receive an email! What's wrong? On 30 Nov, 11:58, pedr0 pulsarpie...@gmail.com wrote: Thanks, it works! On 30 Nov, 11:42, Kostya

[android-developers] ListView elements not clickable in all area

2010-12-01 Thread pedr0
Hi at all, I am developing an application which make an intensive use of ListView with different type of rows, for do this I have extended the BaseAdapter class and override its methods, the layout of ListView is very simple: ?xml version=1.0 encoding=UTF-8? LinearLayout

[android-developers] Re: ListView elements not clickable in all area

2010-12-01 Thread pedr0
/android/view/ViewGroup.html#at... Regards Sarwar Erfan On Dec 1, 2:58 pm, pedr0 pulsarpie...@gmail.com wrote: Hi at all, I am developing an application which make an intensive use of ListView with different type of rows, for do this I have extended the BaseAdapter class

[android-developers] Re: ListView elements not clickable in all area

2010-12-01 Thread pedr0
I have partially solved the problem: simple change to fill_parent the listview android:layout_width paramter, but now I have all the item of the listView aligned in center position and not on the left.. On 1 Dic, 10:32, pedr0 pulsarpie...@gmail.com wrote: Each solution doesn't work

[android-developers] Re: ListView elements not clickable in all area

2010-12-01 Thread pedr0
in this list view? You shouldn't need to play any tricks with clickable, focusable, etc. Also, layout_height=fill_parent is a pretty weird setting for a list view item layout. For item alignment control, set layout_gravity=left on the child views. -- Kostya 01.12.2010 12:44, pedr0 пишет

[android-developers] Re: How to user my layout

2010-12-01 Thread pedr0
Dear Raju, What are you talking about it's very weird, an activity use a layout loaded with setContentView(), this XML file will be use to find the tag with findViewbyId(). If you don't want some attributes, simply don't declare it's inside the XML file, if you need to set some attributes at

[android-developers] Re: Very simple query INTENT

2010-12-01 Thread pedr0
1. Yes. 2. http://groups.google.com/group/android-beginners/browse_thread/thread/f11b306208970031 On 1 Dic, 07:18, Abhishek Talwar r.o.b.i.n.abhis...@gmail.com wrote: Hi guys I have two queries which should be really simple for you to handle :- 1. All the applications are stored in

[android-developers] TabHost Activity

2010-12-02 Thread pedr0
some issues in my code or exists a way to configure TabHost to start new intent when user click on a Tab? Thanks a lot. pedr0 -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers

[android-developers] ListView ontouch effect

2011-01-17 Thread pedr0
See here! http://stackoverflow.com/questions/4715078/listview-issues 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

[android-developers] Re: native heap size and ddms

2011-01-17 Thread pedr0
How did you set up the DDMS by DDMS? I tried but I have had a lot of issues!Could you explaine me the right procedure for do that? Thanks a lot. pedr0. On 17 Gen, 17:16, blackbelt emanuel...@gmail.com wrote: Hello there, I manage to active the native heap tab in ddms, but columns were

[android-developers] Re: native heap size and ddms

2011-01-17 Thread pedr0
How did you set up the native heap tan in DDMS? I tried but I have had a lot of issues!Could you explaine me the right procedure for do that? Thanks a lot. pedr0. On 17 Gen, 17:21, pedr0 pulsarpie...@gmail.com wrote: How did you set up the DDMS by DDMS? I tried but I have had a lot of issues

[android-developers] Re: native heap size and ddms

2011-01-17 Thread pedr0
Where is that file? On 17 Gen, 17:31, blackbelt emanuel...@gmail.com wrote: sorry I meant ddms.cfg -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe

[android-developers] Re: native heap size and ddms

2011-01-17 Thread pedr0
But What's the name for the TAB ? I saw the same tab of before, this is my file: #Mon Jan 17 10:20:28 CET 2011 pingOptIn=true pingTime.adt=1295256028304 pingId=2720243879932964383 native=true On 17 Gen, 17:31, blackbelt emanuel...@gmail.com wrote: sorry I meant ddms.cfg -- You received

[android-developers] Re: native heap size and ddms

2011-01-17 Thread pedr0
Yes, it works only in DDMS standalone. I cannot see that in Eclipse. On 17 Gen, 17:54, emanuele emanuel...@gmail.com wrote: Native heap... on Mac.. ddms running standing alone ( i think) On Mon, Jan 17, 2011 at 5:51 PM, pedr0 pulsarpie...@gmail.com wrote: But What's the name

[android-developers] Pdf shows with video and other content

2011-01-19 Thread pedr0
Hi at all, I want write an application which shows an PDF with some other content on it, like Video and image. Generically I want shows an pdf with some other View on it. I am concern about PDF, I read some article which explaine how to show an PDF but I want show an PDF with some other stuff.

[android-developers] openGLES different behavior on different devices

2011-01-20 Thread pedr0
configured the checkError flag in OpenGLViewRender, but I cannot see the OpenGL call which cause this message. Thanks a lot in advance. pedr0 -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android

[android-developers] onDetachedFromWindow issues

2011-01-24 Thread pedr0
Hi at all, I have an issues with an GLSurfaceView View; when I start my activity the GLSurfaceView is invisible but when I press the back button I meet this exception: java.lang.NullPointerException E/AndroidRuntime(15931):at

[android-developers] Render a PDF in a View

2011-02-01 Thread pedr0
Hi at all, anyone knows how, if it is possibile, to draw an PDF in a View ? PDF file could be an local file or a file downloaded over internet. I searched over internet about this question but I have not an detailed solution of this problem or a good example. Thanks in advance. -- You

[android-developers] Re: viewgroup and view

2011-02-01 Thread pedr0
What are RectView and OvalView ? Are you own View ? On 1 Feb, 14:41, blackbelt emanuel...@gmail.com wrote: Hello there, I ve the following scenario. I ve a viewgroup and two views (one draws a rectshape, an ovalshape the other). The viewgroup and the two views implements the

[android-developers] Re: Render a PDF in a View

2011-02-01 Thread pedr0
But PDF reader exists for Android.. On 1 Feb, 16:29, Mark Murphy mmur...@commonsware.com wrote: On Tue, Feb 1, 2011 at 10:26 AM, pedr0 pulsarpie...@gmail.com wrote: anyone knows how, if it is possibile, to draw an PDF in a View ? There is nothing in the Android SDK that supports PDFs

[android-developers] Re: Render a PDF in a View

2011-02-01 Thread pedr0
Could you give me an open source library name or web link wich I can use, I would like read some documentation about it. I prefer use a library : - ) Thanks a lot. On 1 Feb, 16:38, Alessandro Pellizzari a...@amiran.it wrote: Il Tue, 01 Feb 2011 07:33:23 -0800, pedr0 ha scritto: But PDF

[android-developers] Re: Render a PDF in a View

2011-02-01 Thread pedr0
Thanks a lot Alessandro. Have a nice day. On 1 Feb, 17:06, Alessandro Pellizzari a...@amiran.it wrote: Il Tue, 01 Feb 2011 07:56:43 -0800, pedr0 ha scritto: Could you give me an open source library name or web link wich I can use, I would like read some documentation about it. I think

[android-developers] BaseAdapter ListView and SectionIndexer

2011-02-08 Thread pedr0
) are displayed in the bottom center of the screen, are displayed at the left top corner and drew with the color white: can I customize the position of the letter box? Thanks in advance. pedr0 -- You received this message because you are subscribed to the Google Groups Android Developers group. To post

[android-developers] Re: WSDL Classes generation

2011-02-23 Thread pedr0
http://cxf.apache.org/docs/index.html is a framework which could help you to generate Java classes code starting by an XML WSDL file. I don't know if it is usable in on android app. Good Luck! On 18 Feb, 18:22, Pedro Linhol plin...@gmail.com wrote: Is there any tool that generates java

[android-developers] Compilation error using android SDK 2.0 (Camera Preview)

2011-03-11 Thread pedr0
could suggests me the right way for use the camera on Android 2.x? You suggest me to use only the Android 2.3 ? Thanks a lot. pedr0 -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers

[android-developers] Re: Memory Allocation

2011-03-16 Thread pedr0
You could store in an XML array file and inflate it each time spinner is visible. Like this: Spinner spinner = (Spinner) findViewById(R.id.spinner); ArrayAdapterCharSequence adapter = ArrayAdapter.createFromResource( this, R.array.planets_array, android.R.layout.simple_spinner_item);

[android-developers] Re: Memory Allocation

2011-03-16 Thread pedr0
as that Thanks again On Mar 16, 2011, at 4:53 AM, pedr0 wrote: You could store in an XML array file and inflate it each time spinner is visible. Like this: Spinner spinner = (Spinner) findViewById(R.id.spinner); ArrayAdapterCharSequence adapter

  1   2   >