Wie kann ich in Android eine Tabelle mit Rahmen erstellen?


187

Ich verwende ein Tabellenlayout, um Daten als Tabelle anzuzeigen, möchte jedoch eine Tabelle mit benutzerdefinierten Spalten und Zeilen mit Rahmen. Vorschläge?

Antworten:


198

Meine Lösung für dieses Problem besteht darin, eine XML-Zeichenressource in das Hintergrundfeld jeder Zelle einzufügen. Auf diese Weise können Sie für alle Zellen eine Form mit dem gewünschten Rand definieren. Die einzige Unannehmlichkeit besteht darin, dass die Ränder der extremen Zellen halb so breit sind wie die anderen, aber es ist kein Problem, wenn Ihre Tabelle den gesamten Bildschirm ausfüllt.

Ein Beispiel:

drawable / cell_shape.xml

<?xml version="1.0" encoding="utf-8"?>
<shape
  xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape= "rectangle"  >
        <solid android:color="#000"/>
        <stroke android:width="1dp"  android:color="#ff9"/>
</shape>

layout / my_table.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

    <TableRow
        android:id="@+id/tabla_cabecera"
        android:layout_width="match_parent"
        android:layout_height="match_parent"></TableRow>

    <TableLayout
        android:id="@+id/tabla_cuerpo"
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <TableRow
            android:id="@+id/tableRow1"
            android:layout_width="match_parent"
            android:layout_height="wrap_content">

            <TextView
                android:id="@+id/textView1"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:background="@drawable/cell_shape"
                android:padding="5dp"
                android:text="TextView"
                android:textAppearance="?android:attr/textAppearanceMedium"></TextView>

            <TextView
                android:id="@+id/textView1"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:background="@drawable/cell_shape"
                android:padding="5dp"
                android:text="TextView"
                android:textAppearance="?android:attr/textAppearanceMedium"></TextView>

            <TextView
                android:id="@+id/textView1"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:background="@drawable/cell_shape"
                android:padding="5dp"
                android:text="TextView"
                android:textAppearance="?android:attr/textAppearanceMedium"></TextView>

        </TableRow>

        <TableRow
            android:id="@+id/tableRow2"
            android:layout_width="match_parent"
            android:layout_height="wrap_content">

            <TextView
                android:id="@+id/textView1"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:background="@drawable/cell_shape"
                android:padding="5dp"
                android:text="TextView"
                android:textAppearance="?android:attr/textAppearanceMedium"></TextView>

            <TextView
                android:id="@+id/textView1"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:background="@drawable/cell_shape"
                android:padding="5dp"
                android:text="TextView"
                android:textAppearance="?android:attr/textAppearanceMedium"></TextView>

            <TextView
                android:id="@+id/textView1"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:background="@drawable/cell_shape"
                android:padding="5dp"
                android:text="TextView"
                android:textAppearance="?android:attr/textAppearanceMedium"></TextView>
        </TableRow>

        <TableRow
            android:id="@+id/tableRow3"
            android:layout_width="match_parent"
            android:layout_height="wrap_content">

            <TextView
                android:id="@+id/textView1"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:background="@drawable/cell_shape"
                android:padding="5dp"
                android:text="TextView"
                android:textAppearance="?android:attr/textAppearanceMedium"></TextView>

            <TextView
                android:id="@+id/textView1"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:background="@drawable/cell_shape"
                android:padding="5dp"
                android:text="TextView"
                android:textAppearance="?android:attr/textAppearanceMedium"></TextView>

            <TextView
                android:id="@+id/textView1"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:background="@drawable/cell_shape"
                android:padding="5dp"
                android:text="TextView"
                android:textAppearance="?android:attr/textAppearanceMedium"></TextView>

        </TableRow>

        <TableRow
            android:id="@+id/tableRow4"
            android:layout_width="match_parent"
            android:layout_height="wrap_content">

            <TextView
                android:id="@+id/textView1"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:background="@drawable/cell_shape"
                android:padding="5dp"
                android:text="TextView"
                android:textAppearance="?android:attr/textAppearanceMedium"></TextView>

            <TextView
                android:id="@+id/textView1"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:background="@drawable/cell_shape"
                android:padding="5dp"
                android:text="TextView"
                android:textAppearance="?android:attr/textAppearanceMedium"></TextView>

            <TextView
                android:id="@+id/textView1"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:background="@drawable/cell_shape"
                android:padding="5dp"
                android:text="TextView"
                android:textAppearance="?android:attr/textAppearanceMedium"></TextView>

        </TableRow>
    </TableLayout>


