Tagged Questions
8
votes
4answers
9k 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 ...
4
votes
1answer
1k views
Adding a CheckBox to ListView item prevents it from being able to receive ItemClick
In the Adapter for the ListView, I return a LinearLayout, in which I add a Checkbox, a ImageView and a TextView. This basically constructs a ListView, in which each item contains a Checkbox, a ...
3
votes
1answer
3k views
how can i automatically size listview so it doesn't scroll
currently i have the following layout
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
...
2
votes
1answer
59 views
display data from another activity to another. from class to array list to linearlayout dynamically [closed]
The code for each part is displayed below.
This is the class wherein the arraylist gets its data from
package kfc.project;
public class Product {
String name;
int servingSize;
int ...
2
votes
2answers
139 views
Button not appearing in my Linear Layout
I have a button inside of a LinearLayout that is oriented vertically. Not sure why the button doesn't show up?
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout ...
2
votes
1answer
450 views
Make linear layout selectable like a list item in a list view (Android)
I know how to add an onClick listener to a LinearLayout to make the whole layout a click target, but I'd like to have the LinearLayout get highlighted when tapped just like a list item in a list view. ...
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
2answers
76 views
Changing the background image of a Activity which extends ListActivity
I followed the tutorial at: http://mobile.tutsplus.com/tutorials/android/android-listview/
and was able to successfully run the application. It mainly uses a xml file called list_item.xml and its ...
1
vote
1answer
155 views
How to make custom view scrollable along with Expandable List view …?
I have a one custome view and on expandable list view.
list is scrolling fine but when i tried to place both in a scroll view its not working.
I decided to place the custom view in one of the ...
1
vote
1answer
375 views
Android adapter returning LinearLayout
I have a custom adapter for ListView and I need to return LinearLayout from getView(). The reason I'm doing it is that I have custom component which extends LinearLayout and need to be created from ...
1
vote
2answers
56 views
android how not to mark certain view in the row, but not the row itself in listview
i have a listview in which each row contains a checkbox and a horizontal linearLayout right to the checkbox. the linear layout's background is a drawable, and the layout itself contains two textViews ...
1
vote
1answer
20 views
How to display varying cell layouts with asynchronously updating text and images?
I am working on a remote controlling app for a home automation system. The mobile and the home automation device communicate via WebSockets.
To display the functions of the automation device, I am ...
1
vote
1answer
1k views
Android ListView Default Divider Styles / Attributes
I have a LinearLayout view that I am trying to add a divider to so that it looks exactly the same as the default ListView control. I am trying to replicate the edit contact within the default Android ...
1
vote
1answer
360 views
AdWhirl eats up all space of listview
I've an Activity with a vertical linearlayout containing images, buttons, listview and adwhirllayout. All have for their height wrap_content and the listview has weight="1" to force it to use all ...
1
vote
0answers
316 views
Custom ListView adapter Force close :(
I am a newbe to android and have been following the tutorials posted online to experiment with coding for android. I am trying to display a list which has input from two different arrays, but every ...
1
vote
2answers
392 views
ListView vs LinearLayout
I'm writing a horizontal tv-view, similar to the ones you know form tivo systems and similar. For each channel there is a row with the programmes for the next 6 hours or so, with a width proportional ...
0
votes
5answers
57 views
linearlayout dosn't show all childs
I have problem in this layout that : it doesn't show any child after the listView
and the listview is filling this sight ; it scrolls but didn't show the any other child
I have tried to user ...
0
votes
2answers
81 views
multiple listview are being cut
im having an issue when i try to make a linearlayout with multiple listviews. originally when i added multiple custom linearlayouts containing a textview and a listview i could not scroll down the ...
0
votes
3answers
202 views
Android Text in ListView Is Cut Off
I know there are a lot of questions like this on the forums, but many cases are unique, so here goes.
I have a custom list view that displays an "event" in different ways based on the application ...
0
votes
3answers
86 views
what can i do about this null pointer exception?
public class Display extends ListActivity
{
private ForumAdapter faHelper;
private ProgressDialog dialog;
private String Url;
private int success = 0;
private ...
0
votes
1answer
26 views
prevent wrapping of content
I have a layout with 2 listviews one on top of the other
their layout height is set to "wrap_content" and layout width ist "match_parent"
both have a layout weight of 50 (i.e. 50 percent)
if both ...
0
votes
1answer
303 views
Dynamically create and remove Linear Layouts and List Views
So here's the deal.
My app's layout is set up with a View Flipper. The View Flipper contains seven Linear Layout children (views). Each Linear layout then contains a List View. Each linear layout ...
0
votes
5answers
355 views
LinearLayout in a ListView
So I'm trying to put a LinearLayout that has two TextViews inside of a ListView but I'm having trouble and the program keeps crashing with what I've tried. The ListView would just have one element. ...
0
votes
2answers
159 views
How can I display a long TextView height in a ListView row?
I have a ListView that looks like this:
Notice how the TextView is getting cut off with elipses. How can I make sure the entire TextView is visible inside of the ListView?
Here is my XML for the ...
0
votes
2answers
559 views
How to programmatically center progress bar in layout?
I want to programatically center my progress bars in code. Here is my code:
LinearLayout streamLayout = new LinearLayout(this);
streamLayout.setLayoutParams(new ...
0
votes
3answers
355 views
How to make a splitscreen with a listview on one side
I want the right side of the activity to show different items depending which item of the listview on the left is selected. I was able to follow the Android ListView example where the listview takes ...
0
votes
1answer
528 views
Android - RadioButton and CheckBox in same ListView item
I've found a few examples of adding a RadioButton or a CheckBox to a ListView. I've even found one that uses one or the other depending on whether the ListView allows multiselect or not.
What I'm ...
0
votes
1answer
1k views
Preventing an Android ListView from taking up almost all of the screen height
I am trying to setup an activity in android that has 50% of the screen hight for a ScrollView and the other 50% for a ListView.
To do this I have set the weight of each to "1".
Like This:
...
0
votes
1answer
340 views
it's possible to put two or more listview on the same layout?
i've tried with this code :
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" ...
0
votes
1answer
3k views
listview addFooterView problems
i have content i need to display above my listview and below, so much that a scrollview would be great to use if you could use scrollviews and listviews together. Since thats not the best solution, ...
0
votes
0answers
353 views
linearlayout clickable? having listview disabled as only child
I want to have the parent linearlayout as clickable which i have done, but its only child is list view disabled which will not pass the event to parent any one?
further more i actually want to notify ...
0
votes
1answer
444 views
Making child ListView scroll
Hello I am trying to make a terminal type app that is wider than the actual android screen. A listview is great except that I don't want the text to wrap. If the text is wider than the screen I want ...