我有edittext,当我输入一些文字宽度自动增加。这是我的编辑文本xml代码
<RelativeLayout
android:id="@+id/relativeLayout2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true" >
<EditText
android:id="@+id/namefild"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:background="@drawable/edittextbackground"
android:hint="Name"
android:paddingLeft="15dp"
android:textColorHint="#e2e0e0" />
</RelativeLayout>
我怎么能解决我的问题?我不需要改变edittext的宽度。如果有人知道解决方案,请帮助我
答案 0 :(得分:1)
因为EditText的宽度是wrap_content。尝试使用fixed width或match_parent。它应该工作。
答案 1 :(得分:0)
尝试这个属性android:layout_width =“0dp”