我遇到了一些功能问题。我在Action Bar 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>
答案 0 :(得分:3)
例如
1)您可以使用全文弹出自己的自定义对话框
2)您可以使用包含文本的透明BG创建新活动
3)你可以扩展你的栏并显示整个文字,
4)您可以在标题中实现runnable \ scrollable字符串:Scrolling Textview in android