Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
4answers
12k views

How can I get an Android TableLayout to fill the screen?

I'm battling with Android's retarded layout system. I'm trying to get a table to fill the screen (simple right?) but it's ridiculously hard. I got it to work somehow in XML like this: <?xml ...
8
votes
5answers
5k views

Android TableLayout Width

I have a two column TableLayout as the only child of a scroll view. The first column contains TextViews ('labels') and the second column contains EditText/Spinner/DateWidget etc ('values'). Even ...
8
votes
4answers
11k views

android table layout rowspan

I want to build the following layout but it is not working. <LinearLayout android:orientation="horizontal"...> <ImageView ...></ImageView> <TableLayout ...> ...
7
votes
3answers
5k views

Android and displaying multi-lined text in a TextView in a TableRow

I'm displaying a TableLayout with rows as follows: <?xml version="1.0" encoding="utf-8"?> <TableRow xmlns:android="http://schemas.android.com/apk/res/android" ...
7
votes
3answers
4k views

Buttons to fill width when using TableLayout

<?xml version="1.0" encoding="utf-8"?> <ScrollView xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="wrap_content" android:layout_height="wrap_content"> ...
6
votes
1answer
2k views

Scroll to last line of TableLayout within a ScrollView

I want to have a dynamic table, with rows added over time as a result of user interaction, using a TableLayout inside a ScrollView. This works fine, but when I want to scroll to the end of the table ...
6
votes
2answers
7k views

How can I get an Android TableLayout to fill the parent in landscape mode?

I am using a TableLayout in my application. It contains four TableRows each containing four ImageViews. The behavior I want is to scale the layout to fit the shortest dimension. It works fine in ...
5
votes
1answer
4k views

Need help with Android TableLayout alignment

I'm trying to build a calculator layout using TableLayout, but the last two rows aren't aligning with the rest of the layout. Is there something wrong with my layout XML? What I'm trying to do would ...
4
votes
2answers
814 views

Android TableLayout: preserve column widths between different tables

