3

私は表示したいアイテムのリストを持っています。私は、各項目の表示のために次のコード
を書かれている:重量はレイアウトの幅を制限しません

<?xml version="1.0" encoding="utf-8"?> 
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:paddingEnd="12dp" 
    android:paddingStart="8dp" 
    android:paddingTop="4dp" 
    android:paddingBottom="4dp"> 
    <LinearLayout 
     android:orientation="horizontal"  
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:weightSum="6" 
     android:gravity="center" > 
     <CheckBox 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:padding="4dp"/> 
     <LinearLayout 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:orientation="vertical" 
      android:layout_weight="4"> 
      <TextView 
       android:id="[email protected]/receipt_item_name" 
       android:layout_width="wrap_content" 
       android:textAlignment="viewStart" 
       android:layout_height="wrap_content" 
       android:textStyle="bold" 
       android:text="item name" /> 
      <TextView 
       android:layout_width="wrap_content" 
       android:textAlignment="viewStart" 
       android:layout_height="wrap_content" 
       android:layout_below="@id/receipt_item_name" 
       android:text="selected by 2 others" 
       android:textSize="10sp"/> 
     </LinearLayout> 
     <TextView 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:layout_weight="1" 
      android:text="1" /> 
     <TextView 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:layout_weight="1" 
      android:textAlignment="textEnd" 
      android:text="10$" /> 
    </LinearLayout> 
</RelativeLayout> 

しかしreceipt_item_name内のテキストが長すぎる場合には、右シフトのTextView次
になります。どのように各ビューの重さが確実であることを確認できますか?
または同じ効果を得るために他に何ができますか?

looks terrible..

答えて

2

変更weightこのように0に持っているすべてのレイアウトのwidth

<LinearLayout 
     android:layout_width="0dp" 
     android:layout_height="wrap_content" 
     android:orientation="vertical" 
     android:layout_weight="4"> 

と同様にこれらの2のために:事がある

<TextView 
     android:layout_width="0dp" 
     android:layout_height="wrap_content" 
     android:layout_weight="1" 
     android:text="1" /> 
    <TextView 
     android:layout_width="0dp" 
     android:layout_height="wrap_content" 
     android:layout_weight="1" 
     android:textAlignment="textEnd" 
     android:text="10$" /> 

weightwidthの両方を設定し、widthが優先され、ign weight属性を含んでいます。

関連する問題