2

我有 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>
4

2 回答 2

3

原因是因为您设置为layout_width0。删除元素并将其更改为。 layout_weighteditTextlayout_widthmatch_parent

 <EditText
       android:id="@+id/txtRFID"
       android:inputType="text"
       android:layout_height="wrap_content"
       android:layout_width="match_parent"
       android:hint="TAG ID"/>
于 2019-05-22T08:21:01.040 回答
0

在这里,您使用的编辑文本 0dp 的宽度可能会导致问题,因此将其更改为match_parentwrap_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>

我希望它对你有用。

于 2019-05-22T09:02:34.237 回答