如何使编辑字段的大小固定
作者:互联网
我正在研究要修复Editfield框大小的android应用程序.例如,如果我想在上面添加100个单词,那么它不会增加编辑字段的大小.字符应保留在框中,而不会增加编辑文本的大小.我已经将我的editText的xml代码与图像一起粘贴了.
<EditText
android:id="@+id/fnametxt"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1.1"
android:background="@color/Beige"
android:enabled="false"
android:lines="1"
android:ems="15"
android:maxLines="1"
android:scrollHorizontally="true"
android:singleLine="true"
android:text="ufyufgiuhjlkh"
android:textColor="@color/Black"
android:textSize="12sp" />
提前致谢
解决方法:
固定您的字段的宽度.
您可以通过几种方式执行此操作:
>具有权重的LinearLayout.您的容器应具有android:weightSum =“ 100”(您可以输入100而不是100).例如,您可以输入here或here.应使用权重设置android:layout_width =“ 0dp”才能查看结果.
>带有边距的RelativeLayout.将第一个EditText设置为android:layout_alignParentRight =“ true”和android:layout_toRightOf =“ IdOfTextView”.将右边距设置为(例如)10dp. EditField将被拉伸以填充所有可用空间.
>您可以将android:maxWidth设置为dp或px中的某个值.或者maxLength或maxEms可以解决问题.
标签:android-edittext,layout,android 来源: https://codeday.me/bug/20191120/2047712.html