2014-09-28 6 views
0

Почему серый квадрат (transaction_amount) в следующем макете не расширяется до полного пространства, даже если макет: высота соответствует родительскому для него.TextView в относительной компоновке не расширяется, чтобы заполнить доступное пространство

enter image description here

<TextView android:id="@+id/transaction_amount" 
    android:layout_width="120dp" 
    android:layout_height="match_parent" 
    android:textAppearance="@android:style/TextAppearance.DeviceDefault.Large" 
    android:textColor="@android:color/primary_text_light" 
    android:background="@drawable/rounded_rectangle" 
    tools:text="100"/> 

<TextView 
    android:id="@+id/transaction_name" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:layout_toRightOf="@+id/transaction_amount" 
    android:textAppearance="@android:style/TextAppearance.DeviceDefault.Medium" 
    android:textColor="@android:color/secondary_text_light" 
    tools:text="Mast Kalandar Dinner"/> 

<TextView 
    android:id="@+id/shared_bw_label" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:layout_alignStart="@id/transaction_name" 
    android:layout_toRightOf="@+id/transaction_amount" 
    android:layout_below="@id/transaction_name" 
    android:textAppearance="@android:style/TextAppearance.DeviceDefault.Small" 
    android:textColor="@android:color/secondary_text_light_nodisable" 
    android:text="Shared Between"/> 

<TextView 
    android:id="@+id/shared_bw_csv" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:layout_toRightOf="@id/shared_bw_label" 
    android:layout_alignBaseline="@id/shared_bw_label" 
    android:textAppearance="@android:style/TextAppearance.DeviceDefault.Small" 
    android:textColor="@android:color/secondary_text_light_nodisable" 
    tools:text="Ashu, Amol"/> 

+0

Попробуйте изменить высоту match_parent – CENT1PEDE

+0

На ваш вопрос вы упомянули вы сделали «ширина» match_parent, но пустое пространство было вызвано высоты, то вы должны решить эту проблему путем изменения высоты. – CENT1PEDE

+0

жаль, что я хотел написать layout_height. В коде layout_height соответствует match_parent –

ответ

0

Попробуйте layout вместо этого, я уверен, что это поможет вам.

<LinearLayout 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:orientation="horizontal" > 

    <LinearLayout 
     android:layout_width="120dp" 
     android:layout_height="match_parent" 
     android:layout_marginRight="10dp" 
     android:background="#ffa" 
     android:orientation="vertical" > 

     <TextView 
      android:id="@+id/textView1" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:text="100" 
      android:textAppearance="?android:attr/textAppearanceSmall" /> 
    </LinearLayout> 

    <LinearLayout 
     android:layout_width="wrap_content" 
     android:layout_height="match_parent" 
     android:orientation="vertical" > 

     <TextView 
      android:id="@+id/textView2" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:text="Small Text" 
      android:textAppearance="?android:attr/textAppearanceSmall" /> 

     <TextView 
      android:id="@+id/textView3" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:text="Small Text" 
      android:textAppearance="?android:attr/textAppearanceSmall" /> 
    </LinearLayout> 
</LinearLayout> 
Смежные вопросы