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)テキストを含む透明なBGで新しいアクティビティを作成できます。

3)バーを展開して、テキスト全体を表示できます。

4)ヘッダーにrunnable \ scrollable文字列を実装できます:AndroidでTextviewをスクロールします

于 2013-01-30T09:20:21.523 に答える