Все ли виджеты в файле макета Android требуют layout_width и layout_height? - PullRequest
1 голос
/ 30 марта 2010

У меня есть ListView, состоящий из LinearLayouts. Внутри каждого находится ImageView, TextView и другой ImageView, расположенный горизонтально:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="horizontal"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    >
            <ImageButton
                android:id="@+id/thumbnail"
                android:background="@color/white"
                android:paddingTop="10dip"
                android:paddingLeft="8dip"
                android:paddingBottom="10dip"
                />
            <TextView
                android:id="@+id/title"
                android:background="@color/white"
                android:textColor="@color/bntext"
                android:paddingTop="10dip"
                android:paddingLeft="8dip"
                />
            <ImageButton
                android:src="@drawable/green_arrow_small"
                android:background="@color/white"
                />
</LinearLayout>

1 Ответ

2 голосов
/ 30 марта 2010

Да.Это должно быть сбой.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...