EditText 在 TextInputLayout 中不可见
EditText is not visible inside 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>
原因是您将 layout_width
设置为 0。
删除 editText
元素中的 layout_weight
并将 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"/>
此处您使用的编辑文本宽度为 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>
希望对你有用。
我有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>
原因是您将 layout_width
设置为 0。
删除 editText
元素中的 layout_weight
并将 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"/>
此处您使用的编辑文本宽度为 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>
希望对你有用。