0

ユーザーにメールアドレスを表示するために使用するTextViewがあります

                <TextView 
                    android:id="@+id/profile_email"
                    android:layout_width="fill_parent"
                    android:layout_height="wrap_content"
                    android:padding="6dip"
                    android:textColor="#000000"
                    android:maxLines="1"
                    android:ellipsize="end" />

私の問題は、多くの電子メールアドレスが、最後に楕円を付けるのではなく、途中で途切れるということです。次に例を示します。

私のメールアドレスが

short.name@mydomain.com

すべてが正常に動作します。ただし、私のメールアドレスが

really.longfreakennameforanemailaddressandscreenisntwideenough@mydomain.com

表示されるのは

really.

何か案は?

4

1 に答える 1

0

回避策として、次を使用できます。

android:scrollHorizontally="true"
于 2010-10-28T16:30:20.260 に答える