Tagged Questions
8
votes
4answers
10k 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 of the screen, so I ...
1
vote
1answer
73 views
Show the Entire ListView in a LinearLayout
I try to place a ListView under a WebView, to do this I use the folloing xml code:
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
...
1
vote
3answers
342 views
Android: Custom preference screen size problem
I'm using a custom layout to display preferences so that I can insert an ad banner at the bottom of the screen. The idea is to have the banner stick to the bottom of the page, and have the preferences ...
1
vote
2answers
230 views
Difficulty with ScrollView and LinearLayout
I'm trying to make an Android layout: 3 components inside a vertical LinearLayout. The center component is a ScrollView that contains a TextView. When the TextView contains a significant amount of ...
1
vote
1answer
618 views
addView into a linearlayout in a scrollview is erased on refresh
I am currently working on a line entry calculator application for android. When the Button "button" is clicked it should add two textviews into the linearlayout "holder_main_layout" which is within a ...
1
vote
0answers
313 views
Adding dynamic content to ScrollView causes jerk to bottom
I have implemented my own ScrollView that detects when the position of the ScrollView is close to the bottom and add views as necessary. The problem is when I add views to the LinearLayout inside of ...
1
vote
2answers
882 views
Android Landscape mode cutting off my buttons on top
I am having an issue with my application. I recently added ScrollView as the Parent of LinearLayout. When flip my device orientation to Landscape, my buttons get cut off on the top. I can see the last ...
1
vote
1answer
6k views
Android TableLayout question: get a fixed-width right column?
(Edited: I'm one step further than before)
I've been trying to get a simple 2-column TableLayout going where I have a LinearLayout in my left column that I dynamically add elements to which fills up ...
0
votes
3answers
29 views
How to remove a view from a LinearLayout without affecting the positions of the other children?
I am trying to add/remove views to a LinearLayout inside a ScrollView. I would like to remove/add views to the LinearLayout while it is scrolling for larger lists might blow memory and/or be slow. ...
0
votes
1answer
62 views
Problems getting a LinearLayout to stay on the bottom - Android
I have an action bar fixed on top, a ScrollView which contains the main UI stuff, and a footer I want to keep on the bottom of the screen (but am unable to do). Note: I made a layout green and another ...
0
votes
3answers
52 views
Linear layout above a scrollview
I've got a simple android layout consisting of a scrollview containing a tablelayout. This table displays properly, but I would like to add a static header above the scrollview, so that basically the ...
0
votes
1answer
54 views
Creating scrollable list of images
I thought this would be really simple but its proving to be very difficult. Im trying to create a simple view with a list of 13 images that I can scroll down. Im using the xml code below but the ...
0
votes
1answer
87 views
Why TextView is missing?
I'am setting the text to TextView and EditText programmatically. but those widgets are not visible. If i take android:layout_marginTop="100dp" for Textview, then i'am able to see those widgets. Why ...
0
votes
2answers
151 views
android XML scrollview and linear layout problem
I have the following code:
<ScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
...
0
votes
1answer
55 views
Layout help with custom view
I'm playing around with 2D drawing within a custom view. So far I've got it drawing what I want(Point data from an array) but I want the drawing to scale and be able to extend it beyond the ...
0
votes
1answer
183 views
Want to add textviews to LinearLayout in an existing layout.xml
I can't quite get this to work, hoping to get some hints, it seems like from my research the code should work, any thoughts would be greatly appreciated...
I have an existing layout.xml file that ...
0
votes
2answers
438 views
ScrollView hides bottom Linear Layout
I have the following XML layout in my android application, using ScrollView:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
...
0
votes
2answers
2k views
Android - LinearLayout in ScrollView in Relativelayout
I have a little problem with layouts.
I have made RelativeLayout in which I put two LinearLayouts (1 and 2) and between them ScrollView with LinearLayout. Next I set that ScrollView to be placed under ...
0
votes
0answers
241 views
ScrollView with child views that have OnTouchListeners
I have a ScrollView that holds a vertical linear layout with 10 ImageViews inside it Currently everything has width set to "wrap_content" so the width of the LinearLayout and the ScrollView are going ...
0
votes
1answer
585 views
Infinite scroll in LinearLayout/ScrollView?
I know it's somehow possible to make a ListView that loads more data when the user has reached the bottom of the list. However, I'm working with a ScrollView, which I have a LinearLayout in, and these ...
0
votes
2answers
150 views
android - another android UI question
I have a scrollview ( mainly for landscape purposes, as I don't have a different xml file, I'm using android:configChanges="orientation")
which contains a RelativeLayout and within it there's a Linear ...
0
votes
0answers
400 views
ScrollView height 0 even when fill_parent
I have a linearlayout A containing a imageview and scrollview. The scrollview contains a second linearlayout B
The idea is to have a fixed header while the linearLayout B contains multiple views that ...
-1
votes
1answer
220 views
A few random android development questions
Hey everyone, I didn't want to make separate topics so I decided to put all my questions into 1 topic. It's okay if you can't answer them all at once but it would be helpful if you could answer even ...