0

我对某些功能有疑问。我在TextView带有文本的操作栏中。当文本太长时,我使用setEllipsize(TruncateAt.End)并且一切正常。TextView但是当用户在这个地方点击这个显示所有文本的表格时,我想添加功能。我怎么能做到这一点。使用对话框或任何其他方式来显示所有文本的小字段。此文本从未超过 30 个字符。

编辑:

<?xml version="1.0" encoding="UTF-8"?>
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:weightSum="100"
        android:orientation="horizontal"
         >

        <ImageView
            android:id="@+id/homeIcon"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_marginLeft="5dp"
            android:layout_weight="10"
            android:src="@drawable/ic_launcher" />

        <TextView
            android:id="@+id/loginData"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="25"
            android:layout_marginLeft="5dp"
            android:text="TextView" />

        <ImageView
            android:id="@+id/splitLine"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:src="@drawable/descr_box_left" 
            android:layout_weight="1"
            android:layout_marginLeft="2dp"/>

        <TextView
            android:id="@+id/infoText"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_marginLeft="5dp"
            android:layout_weight="42"
            android:text="TextView" 
            android:singleLine="true"
            android:ellipsize="marquee"
            android:marqueeRepeatLimit="marquee_forever"
            android:scrollHorizontally="true"
            android:focusable="true" 
            android:focusableInTouchMode="true"/>

        <Button
            android:id="@+id/infoButton"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="15"
            android:layout_marginLeft="5dp"
            android:text="Button" />

        <ImageButton
            android:id="@+id/settingsButton"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_marginLeft="5dp"
            android:layout_weight="5"
            android:src="@drawable/icon_settings_active" />

    </LinearLayout>
4

1 回答 1

3

例如

1)您可以弹出自己的自定义对话框,其中包含整个文本,

2)您可以创建一个带有透明背景并包含文本的新活动,

3)您可以扩展您的栏并显示整个文本,

4)你可以在你的标题中实现runnable\scrollable字符串:Scrolling Textview in android

于 2013-01-30T09:20:21.523 回答