総重量が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、または等%で折り返されます。