如何在所有行中使用editText填充tableRow

时间:2015-08-07 20:13:05

标签: android android-layout tablerow

我有一些行的表格布局。一行用于描述下一个用于editText以获取一些值。如何强制此EditText填充表格行? 我以为我是用android:layout_weight =“1”来做的,但是当我在editText中输入一些内容时,它会长到侧面并粉碎我的布局。即使我没有达到单词的最大长度,我也可以输入editText。

这是我的代码:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"
android:layout_height="match_parent" android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin" tools:context=".MainActivity">

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_above="@+id/InnerRelativeLayout">


<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:stretchColumns="1"

    android:id="@+id/table">


    <TableRow
        android:id="@+id/name">

        <TextView
            android:layout_column="1"
            android:text="Název"
            android:padding="3dip"
            />

    </TableRow>

    <View
        android:layout_width="fill_parent"
        android:layout_height="1dp"
        android:background="@android:color/darker_gray"/>

    <TableRow
        android:id="@+id/nameEdit">

        <EditText
            android:id="@+id/tariffName"

            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:ellipsize="start"
            android:inputType="text"
            android:layout_weight="1"
            android:layout_marginLeft="15dp"
            android:background="@drawable/edittext"/>

    </TableRow> 

编辑:添加了屏幕

输入前

Before input

输入后

After input

1 个答案:

答案 0 :(得分:0)

好吧,我自己解决了。我使用了android:layout_span =&#34; 3&#34;安装了android:layout_weight =&#34; 1&#34;。