Textview不会截断文本

时间:2015-04-10 09:55:03

标签: android textview

以下是我的.xml文件

<?xml version="1.0" encoding="utf-8"?>
<TableRow xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/tableRow1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="center_vertical"
    android:gravity="center_vertical" >

    ...
    <TextView
        android:id="@+id/tvAlternateRoad"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginRight="@dimen/fancy_dashboard_max_speed_circle_strock_size"
        android:gravity="start"
        android:text="Via A11"
        android:lines="1"
        android:textColor="#808080"
        android:textSize="@dimen/fancy_dashboard_lable_size" />

</TableRow>

我在主视图.xml中调用上面的.xml文件,如下所示,

            <RelativeLayout
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:layout_weight="0.85"
                android:gravity="end"
                android:orientation="horizontal" >

                <TableLayout
                    android:id="@+id/layAlternateRoute"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_alignParentRight="true"
                    android:layout_margin="@dimen/fancy_dashboard_max_speed_circle_strock_size"
                    android:background="@drawable/bg_round_rect_alternate_route" />
            </RelativeLayout>

http://i.stack.imgur.com/a0KRs.png

我在屏幕上显示一个上面有TableRow元素的视图。我在运行时设置了Textview tvAlternateRoad的文本值。有时当Text很大时,它会移动到视图之外。我尝试使用来自某些S.O的android:ellipsize="end"来截断它。帖子,但它似乎现在不工作了一天。

有人可以帮我吗?

5 个答案:

答案 0 :(得分:1)

将paddingRight提供给文本视图。此外,文本视图具有宽度换行内容,与任何其他视图无关。因此,文本视图宽度可以超过文本长度的圆角背景图像。所以要么给出一些maxWidth值,要么将它与其他一些视图联系起来。

修改

我刚刚制作了这个xml:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<TextView
       android:id="@+id/textview_Statu"
            style="@style/text_view_login_style"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginTop="@dimen/more_txt3_margin_t"
            android:background="@android:color/white"
            android:ellipsize="end"
            android:singleLine="true"
            android:text="1234567890qwertyuiopasdfghjklzxcvbnm"
            android:textColor="@color/blue_end" />
  </LinearLayout>

在图形视图中,它看起来像这样 graphical view of text view

工作正常。

答案 1 :(得分:0)

我注意到TextView在包装和截断方面会做不同的事情,具体取决于它所在的容器。例如,尝试将TableRow单元格设为FrameLayout。然后将TextView放在FrameLayout内,看看会发生什么。

答案 2 :(得分:0)

试试这个

tablelayout应该是

<TableLayout
 android:id="@+id/tbl"
 android:layout_height="wrap_content"
 android:layout_width="match_parent"
  >

剩下的部分应该是

 <TableRow 
      android:layout_height="wrap_content"
      android:layout_width="match_parent"

      >

 <TextView


        android:id="@+id/tvAlternateRoad"


     android:layout_height="wrap_content"
            android:layout_width="match_parent"

            android:ellipsize="end"
    android:maxLines="1"
    android:minLines="1"

                android:layout_marginRight="@dimen/fancy_dashboard_max_speed_circle_strock_size"
                android:gravity="start"
                android:text="Via A11"
               android:layout_weight="1"
                android:textColor="#808080"
                android:textSize="@dimen/fancy_dashboard_lable_size" />

答案 3 :(得分:0)

使用: android:singleLine =“true”和android:ellipsize =“end” 并为你的textview设置一个固定的宽度,如“match_parent”或dp中的某些内容,如“180dp”等。 singleLine =“true”需要您的textview具有固定宽度,而“wrap_content”不提供该宽度。 textview只会在其视图边界的末尾显示省略号,因为你设置了“wrap_content”,你的textview没有任何固定的界限。

答案 4 :(得分:0)

好的,经过长时间的努力,我已经解决了这个问题。

逻辑:

  • 以编程方式获取屏幕尺寸
  • int screen_width = context.getResources()。getDisplayMetrics()。widthPixels;
  • 然后我使用42%的screen_width作为textView的最大宽度
  • ((TextView的)alternate.findViewById(R.id.tvAlternateRoad))setMaxWidth((int)的(SCREEN_WIDTH * 0.42));
  • 我还在xml
  • 中设置了以下值
  • 机器人:ellipsize =&#34;字幕&#34;
  • 机器人:MAXLINES =&#34; 1&#34;