2011-01-12 281 views
1

我不很瞭解的RelativeLayout,我不明白爲什麼這個XML(它代表了一個列表視圖的項目):相對佈局

<?xml version="1.0" encoding="UTF-8"?> 
<RelativeLayout 
    xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" 
    android:background="@drawable/sfumatura_riga" 
    > 

     <ImageView 
     android:id="@+id/featured_new_image" 
     android:layout_alignParentLeft="true"   
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:src="@drawable/no_foto" 

     /> 

     <LinearLayout 
     android:layout_toRightOf="@id/featured_new_image" 
     android:orientation="vertical" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_marginLeft="5dp" 
     > 

     <TextView 
      style="@style/featured_new_title" 
      android:id="@+id/featured_city" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:layout_marginBottom="5dp" 
      android:layout_marginTop="10dp" 


     /> 

     <TextView 
      style="@style/featured_name_country" 
      android:id="@+id/featured_country" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
     /> 




    </LinearLayout> 

    <TextView 
      style="@style/featured_date" 
      android:id="@+id/featured_date" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:layout_marginTop="10dp" 
      android:layout_marginRight="5dp" 
      android:layout_alignParentRight="true" 
     /> 



</RelativeLayout>       

我遇見這樣的結果,爲什麼太多的餘量該行的底部? alt text

+0

如果您試圖將相對佈局的layout_height更改爲wrap_content,它是否工作? – xandy 2011-01-12 10:38:25

+0

我沒有得到任何錯誤在這個XML。 – 2011-01-12 10:42:42

回答

2

我將主要看兩點:

  1. 在相對佈局,改變android:layout_height="fill_parent" to android:layout_height="wrap content"
  2. 我猜的背景只是一個梯度。但是,如果它是一個圖像,那麼它可能太大而整行被垂直拉伸。 !
0

感謝ATL所有我解決它與一個LinearLayout中更換RelativeLaoyout,我分享的解決方案,我希望能幫助別人誰具有相同的問題:

<ImageView 
    android:id="@+id/featured_new_image" 
    android:layout_width="120dp" 
    android:layout_height="fill_parent" 
    android:src="@drawable/no_foto" 

    /> 

<LinearLayout 
    android:orientation="vertical" 
    android:layout_weight="1" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:layout_marginLeft="5dp" 
    > 

    <TextView 
     style="@style/featured_new_title" 
     android:id="@+id/featured_city" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_marginBottom="5dp" 
     android:layout_marginTop="10dp" 


    /> 

    <TextView 
     style="@style/featured_name_country" 
     android:id="@+id/featured_country" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
    /> 




</LinearLayout> 

<TextView 
     style="@style/featured_date" 
     android:id="@+id/featured_date" 
     android:layout_marginTop="10dp" 
     android:layout_marginRight="5dp" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_gravity="right" 
    />