0

総重量が10の横型レイアウトです。幅の異なるコンテンツを配置したいと思います。コンテンツを幅の次の比率のように見せたい:3:5:1:1つまり、列が30%、50%、10%、10%のテーブルのようにこれを整理するにはどうすればよいですか?今私が持っています:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_gravity="right"
    android:baselineAligned="true"
    android:clipChildren="false"
    android:orientation="horizontal"
    android:useLargestChild="true"
    android:weightSum="10" >

そして、このような異なる重みを持つTextViews:

<TextView
        android:id="@+id/textView1"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_gravity="top"
        android:layout_weight="3"
        android:padding="2dp"
        android:text="TextView 1"
        android:textAppearance="?android:attr/textAppearanceMedium" />

しかし、それはうまくいきませんでした。ビューは画面外にあります。match_parentをwrap_contentに変更すると、大きなテキストを配置していなくても問題ないように見え、TextViewが大きくなります。私はそれを望んでいません、私はテキストのその部分だけを示したいです、それは現在の30、または50、または等%で折り返されます。

4

2 に答える 2

2

に設定android:layout_width="match_parent"しますandroid:layout_width="0dp"

于 2012-05-12T13:07:21.377 に答える
0

コンテナ内の制限テキストで解決策を見つけました

android:maxEms="<Wieght of this TextView>"

うまくいくようです。しかし、それが正しいかどうかはわかりません。

于 2012-05-12T13:39:04.513 に答える