莫问天涯路几重,轻衫侧帽且从容。这篇文章主要讲述没有标签视图使用android:labelFor =“@ + id / @ + id /”属性指向此文本字段相关的知识,希望能为你提供帮助。
【没有标签视图使用android(labelFor =“@ + id / @ + id /”属性指向此文本字段)】我的xml中有一个EditText
,我收到了这个警告
没有标签视图使用android:labelFor =“@ + id / @ + id / et_password”属性指向此文本字段我搜索过SO而且发现了这些帖子,但遗憾的是我没有找到任何解释这个警告原因的答案。
1- Meaning of "No label views point to this text field" warning message
2- EditText warning in android app development
这是我的xml代码:
<
LinearLayout
android:id="@+id/ll_password"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<
TextView
android:id="@+id/tv_password"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="0.3"
android:text="@string/tv_password" />
<
EditText
android:id="@+id/et_password"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="0.7"
android:background="@color/background"
android:gravity="start|center_vertical"
android:inputType="textPassword"
android:singleLine="true" />
<
/LinearLayout>
我不知道为什么我会收到这个警告。到目前为止我做了什么:
1-我试着改变我的
EditText
id2-在我的布局中删除
TextView
但警告仍然存在。我只是想知道因为我的用户名没有任何警告我有相同的
LinearLayout
。我做错了吗?我收到这个警告的原因是什么?
答案在我的观点中有三次机会
1)可能是你对组件的id做错了。使用
id
如下。android:id="@+id/editText1"
2)你不应该在
labelFor
id中加号。它应该是:android:labelFor="@id/editText1"
加号只用一次来生成id。3)如果您只是将
Multiline Text
拖动到布局中,则此错误将显示在XML中。见this
另一答案只想为Anoop的答案添加一些解释。为了解决这个问题,我刚将这一行添加到我的
TextView
:android:labelFor="@id/et_password"
它与EditText的id无关。
它与id的+符号无关。
这是最终的xml代码:
<
LinearLayout
android:id="@+id/ll_password"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<
TextView
android:id="@+id/tv_password"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="0.3"
android:labelFor="@id/et_password"
android:text="@string/tv_password" />
<
EditText
android:id="@+id/et_password"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="0.7"
android:background="@color/background"
android:gravity="start|center_vertical"
android:inputType="textPassword"
android:singleLine="true" />
<
/LinearLayout>
推荐阅读
- 如何为特定活动禁用Android Soft Keyboard()
- 如何连续删除键盘退格键上的字符长按android
- android如何将EditText光标设置为其文本的末尾[复制]
- SetEditable在最新的Android版本中不起作用
- Android EditText Capital Characters
- Android(TextInputLayout不同inputTypes的不同间距)
- 如何在android中显示密码开/关模式的切换按钮
- 笔画没有应用于矩形到xml drawable用作android中的edittext背景
- 在Android中滚动recyclelerview时,Edittext值消失