Android 前後兩個textview 前面的一個長度自適應的解決方案

來源:互聯網
上載者:User

標籤: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>

 

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.