EditText在TextInputLayout内部不可见

时间:2019-05-22 08:17:45

标签: android android-layout textinputlayout

我有EditText,它位于TextInputLayout内。但是问题是在设备上部署后,EditText不可见。我的代码在下面。

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

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

        <android.support.design.widget.TextInputLayout
            android:id="@+id/textInputRFID"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_marginRight="5dp"
            android:layout_marginBottom="3dp"
            android:layout_weight=".70"
            android:orientation="horizontal">

            <EditText
                android:id="@+id/txtRFID"
                android:inputType="text"
                android:layout_weight=".70"
                android:layout_height="wrap_content"
                android:layout_width="0dp"
                android:hint="TAG ID"
                style="@style/textview_text" />
        </android.support.design.widget.TextInputLayout>

        <Button
            android:text="Start"
            android:id="@+id/BtnStartStop"
            android:background="@drawable/styl_blue_button"
            style="@style/textview_text"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight=".30" />
    </LinearLayout>
</TableRow>

2 个答案:

答案 0 :(得分:3)

原因是因为您将layout_width设置为0。 删除layout_weight元素中的editText并将layout_width更改为match_parent

 <EditText
       android:id="@+id/txtRFID"
       android:inputType="text"
       android:layout_height="wrap_content"
       android:layout_width="match_parent"
       android:hint="TAG ID"/>

答案 1 :(得分:0)

此处您使用的宽度可能是造成问题的编辑文本0dp的宽度,因此请更改为 match_parent wrap_content ,如下所述:

<android.support.design.widget.TextInputLayout
                android:id="@+id/textInputRFID"
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:layout_marginRight="5dp"
                android:layout_marginBottom="3dp"
                android:layout_weight=".70"
                android:orientation="horizontal">
                <EditText
                    android:id="@+id/txtRFID"
                    android:inputType="text"
                    android:layout_weight=".70"
                    android:layout_height="wrap_content"
                    android:layout_width="wrap_content"
                    android:hint="TAG ID"
                    style="@style/textview_text" />
            </android.support.design.widget.TextInputLayout>

我希望它对您有用。