</LinearLayout>

Bearbeiten: Ein Beispiel

Geben Sie hier die Bildbeschreibung ein

Edit2: Ein weiteres Beispiel (mit mehr Elementen: Kreisecken, Verläufe ...) Geben Sie hier die Bildbeschreibung ein

Ich habe dieses Problem mit weiteren Details unter http://blog.intelligenia.com/2012/02/programacion-movil-en-android.html#more erklärt . Es ist auf Spanisch, aber es gibt einige Codes und Bilder von komplexeren Tabellen.


6
Ich kann den Inhalt
nicht anzeigen

1
Wie würde ich den Hintergrund der Ansicht programmgesteuert einstellen? view.setBackground(?)
Rasen58

1
Um dies anzuzeigen, löschen Sie einfach die erste Zeile mit dem Namen tabla_cabecera
ymerdrengene

1
Dadurch erscheinen die Ränder mindestens 2 Pixel dick, was nicht so schön ist wie ein Rand mit einer Breite von 1 Pixel.
AndroidDev

1
Ja, wie ich bereits erklärt habe, ist dies die einzige Unannehmlichkeit. Wenn Ihre Tabelle jedoch den gesamten Bildschirm ausfüllt, können Sie den unteren und linken Rand auf 1 Pixel (zum Beispiel) setzen und Sie erhalten eine Tabelle mit 1 Pixel Rand.
David Jesse

56

Ich muss Brad zustimmen. Das war eine schreckliche Antwort. In der Android-Dokumentation heißt es, dass in TableLayout-Containern keine Grenzlinien angezeigt werden. Das Senden an die Android-Site hilft ihnen also nicht weiter. Ich konnte auf droidnova eine "schmutzige" Lösung finden, bei der eine Hintergrundfarbe für das TableLayout festgelegt, dann eine andere Hintergrundfarbe für die TableRow festgelegt und der Zeile layout_margin hinzugefügt wird. Ich mag diese Lösung nicht, aber sie funktioniert für Zeilenränder. Ich denke, Sie könnten das Gleiche mit den Elementen tun, aus denen jedes "Zellen" -Element besteht, aber ich habe es nicht überprüft.

Ein ähnliches Beispiel wie bei DroidNova:

<TableLayout android:background="#000000"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
  <TableRow android:background="#FFFFFF"
  android:layout_width="fill_parent"
  android:layout_height="wrap_content"
  android:layout_margin="1dp">
     ...
  </TableRow>
</TableLayout>

1
Beachten Sie das absichtliche Überziehungsproblem hier, es kann zu Ruckeln / Stottern in der Benutzeroberfläche führen, wenn die Tabelle groß ist.
Vicky Chijwani

Wie kann ich layout_margin programmgesteuert für ein TableRowObjekt festlegen ?
James Wierzba

es fügt nur Umrisse um die Tabelle und ihre Zeilen hinzu, aber nicht zwischen den Spalten
user924

41

Wenn Sie nur versuchen, eine Linie zwischen den Zeilen zu haben (z. B. direkt über einer "Gesamt" -Zeile), gibt es eine einfache Lösung: Fügen Sie einfach eine TableRow mit einer Hintergrundfarbe und einer bestimmten layout_height wie der folgenden hinzu:

<TableRow android:layout_height="1px" android:background="#BDBDBD">
   <TextView android:layout_span="2" android:layout_height="1px" 
             android:layout_width="fill_parent" android:text="">
   </TextView>
</TableRow>

Stellen Sie ein android:layout_height="1px"oder wie dick der Rand sein soll. Füllen Sie so viele leere TextView-Spalten aus, wie Sie benötigen, um mit dem Rest Ihrer Tabelle übereinzustimmen, oder verwenden Sie einfach eine zusammen mit, android:layout_spanwie ich gezeigt habe.

Die Ausgabe sieht ungefähr so ​​aus:

Tabellenrand demonstriert

Wenn Sie versuchen, kompliziertere Rahmen hinzuzufügen, sind die anderen bereits veröffentlichten Antworten besser geeignet.


Warum ein, TextViewwenn Sie Viewstattdessen ein verwenden können? Es ist auch keine gute Praxis, genaue Pixel anzugeben. Verwenden Sie stattdessen dp / sp. Siehe auch diesen Thread: stackoverflow.com/questions/2025282/… .
Stephan

