1
<TextView
        android:layout_marginLeft="12dp"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="New Text"
        android:id="@+id/tvVExample"
        android:textColor="#496933"
        android:singleLine="false"
        android:textStyle="bold"
        android:textSize="16sp"/>

たとえば、テキストは次のとおりです。

Having desirable or positive qualities especially those suitable for a thing specified

そして、それは私に示しています:

Having desirable or positive qualities especially those suita
specified

ラップできます。そして、それは2行を示していますが、いくつかの単語が隠されています

私が期待したのは:

Having desirable or positive qualities especially those 
suitable for a thing specified

4

2 に答える 2

3

最後に、GridLayoutの子であるTextViewの場合、解決策を見つけます。行全体を幅として使用し、セルの幅として使用しないため、幅を WRAP_CONTECT に設定することはできません。解決策は、幅を 0dp に設定し、layout_gravity を fill_horizo​​ntal に設定することです。また、グリッドレイアウトの幅は MATCH_PARENT にする必要があります。

<GridLayout xmlns:android="http://schemas.android.com/apk/res/android"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:columnCount="3"
            android:orientation="horizontal">
.
.
.

<TextView
    android:layout_marginLeft="12dp"
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_gravity="fill_horizontal"
    android:text="New Text"
    android:id="@+id/tvVExample"
    android:textColor="#496933"
    android:textStyle="bold"
    android:textSize="16sp"/>
.
.
.
</GridLayout>
于 2013-06-08T08:41:51.277 に答える
2

多くの場合、トリックはセットアップではなかったようですsingle="false"maxLines="100"、試してみることができるかもしれません:

<TextView
    android:layout_marginLeft="12dp"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="New Text"
    android:id="@+id/tvVExample"
    android:textColor="#496933"
    android:maxLines="100"
    android:textStyle="bold"
    android:textSize="16sp"/>

LinearLayout を使用していて上記が機能しない場合は、追加してみてくださいandroid:layout_weight="1"(ただし、layout_widthに設定する必要がありますmatch_parent)。

于 2013-06-08T03:35:15.550 に答える