我对某些功能有疑问。我在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>