Линейный макет и пользовательский диалог - PullRequest
2 голосов
/ 29 апреля 2010

Кнопка не отображается в этом макете (код ниже), отображаются изображение и текстовое представление. Я попытался использовать относительное расположение, но это тоже не помогает. Я тестирую его на эмуляторе 1.5.

 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/layout_root"
          android:orientation="vertical"
          android:layout_width="fill_parent"
          android:layout_height="fill_parent"
          android:padding="10dp" >

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/neki"
          android:orientation="horizontal"
          android:layout_width="fill_parent"
          android:layout_height="fill_parent"

          >
<ImageView android:id="@+id/image"
           android:layout_width="wrap_content"
           android:layout_height="fill_parent"
           android:layout_marginRight="10dp"
           />
<TextView android:id="@+id/text"
          android:layout_width="wrap_content"
          android:layout_height="fill_parent"
          android:textColor="#FFF"
          android:text="Some text "
          />



 </LinearLayout>

 <Button android:id="@+id/gumbek"
    android:text="V redu"
    android:typeface="serif" android:textStyle="bold"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content" 
             /> 
  </LinearLayout>

1 Ответ

1 голос
/ 29 апреля 2010

Вид android:id="@+id/neki" выдвинул кнопку за пределы экрана из-за android:layout_height="fill_parent".
Вы можете изменить это на android:layout_height="wrap_content", чтобы увидеть кнопку, а затем прочитать о android:layout_weight, чтобы сделать это правильно.

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