这是XML:
<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>
列表视图仅占线性布局剩余高度的四分之一。
作为一种体验,我尝试单独使用它(删除textview和线性布局)并按预期延伸。
可能是愚蠢但无法弄明白......
答案 0 :(得分:2)
在listview
中添加项目,它会增加并默认滚动并设为wrap_content
。
你的确切问题是什么?问题不是那么清楚。
答案 1 :(得分: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>
答案 2 :(得分:1)
你有很多Button
与android:layout_height="100dp"
,他们在你的视野中占据了所有的高度。
14 Button
,身高100dp =身高1400dp。而且你还有一个margin_top,可以为你的视图增加额外的高度。
答案 3 :(得分:0)
所有关于线性布局“bubble_patched”的背景。不知何故,它在修补的部分被切断了...只是回到非9个背景作为解决方案。
谢谢大家