I have two TableLayouts, one above the other, in my View. I want them to act as a single table for the purpose of calculating column widths, but appear separately with a gap between them (and the main ...
4
votes
1answer
2k views

Setting number of columns programmatically in TableLayout

I have an XML layout which contains a TableLayout with an unknown number of TableRows... The number of Rows will be established durin runtime, what I do know though is that I want two columns... So I ...
3
votes
3answers
118 views

nullPointerException in multi column list

I already tried references from similar question on SO, but hasn't got the appropriate solution. I'm trying to fetch the data from a webpage and display it in format consisting of rows having 4 ...
3
votes
2answers
121 views

Dynamically added table rows not appearing

I have seen many posts regarding dynamically adding table rows, but I am not sure what I'm missing. When I execute the following, nothing is displayed (aside from application title bar). My Layout: ...
3
votes
2answers
185 views

Android (solved): What to do if performance of ListView is still not enough?

Well this topic was and still is debated really a lot and I already read many tutorials, hints and saw talks about it. But I still have problems with my implementation of a custom BaseAdapter for a ...
3
votes
1answer
1k views

TableRow span not working for dynamically added rows

I have the following problem spanning dynamically added rows to a TableLayout inside a scroll view. The rows follow this pattern: Row 1: Cell spanned over the whole table Row 2: Two cells Row 3: Cell ...
3
votes
1answer
470 views

Android Emulator doesnt Scroll down

I am creating a layout as follows and when i emulate it in the AVD. It doesnt Scroll down to see the conten below the fold. <?xml version="1.0" encoding="utf-8"?> <LinearLayout ...
3
votes
1answer
2k views

How to layout a 'grid' of images in the center of the screen

I have a set of 12 images to show in a layout. The number is chosen semi arbitrarily, but boils down to 3 horizontaly and 4 vertically for portrait mode and the other way around for landscape. First ...
3
votes
3answers
4k views

Horizontal and vertical scrollbar in Android with tablelayout?

Please help me if you know how to add both scrollbar. First of all i clear to all. I added both scroll bar in tablelayout but main problem is i m using dynamic data for filling tablerow. So, if there ...
3
votes
2answers
407 views

Android text clipping problem with EditView inside a TableLayout

I've got a small clipping problem that I haven't been able to solve using an EditText view in a TableRow. Whatever I try, the EditText view is either clipped (attached screenshot), or, if I set ...
3
votes
1answer
2k views

Get all TableRow's in a TableLayout

I've been looking for hours on how to get all TableRow's in a TableLayout. I already know how to add and delete rows dynamically, but I need to loop over all the rows and selectively delete some of ...
3
votes
2answers
8k views

android: two issues using Tablerow+TextView in Tablelayout

I am using Tablerow+TextView to make a simple view for blog posts and their replies. In each TableRow I put a TextView in. Now I have two issues: The text which is longer than the screen won't ...
3
votes
2answers
868 views

problems with adding TableRow dynamically vs getMeasuredHeight/getHeight

I wish to add rows dynamically to a TableLayout. When adding these rows I need to be able to get the size of the View, so I attempt to perform this during onSizeChanged() but the new rows don't ...
3
votes
3answers
4k views

Android TableRow RelativeLayout Issue

I have the following <TableRow xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/admin_row" android:layout_width="fill_parent" ...
3
votes
2answers
12k views

Automatic image resizing in a CSS flow layout to simulate a html-table layout

I have an image that, depending on the screen resolution, drops down out of sight in my CSS flow layout because I have set its width and height to static values. Is there a way in a CSS flow layout ...
2
votes
2answers
111 views

how do i add margin programmatically for TextView or even TableRow for android-based app?

hi i've tried to add margin programmatically i've tried using TextView tv = new TextView(this); LayoutParams params = new LayoutParams(WRAP_CONTENT, WRAP_CONTENT); params.setMargins(100, 20, 0, 0); ...
2
votes
1answer
48 views

dynamically creating tablelayout (android)

I want to create inner tablelayout and add there 1 row with 2 columns, following code shows nothing, why? Here's main activity: public class TestActivity extends Activity { @Override public void ...
2
votes
3answers
103 views

Android - Help needed with designing a screen with either table layout or list views

I am currently developing an Android app that is to be a counterpart to its sister iPhone prototype. My task is to recreate the screen from a design mockup from the iPhone app in Android, as shown ...
2
votes
1answer
119 views

Android: Dynamically adding images at right to dynamic table rows

I need to add the imageview at the right side of table row that is generated dynamically.. I have added imageviews to table rows.. How to add images at right i.e. set gravity to right. Can anyone ...
2
votes
1answer
316 views

Programatically adding TableRow to TableLayout not working

I'm trying to add table rows programatically following the code here /* Find Tablelayout defined in main.xml */ TableLayout tl = (TableLayout) findViewById(R.id.SaleOrderLines); /* ...
2
votes
2answers
348 views

Nest TableLayout inside LinearLayout - is it possible?

I want to produce an Android screen layout that looks something like the following: Label Text Field Label Text Field Label Text Field -----Button------- -----TextField---- That is, I want ...
2
votes
2answers
305 views

Multiline TextView in Android?

I did like below in xml <TableRow> <TextView android:id="@+id/address1" android:layout_width="fill_parent" ...
2
votes
3answers
117 views

Is it possible to convert a CSS div based layout to a table layout programmatically?

We've had a designer come in on a freelance basis to build us an awesome internal web app in HTML and CSS (div based). However, for part of our internal system we have a legacy system which has ...
2
votes
2answers
143 views

Android UI: New activity or new layout?

I'm designing the interface for an application to display some data pulled from a database in a TableLayout. Right now, the default view is portrait orientation which consists of a drop down menu and ...
2
votes
1answer
500 views

Graphical issue with spinner control in Android

My first (old) Android app (Suspension Calculator) is showing a problem I cannot find a solution for: the spinner control on some spinners is showing transparent lines in unwanted places. The pattern ...
2
votes
1answer
358 views

Can we create tables with borders dynamically in Android

Iam trying to create a table with borders using TableLayout. If I add static rows in xml file i am able to see the borders. But the problem arises if I try to add some dynamic rows. Data for the table ...
2
votes
2answers
2k views

Problem with adding rows in TableLayout programmatically

I am trying to add rows in a TableLayout programmatically and I am following instructions given in following links: Dynamically Adding Rows to TableLayout and Creating Table Rows Inside A Table ...
2
votes
1answer
470 views

Textview Width of “0dip” cutting off text inside of a TableLayout

I'm having an issue in one of my activities with text being cut-off at the first letter. The issue is, whenever navigating away from this activity to another (via the tabs at the top), and then ...
2
votes
1answer
3k views

Changing the content view dynamically

I am new to android and am trying to figure out how to change the contentView at will. Right now, I have a TableLayout in the content view and it was set using the SetContentView(TableLayout) method. ...
2
votes
2answers
1k views

How can I add separating lines between my TableRows that are created programmatically?

I have a TableLayout that is created programmatically in an Android project. I keep adding TableRows as long as there are more rows fetched from the database. Now I want to add separating lines, like ...
2
votes
3answers
793 views

NullPointerException thrown in Eclipse when trying to open Android XML view?

Here is the exception: java.lang.NullPointerException at android.widget.TextView.setTextColor(TextView.java:1787) at ...
2
votes
1answer
2k views

How to set layout_span through code

Does anyone know how to set/change the android:layout_span="" of an EditText in Android at runtime. I already have the EditText defined in my XML file. <TableRow android:paddingTop="20dip" ...
2
votes
7answers
2k views

Android table layout formatting problems

I can not get my TableLayout to fit inside the screen when the text cell is large, despite the text wraps inside the cell. I have been googling for an answer but it I can not find an advice that works ...
2
votes
3answers
546 views

HTML table with fixed uneven rows

I'm creating a page that allows the user to select a time slot from a schedule. I would prefer to do this with some sort of table layout (vs. using drop down/combo boxes). But I'm having trouble ...
2
votes
2answers
136 views

Android: nudge a button to the left

I'm very new to Android and I have the following layout xml code: <?xml version="1.0" encoding="utf-8"?> <TableLayout xmlns:android="http://schemas.android.com/apk/res/android" ...
2
votes
2answers
310 views

JTable with varying number of columns per row

how can I get a JTable to layout some rows with just one column like: A1 Section Title Row With long Text A2 B2 C2 D2 A3 B3 C3 D3 A4 ...
2
votes
1answer
246 views

Cannot access RowSpan property at run time?

when I drop a Listbox in a cell of a TableLayout, it has the properties for ColumnSpan and RowSpan ... but when I go to the code and want to say " listBox1.RowSpan " there is not such a property :( I ...
2
votes
1answer
190 views

TableLayout background from sdcard

I want to put a background image in may java file from an image stored on the sdcard. I use the code below but with no success :/ TableLayout tl=new TableLayout(this); int tmp = ...
2
votes
1answer
4k views

Android TableRow - How to add View dynamically to certain postion?

I'm constructing TableLayout dynamically. And I need TableRow has a gap in certain column position. For example, I need row has ImageView on 3 and 5 position, next row has ImageView on 1, 2, 4 ...
2
votes
1answer
506 views

Android changing tableLayout from code doesn't work

I got a strange problem with replacing a table row from code. My XML code looks like this: <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" ...
2
votes
1answer
161 views

TableLayout with images and text

I would like to show an image in the left cell and text in the right cell of a tablerow. My problem is that the text-view is floating outside the visible screen, so I can't see the whole text. The ...
2
votes
2answers
2k views

How to automatically resize an EditText widget (with some attributes) in a TableLayout

I have a layout issue. What I do is this: create TableLayout in xml with zero children: <TableLayout android:id="@+id/t_layout_contents" android:layout_width="fill_parent" ...

1 2 3 4 5 8