On Wed, Apr 29, 2009 at 2:47 AM, Mariano Kamp <[email protected]> wrote:
> <FrameLayout
>
> android:id="@+id/browse_zoom"
>
> android:layout_width="wrap_content"
>
> android:layout_height="wrap_content"
>
> android:layout_centerHorizontal="true"
>
> android:layout_below="@id/swipe_container" />

I saw your subsequent post about using reflection to try to enable the
new zoom (thanks for posting that so others can re-use), but just in
case you want to fully go back to the old way (which I don't recommend
because of worse performance), try:

<FrameLayout
  android:id="@+id/browse_zoom"
  android:layout_width="fill_parent"
  android:layout_height="wrap_content"
  android:layout_centerHorizontal="true"
  android:layout_alignParentBottom="true" />

jason

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

Reply via email to