Vielen Dank für das Feedback ... Ich nehme an, es gibt keinen Grund, TextView zu verwenden - es war nur ein Beispiel. Zweitens verwende ich px, es sei denn, ich missverstehe dp / sp (ziemlich wahrscheinlich, da ich erst seit ungefähr einer Woche auf Android entwickle), weil ich nur eine garantierte 1-Pixel-Linie zwischen meinen Zeilen möchte, egal was passiert Auflösung oder Bildschirmgröße, die ich verwende. Ich mag sehr dünne Linien. Andere Benutzer haben möglicherweise einen anderen Geschmack und verwenden andere Geräte.
Michael Bray

Ja, aber magst du sehr dünne Linien? - das heißt, gute einfache Lösung bekommt meine Stimme
Gheese

26

Was ich wollte, ist ein Tisch wie dieser

Tabellenbild mit vertikalen Teilern

Ich habe dies in meiner styles.xml hinzugefügt :

      <style name="Divider">
        <item name="android:layout_width">1dip</item>
        <item name="android:layout_height">match_parent</item>
        <item name="android:background">@color/divider_color</item>
    </style>

    <style name="Divider_invisible">
        <item name="android:layout_width">1dip</item>
        <item name="android:layout_height">match_parent</item>
    </style>

Dann in meinem Tabellenlayout :

 <TableLayout
            android:id="@+id/table"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="horizontal"
            android:stretchColumns="*" >

            <TableRow
                android:id="@+id/tableRow1"
                android:layout_width="fill_parent"
                android:layout_height="match_parent"
                android:background="#92C94A" >

                <TextView
                    android:id="@+id/textView11"
                    android:paddingBottom="10dp"
                    android:paddingLeft="5dp"
                    android:paddingRight="5dp"
                    android:paddingTop="10dp" />

                <LinearLayout
                    android:layout_width="1dp"
                    android:layout_height="match_parent" >

                    <View style="@style/Divider_invisible" />
                </LinearLayout>

                <TextView
                    android:id="@+id/textView12"
                    android:paddingBottom="10dp"
                    android:paddingLeft="5dp"
                    android:paddingRight="5dp"
                    android:paddingTop="10dp"
                    android:text="@string/main_wo_colon"
                    android:textColor="@color/white"
                    android:textSize="16sp" />

                <LinearLayout
                    android:layout_width="1dp"
                    android:layout_height="match_parent" >

                    <View style="@style/Divider" />
                </LinearLayout>

                <TextView
                    android:id="@+id/textView13"
                    android:paddingBottom="10dp"
                    android:paddingLeft="5dp"
                    android:paddingRight="5dp"
                    android:paddingTop="10dp"
                    android:text="@string/side_wo_colon"
                    android:textColor="@color/white"
                    android:textSize="16sp" />

                <LinearLayout
                    android:layout_width="1dp"
                    android:layout_height="match_parent" >

                    <View style="@style/Divider" />
                </LinearLayout>

                <TextView
                    android:id="@+id/textView14"
                    android:paddingBottom="10dp"
                    android:paddingLeft="5dp"
                    android:paddingRight="5dp"
                    android:paddingTop="10dp"
                    android:text="@string/total"
                    android:textColor="@color/white"
                    android:textSize="16sp" />
            </TableRow>

            <!-- display this button in 3rd column via layout_column(zero based) -->

            <TableRow
                android:id="@+id/tableRow2"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:background="#6F9C33" >

                <TextView
                    android:id="@+id/textView21"
                    android:padding="5dp"
                    android:text="@string/servings"
                    android:textColor="@color/white"
                    android:textSize="16sp" />

                <LinearLayout
                    android:layout_width="1dp"
                    android:layout_height="match_parent" >

                    <View style="@style/Divider" />
                </LinearLayout>

..........
.......
......

22

Sie können dies auch progamatisch tun, anstatt über XML, aber es ist ein bisschen "hackischer". Aber geben Sie einem Mann keine Optionen und Sie lassen ihm keine Wahl: p .. Hier ist der Code:

TableLayout table = new TableLayout(this);
TableRow tr = new TableRow(this);
tr.setBackgroundColor(Color.BLACK);
tr.setPadding(0, 0, 0, 2); //Border between rows

TableRow.LayoutParams llp = new TableRow.LayoutParams(LayoutParams.WRAP_CONTENT,LayoutParams.WRAP_CONTENT);
llp.setMargins(0, 0, 2, 0);//2px right-margin

//New Cell
LinearLayout cell = new LinearLayout(this);
cell.setBackgroundColor(Color.WHITE);
cell.setLayoutParams(llp);//2px border on the right for the cell


TextView tv = new TextView(this);
tv.setText("Some Text");
tv.setPadding(0, 0, 4, 3);

