Android - выровнять изображения в макете таблицы - PullRequest
0 голосов
/ 24 апреля 2011

Я хочу создать строку таблицы, в которой слева находятся 3 изображения, а справа - текстовое представление. Что-то, что обычно можно увидеть в игре (справа номер уровня, а слева - количество оставшихся жизней).

Я пробовал этот макет, но одно из изображений не выравнивается вправо: (Макет таблицы вложен в линейный макет)

 <TableLayout
  xmlns:android="http://schemas.android.com/apk/res/android"   
  android:layout_width="fill_parent" 
  android:layout_height="100dp"
  android:shrinkColumns="0"  
  android:stretchColumns="1">
<TableRow        
     android:layout_width="fill_parent"         
     android:layout_height="fill_parent">   
  <ImageView  
     android:id="@+id/wa1"
     android:layout_width="wrap_content"  
     android:layout_height="wrap_content" 
     android:layout_gravity="left"
     android:paddingRight="5px"
     android:paddingTop="6px"
     android:src="@drawable/v"/>
  <ImageView 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content"
      android:src="@drawable/v" 
      android:paddingTop="6px" 
      android:layout_gravity="left" 
      android:id="@+id/wa2" 
      android:paddingRight="5px">
  </ImageView>
  <ImageView 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content"
      android:src="@drawable/v" 
      android:paddingTop="6px" 
      android:layout_gravity="left" 
      android:id="@+id/wa3" 
      android:paddingRight="5px">
  </ImageView>
<TextView  
    android:id="@+id/question_status"
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content"
    android:gravity="right"
    android:textColor="#000000"
    android:textSize="26px"
    android:paddingLeft="125px"
    android:paddingRight="15px"
/>
</TableRow>

это соответствующая часть результата: enter image description here

10X много:)

Ответы [ 2 ]

3 голосов
/ 24 апреля 2011

Предполагая, что за </TableRow> должно следовать </TableLayout>, попробуйте удалить

android:shrinkColumns="0"  
android:stretchColumns="1"

из TableLayout и

android:paddingLeft="125px"

из TextView, к которому вместо этого следует добавить

android:layout_weight="1"
0 голосов
/ 24 апреля 2011

Использовать атрибут android: layout_weight в каждом столбце.

...