限制在android中的textfield中查看的字符数

时间:2014-05-10 17:14:34

标签: java android xml textfield

我还是Android新手,我正在尝试制作笔记应用

我希望用户能够在标题中输入任何内容(文本) 但只显示几个字符(比如15),然后显示(...)

我尝试搜索这个,但我发现的唯一一件事是如何限制文本的大小(我不想这样做,我只是想限制观看的内容)

我不想做以下事情:

android:maxLength="10"

所以我的问题是:最好的方法是什么?  还有一种方法可以在xml中或仅在java中执行吗?

感谢任何帮助:)

3 个答案:

答案 0 :(得分:3)

将此内容写入textView

    android:ellipsize="end"
    android:maxLines="1"
    android:singleLine="true"

如果要在textView中滚动,请使用此

    android:scrollHorizontally="true"

http://developer.android.com/reference/android/widget/TextView.html#attr_android:ellipsize

答案 1 :(得分:1)

这不是答案,更多是评论,但您可以尝试android:singleLine = "true"

source

答案 2 :(得分:0)

您只需更改

机器人:layout_width = “WRAP_CONTENT”

使用以下行

机器人:layout_width = “match_parent”

<LinearLayout
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerVertical="true"
            android:layout_marginLeft="10dp"
            android:layout_marginTop="10dp"
            android:layout_toRightOf="@+id/visitBox"
            android:orientation="vertical" >

            <TextView
                android:id="@+id/txvrequestTitle"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:singleLine="true"
                android:text="Abcdefghighiklmnon"
                android:textAppearance="?android:attr/textAppearanceLarge"
                android:textColor="@color/orange_color" />


        </LinearLayout>