码迷,mamicode.com
首页 > 移动开发 > 详细

Android 前后两个textview 前面的一个长度自适应的解决方案

时间:2014-06-28 20:00:45      阅读:441      评论:0      收藏:0      [点我收藏+]

标签:android   style   blog   color   width   name   

需求:

现在有水平的两个textView,前面的textView长度不固定,且要求后面的textView紧贴前面的,当前面的长度过长时显示省略号,后面的textView紧贴最右边且要全部显示。

解决:

<LinearLayout android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:id="@+id/ll_anniversary_tab_name"
            android:orientation="horizontal"
            android:layout_alignParentTop="true"
            android:layout_alignParentLeft="true">
        
            <TextView android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:layout_weight="1"
                android:lines="1"
                android:singleLine="true"
                android:ellipsize="middle"
                android:textSize="16dp"
                android:textColor="#000000"
                android:text="@string/about"
                android:id="@+id/tv_annversary_tab_name"/>
            
            <TextView android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:textSize="16dp"
                android:lines="1"
                android:singleLine="true"
                android:textColor="#2f80e6"
                android:text="@string/about"
                android:id="@+id/tv_annversary_tab_surffix"/>
            
        </LinearLayout>

 

Android 前后两个textview 前面的一个长度自适应的解决方案,布布扣,bubuko.com

Android 前后两个textview 前面的一个长度自适应的解决方案

标签:android   style   blog   color   width   name   

原文地址:http://www.cnblogs.com/gccBlog/p/3794785.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!