Code Bye

Android 两个 textview 一行显示的问题


两个textview 在同一行显示, 而且后边的 lable 是随着前边标题文字的增多而往后移动, 标题超出一定长度后显示省略号..
android:ellipsize=”end”
android:singleLine=”true”
这样设置的话假如标题文字过多的话那么 lable 就看不到了…
这样的效果怎么样实现呢?
解决方案

40

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context="com.elf.demo.FTPActivity">
    <!-- 注意:LinearLayout的width的是wrap_content-->
    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="horizontal">
            <TextView
                android:layout_width="0dp"
                android:layout_weight="1"
                android:layout_height="wrap_content"
                android:ellipsize="end"
                android:singleLine="true"
                android:text="adfadfasdfasdfasdfasdfasdfasdfdfasdfdadfadfasdfasdfasdfasdfasdfasdfdfasdfd" />
            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginLeft="10dp"
                android:text="优惠" />
    </LinearLayout>
</LinearLayout>

CodeBye 版权所有丨如未注明 , 均为原创丨本网站采用BY-NC-SA协议进行授权 , 转载请注明Android 两个 textview 一行显示的问题