我正在开发一个使用编辑文本的 Android 应用程序。当我将长文本放入其中时,它会增加编辑文本的大小。我已经给出"wrap_content"
了宽度并限制了行数,'ems'
但它不起作用。
当我放置长文本或短文本时,它会增加或减小编辑文本的大小。我已经发布了我的问题的 XML 代码和快照。
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
android:layout_weight="1"
android:orientation="vertical" >
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<TextView
android:id="@+id/fname"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text=" First Name:"
android:textColor="@color/Black"
android:textSize="12sp" />
<EditText
android:id="@+id/fnametxt"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
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>