1
vote
1answer
25 views
Including a background drawable foobars my layout in Android. Ideas why?
If I don't include a background in my root layout then everything renders as I expect:
However, if I add JUST ONE LINE adding in a background then the layout goes completely hay …
1
vote
1answer
23 views
Equivalent to “overflow” property in LinearLayout on Android SDK?
I've been trying to create a color LinearLayout object (1) within another LinearLayout object (2), while having (1) not display beyond the bounds of (2) - in short, I wish to assig …
1
vote
1answer
129 views
TextView inside a LinearLayout, crash with a long string
Using Android, here is part of a layout xml file:
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
…
1
vote
2answers
143 views
Android LinearLayout fill-the-middle
I have a vertical, set height (300px) LinearLayout (LL) with 3 nested LLs. 1 and 3rd are set with android:layout_height="wrap_content" and the middle one with android:layout_height …
2
votes
2answers
1k views
Scrolling with Multiple ListViews for Android
I'm completely stumped on this one. I have three different lists that need to be displayed on the screen. It's completely possible that the lists will extend past the bottom edge …
