Re: [android-developers] Android devices and use of MM/INCH

2012-08-30 Thread Thesalan
? Le mardi 28 août 2012 16:06:06 UTC+2, Latimerius a écrit : On Tue, Aug 28, 2012 at 3:07 PM, Thesalan thes...@gmail.com javascript: wrote: For a project, I have to use real size, like millimeters and inches. But on some devices, these values are false! I have tested on some

[android-developers] Re: Tabs as IPhone

2012-08-29 Thread Thesalan
Look at this http://developer.android.com/training/implementing-navigation/index.html In particular Lateral Navigation for the tabs, and Ancestral Navigation for the other Le mercredi 29 août 2012 08:56:18 UTC+2, Nine a écrit : Dear all, I want to make a application which will use

[android-developers] Re: ViewPager and setClipChildren(false)

2012-08-29 Thread Thesalan
Exactly! Thanks Dave! Le mercredi 29 août 2012 01:45:11 UTC+2, Dave Smith a écrit : Thesalan - Calling setLayerType() on just the View will work, but you have to do it on the correct view. In this case, the issue that doesn't work with hardware acceleration is the parent ViewGroup

[android-developers] Re: New to developing

2012-08-29 Thread Thesalan
Look at this : http://developer.android.com/training/basics/firstapp/building-ui.html Section Add String Resources Le mercredi 29 août 2012 00:22:14 UTC+2, Lee a écrit : As such I took your advice and started with the Hello World tutorial, and surprise! Errors errors and an error. ?xml

[android-developers] ViewPager and setClipChildren(false)

2012-08-28 Thread Thesalan
Hi! I started Android development last week, and I have a problem with a code on some devices : I have to develop an application with a specific controller like a horizontal wheel. To do this, I want to use the ViewPager, with setClipChildren(false) to extend the view. I based on the

[android-developers] Re: Multiple Icons appear on device when my project run!

2012-08-28 Thread Thesalan
I'm a beginner, so maybe I'm wrong, but in your manifest, all your activities are set with the following intent? intent-filter action android:name=android.intent.action.MAIN / category android:name=android.intent.category.LAUNCHER /

[android-developers] Re: Dear Developers

2012-08-28 Thread Thesalan
Why do you want to use JSON? Android use XML, not JSON.. Le mardi 28 août 2012 11:42:07 UTC+2, parthi a écrit : how can i create dynamically widgets in android using json parser is it possible to create -- You received this message because you are subscribed to the Google Groups Android

[android-developers] Re: Dear Developers

2012-08-28 Thread Thesalan
I just a beginner in Android development, so I don't know if it's possible... But, I don't think that you are on the good way... Send interface and code by web it's not advisable. If you really want to do this (to not integrate UI in your app), maybe you have to look for an HTML interface or

Re: [android-developers] Re: Dear Developers

2012-08-28 Thread Thesalan
or webview... If you really want to do this, you have to manually parse the json and create the java elements... ( if ( json == textview) if ( json.child == id). ) Le mardi 28 août 2012 12:00:14 UTC+2, parthi a écrit : Dear Thesalan , thanks to answer Thesalan right now i am

[android-developers] Re: Listening multiple button

2012-08-28 Thread Thesalan
Yes of course! In the layout, you have just to specify the name of the function that you want to trigger in the attribute onClick of each buttons Le mardi 28 août 2012 14:27:34 UTC+2, Haris a écrit : Hai all.. For my application I am using several buttons... Is it possible to

[android-developers] Android devices and use of MM/INCH

2012-08-28 Thread Thesalan
For a project, I have to use real size, like millimeters and inches. But on some devices, these values are false! I have tested on some devices, and it appears that on HTC One X and HTC Wildfire, 10mm = 11/12mm... But on Nexus One, Nexus S, Galaxy S2 these sizes are right! To do this, I use

Re: [android-developers] ViewPager and setClipChildren(false)

2012-08-28 Thread Thesalan
acceleration. Again, thank you very much Mark! Le mardi 28 août 2012 23:09:38 UTC+2, Mark Murphy (a Commons Guy) a écrit : On Tue, Aug 28, 2012 at 8:54 AM, Thesalan thes...@gmail.com javascript: wrote: The project is attached to this post, at this lighter version (like we can found here

Re: [android-developers] ViewPager and setClipChildren(false)

2012-08-28 Thread Thesalan
Ok, thank you for the precision! Le mercredi 29 août 2012 00:05:24 UTC+2, Kostya Vasilyev a écrit : 2012/8/29 Thesalan thes...@gmail.com javascript: Mark, a huge thank you!! I never thought the problem would come from hardware acceleration (I'm a beginner after all ^_^). Indeed, my current

Re: [android-developers] ViewPager and setClipChildren(false)

2012-08-28 Thread Thesalan
Ok thanks! But when I do it on the ViewPager, the clipping stay... I will try again tomorrow, it's late for me here ;) Thanks again! Le mercredi 29 août 2012 00:23:03 UTC+2, Romain Guy (Google) a écrit : Thesalan, it's incorrect. setLayeType(View.LAYER_TYPE_SOFTWARE, null) always works