0

我正在开发一个使用编辑文本的 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>

在此处输入图像描述

4

3 回答 3

3

Just fix the width size of textview :

<LinearLayout
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content" >

                        <TextView
                            android:id="@+id/fname"
                            android:layout_width="100dp"
                            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>
于 2014-12-23T06:26:01.467 回答
0

使用下面的代码它工作正常:

<LinearLayout
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:layout_gravity="bottom"
                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"
                        android:singleLine="true"/>

                    <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>
于 2014-12-23T06:33:20.087 回答
0

试试这个..通过给定宽度它使设计兼容性变得复杂

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_weight="1"
    android:layout_gravity="bottom"
    android:orientation="vertical" >

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        android:weightSum="4" >

        <TextView
            android:id="@+id/fname"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:text=" First Name:"
            android:textColor="@android:color/black"
            android:textSize="12sp"
            android:layout_weight="1" />

        <EditText
            android:id="@+id/fnametxt"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:background="@android:color/black"
            android:layout_weight="3"
            android:ems="15"
            android:enabled="false"
            android:lines="1"
            android:maxLines="1"
            android:scrollHorizontally="true"
            android:singleLine="true"
            android:text="ufyufgiuhjlkh"
            android:textColor="@android:color/black"
            android:textSize="12sp" />
    </LinearLayout>

</LinearLayout> 
于 2014-12-23T06:53:39.380 回答