Как отобразить TextView ниже другого в Android с файлами XML? - PullRequest
9 голосов
/ 07 ноября 2010

Я почти уверен, что параметр сработает, но я не могу найти тот, который мне нужен.

Я пытаюсь отобразить один TextView -file_type- ниже TextView file_title.

Какой параметр я должен добавить в блок TevxtView file_type, чтобы перейти в блок TextView file_title?

Что я делаю:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content">

  <ImageView android:id="@+id/file_type_logo"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:paddingLeft="25px"
      android:paddingTop="25px" />

  <TextView android:id="@+id/file_title"
     android:layout_width="fill_parent"
     android:layout_height="wrap_content"
     android:paddingLeft="30px"
     android:textSize="22sp"
     android:background="#FF0000"
     android:textColor="#FFFFFF" />

  <TextView android:id="@+id/file_type"
     android:layout_width="fill_parent"
     android:layout_height="wrap_content"
     android:paddingLeft="30px"
     android:paddingTop="10px"
     android:layout_gravity="bottom"
     android:textSize="22sp"
     android:background="#FF0000"
     android:textColor="#FFFFFF" />

</LinearLayout>

Спасибо

1 Ответ

27 голосов
/ 07 ноября 2010

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

<LinearLayout
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content">

  <ImageView .../>

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

    <TextView1..../>

    <TextView2..../>

 </LinearLayout> 
</LinearLayout>

Или вы можете просто передать параметр android:orientation="vertical" на верхний уровень LinearLayout. Также обратите внимание на определение RelativeLayout.

...