DroidT
DroidT

Reputation: 3293

Multiple Views in a Single Column

Does anyone know a way to handle multiple views in a single column? I've been trying something where I have a table row with one column as another tablelayout with 3 textviews but the views won't fit into the screen until I use the wide layout on the screen by turning it sideways.

        <TableRow>

        <TextView
            style="@style/strings"
            android:text="Initial Date" />

        <TableLayout>

            <TableRow>

                <EditText
                    android:id="@+id/ckMonth"
                    android:inputType="number" />

                <EditText
                    android:id="@+id/ckDay"
                    android:inputType="number" />

                <EditText
                    android:id="@+id/ckYear"
                    android:inputType="number" />
            </TableRow>
        </TableLayout>
    </TableRow>

Upvotes: 2

Views: 535

Answers (1)

shenhengbin
shenhengbin

Reputation: 4294

As I known , TableLayout's subcontrols cannt set the android:layout_width="wrap_content"

attributes ,they will be forced to accept the fill_parent

So I think you cannt put multiple views in one column.

But , I think you can use the android:layout_span instead.

Upvotes: 1

Related Questions