cell.addView(tv);
tr.addView(cell);
//add as many cells you want to a row, using the same approach

table.addView(tr);

14

<shape...>Sie können diese Lösung ausprobieren, um eine 1-dp-Kollapsgrenze um jede Zelle herum zu erstellen, ohne einen Java-Code zu schreiben und ohne ein weiteres XML-Layout mit Tag zu erstellen :

In <TableLayout...>add android:background="#CCC"und android:paddingTop="1dp"undandroid:stretchColumns="0"

In <TableRow...>add android:background="#CCC"und android:paddingBottom="1dp"undandroid:paddingRight="1dp"

In jeder Zelle / jedem Kind in TableRow, dh <TextView...>hinzufügen android:background="#FFF"undandroid:layout_marginLeft="1dp"

Es ist sehr wichtig, die beschriebenen Polster und Ränder einzuhalten. Diese Lösung zeichnet eine 1dp-Border-Eigenschaft, auch bekannt als Border-Collapse-Eigenschaft, in (X) HTML / CSS.

Die Hintergrundfarbe in <TableLayout...>und <TableRow...>repräsentiert eine Grenzlinienfarbe und der Hintergrund in <TextView...>füllt eine Tabellenzelle. Bei Bedarf können Sie Zellen auffüllen.

Ein Beispiel ist hier:

<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:background="#CCC"
    android:paddingTop="1dp"
    android:stretchColumns="0"
    android:id="@+id/tlTable01">

    <TableRow
        android:background="#CCC"
        android:paddingBottom="1dp"
        android:paddingRight="1dp">
        <TextView 
            android:layout_marginLeft="1dp"
            android:padding="5dp"
            android:background="#FFF"
            android:text="Item1"/>
        <TextView 
            android:layout_marginLeft="1dp"
            android:padding="5dp"
            android:background="#FFF"
            android:gravity="right"
            android:text="123456"/>
    </TableRow>
    <TableRow
        android:background="#CCC"
        android:paddingBottom="1dp"
        android:paddingRight="1dp">
        <TextView 
            android:layout_marginLeft="1dp"
            android:padding="5dp"
            android:background="#FFF"
            android:text="Item2"/>
        <TextView 
            android:layout_marginLeft="1dp"
            android:padding="5dp"
            android:background="#FFF"
            android:gravity="right"
            android:text="456789"/>
    </TableRow>
</TableLayout>

Fantastisch! Vielen Dank!
Superodde

Dies ist gut, aber es gibt ein Problem, wenn Sie den Dunkelmodus verwenden möchten. Weil Sie in TableRow background = white einfügen müssen, um weiße Ränder zu haben. Und jetzt, wenn Ihre zweite TextView länger (höher) als die erste TextView ist, haben Sie einen weißen Hintergrund hinter der ersten TextView. Das Setzen des Hintergrunds für die erste Textansicht auf dunkel hilft nicht, da nicht die gesamte Ansicht abgedeckt wird.
Wiktor Kalinowski

1
Dies ist, wonach ich gesucht habe ... Danke Auch das, was @WiktorKalinowski gesagt hat, gilt für den dunklen Modus, den wir manuell herumspielen müssen.
Hallo zehn

14

Geben Sie hier die Bildbeschreibung ein

Hier habe ich die Liste anhand des folgenden Designbildes gestaltet. Mein Listitem-Dateiname lautet Propertylistitem.xml und cellborder.xml wird als zeichnbare Form für die Cellborder-Ausgabe verwendet. Diese Bilder werden in diesem Bild angezeigt. notwendiger Code, den ich hier hinzugefügt habe.

Dateiname: propertyylistitem.xml

<TableLayout... >
            <TableRow... >
                 <TextView ...
                    android:background="@drawable/cellborder"
                    android:text="Amount"/>
            </TableRow>

            <TableRow... >
                <TextView...
                    android:background="@drawable/cellborder"
                    android:text="5000"/>
            </TableRow>
        </TableLayout>

Dateiname: cellborder.xml Hier möchte ich nur einen Rand in meinem Design, also habe ich das einfarbige Tag kommentiert.

<?xml version="1.0" encoding="utf-8"?>
    <shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle" >
    <!--     <solid android:color="#dc6888"/>     -->
        <stroke android:width="0.1dp" android:color="#ffffff"
            />
        <padding android:left="0dp" android:top="0dp"
                android:right="0dp" android:bottom="0dp" />
    </shape>

8

Nach langer Suche und stundenlangem Ausprobieren ist dies der einfachste Code, den ich machen konnte:

