我有一个包含许多视图的布局,其中之一是使用背景图像编辑文本。一切都很好,直到只有几行,但是当输入更多的文本行时,编辑文本开始扩展,并且它还会将其他视图推到下面,这是不期望的。
我已将宽度设为 wrapcontent。请在下面找到布局代码
<FrameLayout
android:id="@+id/ll"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center" >
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="10dp"
android:src="@drawable/dsh" />
<EditText
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:background="@android:color/transparent"
android:maxHeight="250dp"
android:scrollbars="vertical"
android:singleLine="false" />