[android-developers] Re: Layouts and Animation

2012-03-18 Thread Zsolt Vasvari
You don't have it physically "off-screen" before the animation. You make it invisible when it's off screen, then make it visible when you want it to slide-in AND start the slide-in animation at the SAME TIME. Animation inAnimation = AnimationUtils.loadAnimation(this, R.anim.slide_in);

Re: [android-developers] Re: Layouts

2010-12-06 Thread Marcelo Zambrana Villarroel
I think you can check the videos from google io 2009: Google I-O 2009 - Supporting Multiple Devices w- One Binary and Google I-O 2009 -...Interaction %26 Visual Design with Android I do not remember which one has the talk about custom layouts. Regards On Sun, Dec 5, 2010 at 12:25 PM, P.N. wrote:

[android-developers] Re: Layouts

2010-12-05 Thread P . N .
Is there a good tutorial available? Especially, I'd like to know how to implement the relationship from XML to Java code. Regards Peter -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-develop

[android-developers] Re: Layouts

2010-12-04 Thread Paul Turchenko
I would go with custom layout manager: extend ViewGroup, override onLayout method and provide your own layout logic. On Dec 4, 3:26 pm, P.N. wrote: > Hello! > > Is there any layout to achieve this: > - 5 rows with 3 columns; > - every row 20% of display height; > - first and third column 25% of d

[android-developers] Re: Layouts for tablets in the wild - Dell Streak for example

2010-09-16 Thread String
I was prompted to pursue this myself this week after stumbling across one of Al Sutton's blog posts on the subject: http://tinyurl.com/334gvne In short, the Streak reports itself as mdpi/large, and we know from elsewhere that the Galaxy Tab reports as hdpi/large. I felt this gave enough to get sta

[android-developers] Re: Layouts for base Android applications

2009-08-31 Thread stanlick
Thanks bro! I'll try that now. P.S. Where do you get all these tips? Peace, Scott On Aug 31, 8:31 am, "Mark Murphy" wrote: > > This message suffered quite a delay before being visible on this > > group, and ended up many pages down in the stack! Does anyone know > > where the UI's are for th

[android-developers] Re: Layouts for base Android applications

2009-08-31 Thread Mark Murphy
> > This message suffered quite a delay before being visible on this > group, and ended up many pages down in the stack! Does anyone know > where the UI's are for the basic applications? Generally, http://source.android.com. You may find using Google Code Search to be easier than browsing. Add

[android-developers] Re: Layouts for base Android applications

2009-08-31 Thread stanlick
This message suffered quite a delay before being visible on this group, and ended up many pages down in the stack! Does anyone know where the UI's are for the basic applications? On Aug 27, 12:04 pm, stanlick wrote: > Where in the source are the layouts for the built-in UI's?  I would > like

[android-developers] Re: Layouts & animation with curvatures

2009-06-10 Thread Streets Of Boston
As long as your transformation fits into a transformation Matrix (x,y and z), you can do anything you like. http://developer.android.com/reference/android/view/animation/Animation.html#applyTransformation(float,%20android.view.animation.Transformation) Since the application of a transformation-ma