2014-02-07 81 views
3

這裏是XML:列表視圖不會match_parent

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
xmlns:tools="http://schemas.android.com/tools" 
android:layout_width="match_parent" 
android:layout_height="match_parent" 
android:background="#ffa500" 
android:orientation="horizontal" 
android:paddingBottom="@dimen/activity_vertical_margin" 
android:paddingLeft="@dimen/activity_horizontal_margin" 
android:paddingRight="@dimen/activity_horizontal_margin" 
android:paddingTop="@dimen/activity_vertical_margin" 
tools:context=".MainActivity" > 

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

    <Button 
     android:id="@+id/profile_button" 
     android:layout_width="100dp" 
     android:layout_height="100dp" 
     android:layout_marginTop="15dp" 
     android:background="@drawable/essai_profil" /> 

    <Button 
     android:id="@+id/portrait_button" 
     android:layout_width="100dp" 
     android:layout_height="100dp" 
     android:layout_marginTop="15dp" 
     android:background="@drawable/icon_portrait" /> 

    <Button 
     android:id="@+id/education_button" 
     android:layout_width="100dp" 
     android:layout_height="100dp" 
     android:layout_marginTop="15dp" 
     android:background="@drawable/education_icon" /> 

    <Button 
     android:id="@+id/skills_button" 
     android:layout_width="100dp" 
     android:layout_height="100dp" 
     android:layout_marginTop="15dp" 
     android:background="@drawable/skill_icon" /> 

    <Button 
     android:id="@+id/langue_button" 
     android:layout_width="100dp" 
     android:layout_height="100dp" 
     android:layout_marginTop="15dp" 
     android:background="@drawable/map_icon" /> 

    <Button 
     android:id="@+id/loisir_button" 
     android:layout_width="100dp" 
     android:layout_height="100dp" 
     android:layout_marginTop="15dp" 
     android:background="@drawable/dice" /> 

    <Button 
     android:id="@+id/contact_button" 
     android:layout_width="100dp" 
     android:layout_height="100dp" 
     android:layout_marginTop="15dp" 
     android:background="@drawable/contact_icon" /> 
</LinearLayout> 

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

    <Button 
     android:id="@+id/bubble_1" 
     android:layout_width="50dp" 
     android:layout_height="100dp" 
     android:layout_marginTop="15dp" 
     android:background="@drawable/bubble_start" /> 

    <Button 
     android:id="@+id/bubble_2" 
     android:layout_width="50dp" 
     android:layout_height="100dp" 
     android:layout_marginTop="15dp" 
     android:background="@drawable/bubble_start" 
     android:visibility="invisible" /> 

    <Button 
     android:id="@+id/bubble_3" 
     android:layout_width="50dp" 
     android:layout_height="100dp" 
     android:layout_marginTop="15dp" 
     android:background="@drawable/bubble_start" 
     android:visibility="invisible" /> 

    <Button 
     android:id="@+id/bubble_4" 
     android:layout_width="50dp" 
     android:layout_height="100dp" 
     android:layout_marginTop="15dp" 
     android:background="@drawable/bubble_start" 
     android:visibility="invisible" /> 

    <Button 
     android:id="@+id/bubble_5" 
     android:layout_width="50dp" 
     android:layout_height="100dp" 
     android:layout_marginTop="15dp" 
     android:background="@drawable/bubble_start" 
     android:visibility="invisible" /> 

    <Button 
     android:id="@+id/bubble_6" 
     android:layout_width="50dp" 
     android:layout_height="100dp" 
     android:layout_marginTop="15dp" 
     android:background="@drawable/bubble_start" 
     android:visibility="invisible" /> 

    <Button 
     android:id="@+id/bubble_7" 
     android:layout_width="50dp" 
     android:layout_height="100dp" 
     android:layout_marginTop="15dp" 
     android:background="@drawable/bubble_start" 
     android:visibility="invisible" /> 
</LinearLayout> 

<RelativeLayout 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:background="@drawable/bubble_patched" > 

    <TextView 
     android:id="@+id/title" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_alignParentTop="true" 
     android:text="@string/name" 
     android:textColor="#996300" 
     android:textSize="20sp" 
     android:textStyle="bold" /> 

    <ListView 
     android:id="@+id/lv_content" 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     android:layout_below="@+id/title" > 
    </ListView> 
</RelativeLayout> 

ListView控件只需要大約線性佈局剩餘高度的四分之一。

作爲一種體驗,我試圖單獨使用它(刪除textview和線性佈局),並按預期延伸。

可能是愚蠢的,但不能看着辦吧......

+1

使用相對佈局 – Raghunandan

+1

你的textview文本是什麼? – Giacomoni

+1

你有任何其他的外部佈局? –

回答

0

這完全是關於線性佈局「bubble_patched」的背景。不知何故,它在修補部分被切斷了......只是回到了一個沒有9個補丁的背景作爲解決方案。

謝謝大家

1

必須有你的根佈局一些填充或東西,否則它似乎好於我的佈局:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:tools="http://schemas.android.com/tools" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    tools:context=".DynamicListView" > 

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

     <TextView 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:layout_gravity="center_horizontal" 
      android:text="name" 
      android:textColor="#996300" 
      android:textSize="20sp" 
      android:textStyle="bold" /> 

     <ListView 
      android:id="@+id/lv_content" 
      android:layout_width="match_parent" 
      android:layout_height="match_parent" > 
     </ListView> 
    </LinearLayout> 

</RelativeLayout> 
1

你有很多Buttonandroid:layout_height="100dp",他們正在你的視野中的所有高度。 高度100dp =高度1400dp。而且你還有一個margin_top,可以獲得額外的高度。

+0

這並不妨礙,因爲這些按鈕是根線性佈局的前2列,列表視圖在第三個 –

+0

屏幕尺寸是多少? – Giacomoni

+0

800x1280是屏幕尺寸 –

2

listview中添加項目,默認情況下它會增加並滾動,並將其設置爲wrap_content

你確切的問題是什麼?問題並不清楚。

+0

我的問題是,listview贏得'一路走到它父母的底部......不管裏面有什麼。 –

+0

將方向垂直添加到父項線性佈局。 –

+0

你的意思是根線性佈局?我發現它不見了,我加了但仍然一樣。順便說一句,我把它設置爲水平 –