azai91 / foursquared

Automatically exported from code.google.com/p/foursquared
Apache License 2.0
0 stars 0 forks source link

UserActivity titlebar area renders incorrectly on 1.5 #168

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. Use a device running 1.5.
2. View a user's profile.

What is the expected output? What do you see instead?
The top titlebar expands vertically to take up most of the available screen 
space. If the user's 
shout message is long, it is somehow instead collapsing the titlebar completely 
so that it is not 
even visible!

This only is happening on 1.5, but I propose we could change the layout for the 
titlebar from 
using RelativeLayout (maybe 1.5 has issues with this) to:

<LinearLayout orientation="horizontal">
  <ImageView>
  <LinearLayout orientation="vertical">
    <TextView />
    <TextView />
  </LinearLayout>
</LinearLayout>

it's not as elegant as using RelativeLayout, but even 1.5 should be able to 
understand that.

Original issue reported on code.google.com by mar...@gmail.com on 28 Feb 2010 at 4:05

GoogleCodeExporter commented 8 years ago
UserActivity replaced by UserDetailsActivity in 2010-03-11 version, fixed.

Original comment by mar...@gmail.com on 13 Mar 2010 at 4:32