About 117,000 results
Open links in new tab
  1. layout - Android TableLayout Width - Stack Overflow

    Oct 30, 2010 · Even though I have have specified android:layout_width="fill_parent" for TableLayout, TableRow & all widgets (in 'values' column). The screen looks perfect when the …

  2. How to create a table by using TableLayout in Android Studio?

    Nov 30, 2015 · Can some one provides a sample code for me to reference? I want to create the table which likes the photo below. TABLE:

  3. How can I create a table with borders in Android?

    Jan 21, 2010 · I use a table layout to display data as table, but I want a table with user-defined columns and rows with borders. Suggestions?

  4. Adding Table rows Dynamically in Android - Stack Overflow

    Aug 13, 2013 · I am trying to create a layout where I need to add table rows dynamically. Below is the table layout xml

  5. android - How to add border around TableLayout? - Stack Overflow

    In order to create a border around your table rows and around the table layout, you need to create a drawable to serve as a border and then set it as a background to your rows.

  6. How to set Table Column in android - Stack Overflow

    Nov 19, 2015 · TableLayout tag in the Android layout has several attributes. One of them is the stretch columns - if given the described columns will be stretched so that to fill all the …

  7. android - How to make a scrollable TableLayout? - Stack Overflow

    Continue to help good content that is interesting, well-researched, and useful, rise to the top! To gain full voting privileges,

  8. How to add a row dynamically in a tableLayout in Android

    Jun 6, 2014 · I have a function who gets a list of products from a webpage, and I want to add a row in a tableLayout for each element of the list. public void getProductsOfCategory() throws …

  9. Android TableLayout With Different Column's Width In A Row

    In my case, the main take away here was to use android:layout_width="0dp" in all the column view entries. My table layout has this android:stretchColumns="*". Otherwise - I didn't need to …

  10. How do I create a table in Jetpack Compose? - Stack Overflow

    Jun 26, 2021 · I want to create table views, like the one below, to show the data I have. A header Another header First row Second row I tried using LazyVerticalGrid to achieve it but Jetpack …