ShapeDrawable border = new ShapeDrawable(new RectShape());
border.getPaint().setStyle(Style.STROKE);
border.getPaint().setColor(Color.BLACK);
tv.setBackground(border);
content.addView(tv);

tv ist eine Textansicht mit einem einfachen Text und Inhalt ist mein Container (in diesem Fall LinearLayout). Das ist etwas einfacher.


erfordert API Level 16 :(
AndacAydin

setBackgroundDrawable()kann stattdessen verwendet werden.
Corey Wu

8

Nun, das könnte Sie inspirieren. Diese Schritte zeigen, wie Sie eine umrandete Tabelle dynamisch erstellen

Hier ist die Tabellenansicht

<android.support.v4.widget.NestedScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/nested_scroll_view"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:scrollbars="none"
    android:scrollingCache="true">
    <TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/simpleTableLayout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginLeft="45dp"
        android:layout_marginRight="45dp"
        android:stretchColumns="*"
        >
    </TableLayout>
</android.support.v4.widget.NestedScrollView>

und hier die zu verwendende Zeile "attrib_row.xml"

<?xml version="1.0" encoding="utf-8"?>
<TableRow xmlns:android="http://schemas.android.com/apk/res/android"
    android:background="@drawable/border"
    >
    <TextView
        android:id="@+id/attrib_name"
        android:textStyle="bold"
        android:height="30dp"
        android:background="@drawable/border"
        android:gravity="center"
        />
    <TextView
        android:id="@+id/attrib_value"
        android:gravity="center"
        android:height="30dp"
        android:textStyle="bold"
        android:background="@drawable/border"
        />
</TableRow>

und wir können diese XML-Datei zu drawable hinzufügen, um unserer Tabelle "border.xml" einen Rahmen hinzuzufügen.

<?xml version="1.0" encoding="utf-8"?>
<shape
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape= "rectangle">
    <solid android:color="@color/colorAccent"/>
    <stroke android:width="1dp" android:color="#000000"/>
</shape>

und schließlich ist hier der kompakte Code, der in Kotlin geschrieben ist, aber es ist einfach, ihn bei Bedarf in Java zu konvertieren

well temps ist eine Array-Liste, die Daten enthält: ArrayList<Double>()

fun CreateTable()
{
    val temps=controller?.getTemps()
    val rowHead = LayoutInflater.from(context).inflate(R.layout.attrib_row, null) as TableRow
    (rowHead.findViewById<View>(R.id.attrib_name) as TextView).text=("time")
    (rowHead.findViewById<View>(R.id.attrib_value) as TextView).text=("Value")
    table!!.addView(rowHead)
    for (i in 0 until temps!!.size) {

        val row = LayoutInflater.from(context).inflate(R.layout.attrib_row, null) as TableRow
        (row.findViewById<View>(R.id.attrib_name) as TextView).text=((i+1).toString())
        (row.findViewById<View>(R.id.attrib_value) as TextView).text=(temps[i].toString())
        table!!.addView(row)
    }
    table!!.requestLayout()
}

und Sie können es zum Beispiel so in Ihrem Fragment verwenden

   override fun onViewCreated(view: View?, savedInstanceState: Bundle?) {
        super.onViewCreated(view, savedInstanceState)
        table = view?.findViewById<View>(R.id.simpleTableLayout) as TableLayout
        CreateTable()
    }

Das Endergebnis sieht so aus Geben Sie hier die Bildbeschreibung ein


5

Wie wäre es, wenn Sie die onDraw-Methode überschreiben und dann Linien auf die Leinwand malen?

for(int i = 0; i < rows; i++)
    {
        canvas.drawLine(0, i * m_cellHeight, m_totalWidth, i * m_cellHeight, paint);
    }
    for(int i = 0; i < m_columns; i++){
        canvas.drawLine(i* m_cellWidth, 0, i * m_cellWidth, m_cellHeight * rows, paint);
    }

3

Ich habe diese Lösung verwendet: In habe TableRowich für jede Zelle LinearLayoutmit vertikaler Linie und tatsächlicher Zelle erstellt und nach jeder TableRoweine horizontale Linie hinzugefügt.

Schauen Sie sich den folgenden Code an:

<TableLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:shrinkColumns="1">

    <TableRow            
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" >

            <LinearLayout 
                android:orientation="horizontal"
                android:layout_height="match_parent"
                android:layout_weight="1">

                <TextView 
                    android:layout_width="0dp"
                    android:layout_height="wrap_content"
                    android:gravity="center"/>

            </LinearLayout>

            <LinearLayout 
                android:orientation="horizontal"
                android:layout_height="match_parent"
                android:layout_weight="1">

                <View
                    android:layout_height="match_parent"
                    android:layout_width="1dp"
                    android:background="#BDCAD2"/>

                <TextView 
                    android:layout_width="0dp"
                    android:layout_height="wrap_content"
                    android:gravity="center"/>

            </LinearLayout>
      </TableRow>

      <View
        android:layout_height="1dip"
        android:background="#BDCAD2" />

      <!-- More TableRows -->
</TableLayout>

Hoffe es wird helfen.


Dies ist ein einfacher Ansatz zum Hinzufügen einer einzelnen Zeile unterhalb der Zeile.
Mark.ewd

3

Hier ist eine gute Möglichkeit, dieses Problem zu lösen:

Erstellen Sie ein Rechteck, das mit abgerundeten Ecken wie folgt gezeichnet werden kann:

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle"> 
    <stroke android:width="2dp"
            android:color="#888888"/> 

    <corners android:bottomRightRadius="6dp" 
             android:bottomLeftRadius="6dp" 
             android:topLeftRadius="6dp" 
             android:topRightRadius="6dp"/> 
</shape>

Speichern Sie es im Zeichenordner mit dem Namen round_border.xml

Erstellen Sie dann ein relatives Layout, das den abgerundeten Rand als Hintergrund wie folgt verwendet:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent" 
    android:background="@drawable/rounded_border">
   <ListView 
       android:id="@+id/list_view"
       android:layout_width="match_parent"
       android:layout_height="wrap_content"/>

</RelativeLayout>

Speichern Sie das in Ihrem Layoutordner und nennen Sie es table_with_border.xml

Wenn Sie eine solche Tabelle benötigen, ziehen Sie sie mit der Include-Syntax wie folgt in eine Ansicht:

<include
        android:id="@+id/rounded_table"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        layout="@layout/table_with_border" />

Möglicherweise möchten Sie einen gewissen Abstand um die Kanten hinzufügen. Wickeln Sie das Include also einfach in ein LinearLayout ein und fügen Sie etwas Polsterung um die Kanten hinzu.

Einfacher und einfacher Weg, um einen hübschen Rand um einen Tisch zu bekommen.


2

Der Strich verdoppelt sich in den mittleren Abschnitten. Ich habe diese Ebenenliste zum Zeichnen verwendet:

<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >

 <item android:top="0dp" android:left="0dp" android:bottom="0dp" android:right="0dp">

     <shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
       <solid android:color="@color/grey" />
    </shape>
</item>

<item android:top="1dp" android:left="1dp" android:bottom="1dp" android:right="1dp">

    <shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
      <solid android:color="@color/lightgrey" />
    </shape>
 </item>
</layer-list>

2

Ich denke, es ist am besten, ein 1px-Bild mit neun Patches zu erstellen und das showDividers-Attribut in TableRow und TableLayout zu verwenden, da beide LinearLayouts sind


Können Sie ein einfaches Beispiel dafür geben?
Hossein Shahdoost

2

Eine Grenze zwischen Zellen wird in den obigen Antworten verdoppelt. Sie können diese Lösung also ausprobieren:

<item
    android:left="-1dp"
    android:top="-1dp">

    <shape xmlns:android="http://schemas.android.com/apk/res/android"
           android:shape="rectangle">
        <solid android:color="#fff"/>
        <stroke
            android:width="1dp"
            android:color="#ccc"/>
    </shape>
</item>


2

Eine andere Lösung besteht darin, lineare Layouts zu verwenden und Teiler zwischen Zeilen und Zellen wie folgt festzulegen:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">

<View
    android:layout_width="match_parent"
    android:layout_height="1px"
    android:background="#8000"/>

<LinearLayout
    android:orientation="horizontal"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_weight="1">

    <View
        android:layout_width="@dimen/border"
        android:layout_height="match_parent"
        android:background="#8000"
        android:layout_marginTop="1px"
        android:layout_marginBottom="1px"/>

    <LinearLayout
        android:orientation="horizontal"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_weight="1"
        ></LinearLayout>

    <View
        android:layout_width="@dimen/border"
        android:layout_height="match_parent"
        android:background="#8000"
        android:layout_marginTop="1px"
        android:layout_marginBottom="1px"/>

    <LinearLayout
        android:orientation="horizontal"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_weight="1"></LinearLayout>

    <View
        android:layout_width="@dimen/border"
        android:layout_height="match_parent"
        android:background="#8000"
        android:layout_marginTop="1px"
        android:layout_marginBottom="1px"/>

</LinearLayout>

<View
    android:layout_width="match_parent"
    android:layout_height="1px"
    android:background="#8000"/>

<LinearLayout
    android:orientation="horizontal"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_weight="1">

    <View
        android:layout_width="@dimen/border"
        android:layout_height="match_parent"
        android:background="#8000"
        android:layout_marginTop="1px"
        android:layout_marginBottom="1px"/>

    <LinearLayout
        android:orientation="horizontal"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_weight="1"
        ></LinearLayout>

    <View
        android:layout_width="@dimen/border"
        android:layout_height="match_parent"
        android:background="#8000"
        android:layout_marginTop="1px"
        android:layout_marginBottom="1px"/>

    <LinearLayout
        android:orientation="horizontal"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_weight="1"></LinearLayout>
    <View
        android:layout_width="@dimen/border"
        android:layout_height="match_parent"
        android:background="#8000"
        android:layout_marginTop="1px"
        android:layout_marginBottom="1px"/>
</LinearLayout>

<View
    android:layout_width="match_parent"
    android:layout_height="1px"
    android:background="#8000"/>
</LinearLayout>

Es ist eine schmutzige Lösung, aber es ist einfach und funktioniert auch mit transparentem Hintergrund und Rahmen.


2

Ich weiß, dass dies eine alte Frage ist ... jedenfalls ... wenn Sie Ihre XML-Datei schön und einfach halten möchten, können Sie TableLayout erweitern und dispatchDraw überschreiben, um benutzerdefinierte Zeichnungen zu erstellen.

Hier ist eine schnelle und schmutzige Implementierung, die ein Rechteck um die Tabellenansicht sowie horizontale und vertikale Balken zeichnet:

public class TableLayoutEx extends TableLayout {
    private Paint linePaint = null;
    private Rect tableLayoutRect;

    public TableLayoutEx(Context context) {
        super(context);
    }

    public TableLayoutEx(Context context, AttributeSet attrs) {
        super(context, attrs);
    }

    @Override
    protected void onSizeChanged(int w, int h, int oldw, int oldh) {
        super.onSizeChanged(w, h, oldw, oldh);

        float strokeWidth = this.getContext().getResources().getDisplayMetrics().scaledDensity * 1;
        linePaint = new Paint(0);
        linePaint.setColor(0xff555555);
        linePaint.setStrokeWidth(strokeWidth);
        linePaint.setStyle(Paint.Style.STROKE);

        Rect rect = new Rect();           
        int paddingTop= getPaddingTop();

        this.getDrawingRect(rect);
        tableLayoutRect = new Rect(rect.left, rect.top + paddingTop, rect.right, rect.bottom);
    }

    @Override
    protected void dispatchDraw(Canvas canvas) {
        super.dispatchDraw(canvas);

        Rect rect = new Rect();

        if (linePaint != null) {
            canvas.drawRect(tableLayoutRect, linePaint);
            float y = tableLayoutRect.top;
            for (int i = 0; i < getChildCount() - 1; i++) {
                if (getChildAt(i) instanceof TableRow) {
                    TableRow tableRow = (TableRow) getChildAt(i);
                    tableRow.getDrawingRect(rect);
                    y += rect.height();
                    canvas.drawLine(tableLayoutRect.left, y, tableLayoutRect.right, y, linePaint);
                    float x = tableLayoutRect.left;
                    for (int j = 0; j < tableRow.getChildCount() - 1; j++) {
                        View view = tableRow.getChildAt(j);
                        if (view != null) {
                            view.getDrawingRect(rect);
                            x += rect.width();
                            canvas.drawLine(x, tableLayoutRect.top, x, tableLayoutRect.bottom, linePaint);
                        }
                    }
                }
            }
        }
    }
}

XML-Beispiel mit dem Text zum Umschließen der dritten Spalte:

<com.YOURPACKAGE.TableLayoutEx
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:shrinkColumns="2"
    android:paddingTop="6dp">

    <TableRow>
        <TextView
            android:text="@string/my_text_0_0"
            android:padding="@dimen/my_padding"/>
        <TextView
            android:text="@string/my_text_0_1"
            android:padding="@dimen/my_padding"/>
        <TextView                   
            android:text="@string/my_text_0_2_to_wrap"
            android:padding="@dimen/my_padding"/>
    </TableRow>

    <!--more table rows here-->

</com.YOURPACKAGE.TableLayoutEx>

2

Wenn Sie eine Tabelle mit dem Rand benötigen, empfehle ich ein lineares Layout mit Gewicht anstelle von TableLayout.

<TextView
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginTop="10dp"
    android:gravity="center"
    android:padding="7dp"
    android:background="@drawable/border"
    android:textColor="@android:color/white"
    android:text="PRODUCT"/>

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal"
    android:background="@android:color/black"
    android:paddingStart="1dp"
    android:paddingEnd="1dp"
    android:paddingBottom="1dp"
    android:baselineAligned="false">

    <LinearLayout
        android:layout_weight="1"
        android:layout_height="fill_parent"
        android:layout_width="0dp">

        <TextView
            android:id="@+id/chainprod"
            android:textSize="15sp"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:background="@android:color/white"
            android:gravity="center"
            android:textColor="@android:color/black"
            android:text="@string/pdct"/>

    </LinearLayout>

    <LinearLayout
        android:layout_weight="1"
        android:layout_height="fill_parent"
        android:layout_width="0dp"
        android:layout_marginStart="1dp">

        <TextView
            android:id="@+id/chainthick"
            android:textSize="15sp"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:background="@android:color/white"
            android:gravity="center"
            android:textColor="@android:color/black"
            android:text="@string/thcns"/>

    </LinearLayout>

    <LinearLayout
        android:layout_weight="1"
        android:layout_height="fill_parent"
        android:layout_width="0dp"
        android:layout_marginStart="1dp">

        <TextView
            android:id="@+id/chainsize"
            android:textSize="15sp"
            android:layout_width="fill_parent"
            android:layout_height="40dp"
            android:background="@android:color/white"
            android:gravity="center"
            android:textColor="@android:color/black"
            android:text="@string/size" />
    </LinearLayout>

    <LinearLayout
        android:layout_weight="1"
        android:layout_height="fill_parent"
        android:layout_width="0dp"
        android:layout_marginStart="1dp">

        <TextView
            android:textSize="15sp"
            android:layout_width="fill_parent"
            android:layout_height="40dp"
            android:background="@android:color/white"
            android:gravity="center"
            android:textColor="@android:color/black"
            android:text="@string/sqft" />
    </LinearLayout>

</LinearLayout>

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal"
    android:background="@android:color/black"
    android:paddingStart="1dp"
    android:paddingEnd="1dp"
    android:paddingBottom="1dp"
    android:baselineAligned="false">

    <LinearLayout
        android:layout_weight="1"
        android:layout_height="fill_parent"
        android:layout_width="0dp">

        <TextView
            android:id="@+id/viewchainprod"
            android:textSize="15sp"
            android:textStyle="bold"
            android:layout_width="fill_parent"
            android:layout_height="40dp"
            android:background="@android:color/white"
            android:gravity="center"
            android:textColor="@android:color/black"
            android:text="@string/pdct" />

    </LinearLayout>

    <LinearLayout
        android:layout_weight="1"
        android:layout_height="fill_parent"
        android:layout_width="0dp"
        android:layout_marginStart="1dp">

        <TextView
            android:id="@+id/viewchainthick"
            android:textSize="15sp"
            android:textStyle="bold"
            android:layout_width="fill_parent"
            android:layout_height="40dp"
            android:background="@android:color/white"
            android:gravity="center"
            android:textColor="@android:color/black"
            android:text="@string/thcns"/>
    </LinearLayout>

    <LinearLayout
        android:layout_weight="1"
        android:layout_height="fill_parent"
        android:layout_width="0dp"
        android:layout_marginStart="1dp">

        <TextView
            android:id="@+id/viewchainsize"
            android:textSize="15sp"
            android:textStyle="bold"
            android:layout_width="fill_parent"
            android:layout_height="40dp"
            android:background="@android:color/white"
            android:gravity="center"
            android:textColor="@android:color/black"
            android:text="@string/size"/>
    </LinearLayout>
    <LinearLayout
        android:layout_weight="1"
        android:layout_height="fill_parent"
        android:layout_width="0dp"
        android:layout_marginStart="1dp">

        <TextView
            android:id="@+id/viewchainsqft"
            android:textSize="15sp"
            android:textStyle="bold"
            android:layout_width="fill_parent"
            android:layout_height="40dp"
            android:background="@android:color/white"
            android:gravity="center"
            android:textColor="@android:color/black"
            android:text="@string/sqft"/>

    </LinearLayout>
</LinearLayout>

Geben Sie hier die Bildbeschreibung ein

Durch die Nutzung unserer Website bestätigen Sie, dass Sie unsere Cookie-Richtlinie und Datenschutzrichtlinie gelesen und verstanden haben.
Licensed under cc by-sa 3.0 with attribution required.