Table Layout is a common presentation design that places components into rows and columns.

learn more… | top users | synonyms

0
votes
0answers
19 views

Update dynamically a scrolling tableLayout with a fixed Header

I have a new probleme in my android app I make a scroll table with a fixed header row which display a database, i calculate width of the columns automatically The first time i draw the tablelayout ...
0
votes
1answer
27 views

TableLayout orientation : only one column is showing in portrait orientation

I have created a table layout with two columns , it works fine with landscape orientation : But only one column is showing in portrait orientation : I tried creating two folders layout-land ...
1
vote
1answer
42 views

Table doesn't show

I have created a table through TableLayout (id=myProducts_tableLayout) programatically but it doesn't show on the screen. Below is the XML code. #`<?xml version="1.0" encoding="utf-8"?> ...
1
vote
2answers
39 views

C# filling TableLayoutPanel cells from left to right

I am working on a windows form app which primarily consists of a TableLayoutPanel with 8 columns and 9 rows. I have been able to fill each of the cells like so: for (int row = 0; row < ...
0
votes
1answer
26 views

What is the best way to display custom view with scrollable behaviour on android

I have to display multiple custom view with scrollable behaviour (as a grid list). Like scrolling horizontally and vertically on a chest grid where each item is a custom view. What is the best way to ...
0
votes
0answers
4 views

Scroll to a particular row in a TableLayout, which is contained in a ScrollView

I have a TableLayout contained in a ScrollView. Once the TableLayout is populated (programatically), I would like to programatically scroll that table so that a particular row is to the top of the ...
0
votes
1answer
42 views

Making ListView align items correctly

I have a ListView with 10 columns and an header. As you can see in the following picture, the rows are not aligned with the header. If the text in the TextViews was centered it seems like the ...
0
votes
0answers
16 views

Remove Rows from TableLayoutPanel [duplicate]

I'm trying to Remove all rows from a TableLayoutPanel(which are added automatically at runtime) but I seem to be getting this Error: Object reference not set to the instance of an object. Here ...
0
votes
2answers
17 views

TableLayout issue - Android

I have two TableLayout's in my Android app. I want one half of my app to be static and always shown, and the other to be scrollable. When I build and run my app on my Android phone, the bottom half ...
0
votes
0answers
32 views

Last Cell is missing when using LinearLayout in TableLayout:

I have a very weird problem, I'm creating a TableLayout in my application. When I create a simple TextViews for the row cells then everything works fine. The problem happens when I need something more ...
0
votes
1answer
44 views

Make a `<table>` width equal to its children `<td>`

I have a <table> that I would like to have a width that contains its children <td>. Unfortunately, I can only assign classes to the <td> columns, and not the <th> columns - ...
0
votes
1answer
20 views

to get one value of the column from the table layout after the user clicks on the row

I am creating an android app in which m displaying rows from the database in a table layout. In these rows i am displaying the row id and two columns from the database. I have put an on click event on ...
0
votes
1answer
91 views

GridLayout vs TableLayout

I'm unsure as to what the differences between the two of them are and which I should use for my purpouses? What I'm trying to do is create a custom virtual numpad with text inputs and that can ...
1
vote
0answers
29 views

Chrome strange behavior when wrapping table with table-layout: fixed

I have a div that wraps a table with table-layout: fixed. <div class="wrap"> <table id="mytable"><tr> <td>Some label</td> </tr></table> ...
0
votes
1answer
61 views

Android TableLayout row height or column stretch not working

I'm having a problem with TableLayout row height. If android:stretchColumns="1" the result is as you can see the text from the last row it's cut if I don't specify strechColumns the result is: ...
0
votes
1answer
22 views

Android: 2 TableLayouts side by side

Is it possible to display 2 TableLayouts (in a RelativeLayout) side by side so that both tables have the same width? I just don´t know how to do that. I already tried it with setting ...
0
votes
3answers
99 views

TextView displaying text in One line when adding rows programatically in Table Layout

I have a table layout after some view in my xml file. Below is the code. <ScrollView> <LinearLayout> .................................. ..................................... ...
0
votes
0answers
31 views

Application wide background

Android rookie here, so bare with me. I'm trying to set a background image that will persist for the entire application (droid.png is in res/drawable-ldpi) styles.xml: <resources> ...
0
votes
0answers
20 views

Most up-to-date version of the java “Clearthought” TableLayout project

What is the status of the java "Clearthought" TableLayout project? is it still being maintained? what is its most up-to-date website? old page: ...
0
votes
2answers
42 views

Center TextView Programmatically on TableRow

I am trying to center a textview inside a tablerow, that is itself inside a tablelayout, but I guess I am missing something, because the TextView doesn't get centered :s Here is my method: private ...
0
votes
1answer
65 views

TableLayoutPanel: Delete Rows

I have a TableLayoutPanel which is filled with rows at runtime using a txt file (get each row from the text file, and put it in cells contained in new rows) Code Looks like this public static string ...
2
votes
4answers
35 views

Table layout not fitting screen

I have an activity which creates a table dynamically. The activity is created and is working fine. This is the source code of the xml file: <RelativeLayout ...
0
votes
2answers
42 views

Make TableRows even width

Below is what my screen looks like: You can see that in row 1, the two buttons are not aligned evenly since the right box is 2 lines and the left box is 1 line. Also, you can see in row 3 that the ...
1
vote
2answers
27 views

ImageView isn't showed on TableRow

I have the following code to create a table header in my code. But, for some reason, the column with ImageView don't show anything. As I fixed weight for the columns, instead of show the image, this ...
3
votes
2answers
77 views

How to add submenu items to menuitems

I have created a Table layout in windows forms as shown in figure, i have added a right mouse button click Menu to my table, i wnt to add submenu items to following menuitems such as When i click ...
0
votes
1answer
81 views

How to apply row span in tablelayout?

How to apply row_span to TableLayout? I want to make something similar to this image, but i don't know how to do it. What is the correct way to make something like this? table_image This is my first ...
-1
votes
1answer
40 views

How do I import the tablelayout.jar file?

In every example I can find this import is used: import layout.TableLayout; I´ve downloaded the jar file, but I'm having problems importing it. Anyone?
0
votes
1answer
43 views

Adding rows dynamically to a table, where the layout was designed

I was wondering if I can add rows of data dynamically to a table whose layout was already defined...for ex : <TableLayout android:id="@+id/myTableOrders" ...
0
votes
0answers
31 views

Changing element inside TableLayout resizes all element in column

I have a TableLayout where the first column contains labels, and the second column contains EditTexts or other widgets. Now, I would like to stretch those columns so they are even, but I would also ...
0
votes
0answers
50 views

EditText dynamically added to tablerow has wrong width on phone but not on emulator

I have seen several questions similar to this on stackoverflow, but they all did not seem relevant to my issue. I have set up an empty tablelayout in my xml, <TableLayout ...
0
votes
1answer
19 views

Android's IllegalStateException in dynamic rows creation

I followed this fellow here and ended up getting the following error. As far as I understand I am not required to run new TableLayout(), neither new Textview() on runtime. 04-14 16:11:55.232: ...
0
votes
0answers
32 views

Set only one row in TableLayout to be highlightable on click

I have a table layout in my Android app, and when a row is clicked, the row lights up, but I only want one row at a time to be selected, so how would I do that? Presently, I have this. So whenever a ...
0
votes
2answers
73 views

Table layout in android (span/shrink)?

I want this special table layout: In my current layout the cells that are shorter are at the same size like the cells with the long text: How do have to do it? It should look like the first ...
0
votes
1answer
23 views

hide rowtable cell android

I have a table layout and I load in dynamically rowtable by rowtable from DB. I want to know if is it possible to hide a cell in rowtable or hide a column in table layout? and another thing, how can ...
0
votes
2answers
54 views

How to open list after long press on table row?

I'm trying to get Something like this I want that after I'm pressing on one row in a table layout a popup list shows to the user. and connect this list to events so if I have a DELETE option I can ...
1
vote
1answer
61 views

setting layouts visiblity on button click event

I am new to android and i am unable to solve my simple problem.I have a parent Tablelayout and inside it i have two tablelayouts with ids tbl1 and tbl2 respectively in my xml file.In tbl1 layout i ...
0
votes
0answers
17 views

Android table layout containing expandable-text elements

i´m an android rookie, please help me out ! i want to create a list of text elements, wich can be expanded (and collapsed again) for showing detailed information about the particular element.
0
votes
1answer
69 views

How can I create a layout that spans multiple rows using Android TableLayout?

How would I go about creating the following layout using tablelayout? Column spanning is straightforward, but I haven't found any clear guidance on row spanning.
1
vote
1answer
106 views

Add a dynamic tablelayout in a relativelayout above a existing button

i'm trying to add a tablelayout in a relativelayout, but i'm havind some problems to put this tablelayout above a existing button, i can only but it below it. XML <RelativeLayout ...
1
vote
3answers
120 views

Draw tick border around group of cells (TableLayoutPanel C#)

I'm making a sudoku field in a windows form application (c#) I've used a TableLayout to make my boxes to put labels in for the numbers displayed in the sudoku, now I need a thick border around every ...
0
votes
0answers
158 views

what is the equivalenet tag for ROWSPAN in table layout in android

what is the equivalenet tag for ROWSPAN in table layout in android for COLSPAN = layout_span is working fine Thanks in advance
0
votes
1answer
83 views

TableLayout inside ListView

There is a page in my android application which has a slide out menu and some data that needs to be displayed in the main screen. The slide out menu has the required menu options. the main page is in ...
0
votes
0answers
57 views

android stretch scrollview over multiple tableRows

so what i'm trying to do is make a layout that has one row at the top of the screen that has buttons and textviews. below that top row is a scrollview that has many rows that are added dynamically ...
0
votes
0answers
80 views

Expandable list view with table layout in android

i have to create a layout with 3 expandable list views and and each expandableview contains a table layout, shows when it expands. is there any workarround or any suggetsion.
0
votes
1answer
49 views

TableLayout not working

I have a TableLyout (in an XML file), that I am trying to add table rows to. Each row contains buttons whose number is controlled by a parameter. Each time I run this code, the program exits. It ...
1
vote
1answer
54 views

Android:Have an issue with TableLayout in landscape mode

I have wrote the following xml code to arrange buttons in tabular format but it is not working with me when run in the emulator or in my phone device where buttons shown one after the other (in ...
0
votes
1answer
56 views

Table layout shrinked in tablet in Android

I have made an application that runs on Samsung Galaxy 2S. I am extending it to tablet so I have copied all the layouts and pasted in the layout-large folder. Problems occurred with image shifting ...
0
votes
0answers
34 views

Android Table Headers

Is there a way to define the column and row headers in an Android data table so that a mobile screenreader can associate the header to the data cell? I know how to do this in iOS but I don't see it ...
0
votes
1answer
67 views

Programmitically adding items from a list to a TableLayout

I have an Android project I am working on. I am fairly new to Android Development so I have some code in a MainActivity.java file that I am working on Creating a Table Layout for but the way my code ...
1
vote
2answers
300 views

Height of ListView fills the whole screen, although set as wrap_content

i have this ListView inside a LinearLayout: <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" ...

1 2 3 4 5 14