这是我的Activity XML的布局:
出于某种原因,我无法在屏幕底部看到该按钮。 这是代码:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/app_bg"
android:orientation="vertical" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/bg_transparent"
android:orientation="vertical"
android:minHeight="44dip"
android:minWidth="44dip" >
<TextView
android:id="@+id/lblNotesCount"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:textSize="18sp"
android:textStyle="bold"
android:textColor="@color/lblNotesCountColor" />
<TextView
android:id="@+id/lblTxtNotes"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:textSize="14sp"
android:textStyle="bold"
android:textColor="@color/lblNotesCountColor" />
</LinearLayout>
<TextView
android:id="@+id/txtActivityListByCategory_Header"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:ellipsize="end"
android:gravity="center_vertical|center_horizontal"
android:paddingLeft="2dp"
android:singleLine="true"
android:textStyle="bold"
android:textColor="@color/color_WHITE" />
<Button
android:id="@+id/btnAddNote"
style="?android:attr/buttonStyleSmall"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/btn_new_note_selector"
android:minHeight="44dip"
android:minWidth="44dip" />
</LinearLayout>
<TextView
android:id="@+id/emptyList"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingLeft="2dp"
android:text="@string/txtEmptyList"
android:textAppearance="?android:attr/textAppearanceMedium"
android:textColor="@color/emptyList" />
<ListView
android:id="@+id/lstNotesByCategory"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:drawSelectorOnTop="false" >
</ListView>
<Button
android:id="@+id/btnaBack"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/btnBack" />
我试图将底部的TextView和ListView放在一个单独的LinearLayout中,我试图给那个按钮一个layout_weight - 没有任何帮助,我仍然没有看到那个按钮,LinearLayout直到活动的底部。
这里有什么问题?为什么我看不到那个按钮?
编辑:写下整个XML代码
答案 0 :(得分:10)
制作ListView的android:layout_height="0dp"
和android:layout_weight="1"
像这样:
<ListView
android:id="@+id/lstNotesByCategory"
android:layout_width="wrap_content"
android:layout_height="0dp"
android:layout_weight="1"
android:drawSelectorOnTop="false" >
</ListView>
<Button
android:id="@+id/btnaBack"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/btnBack" />
这将使ListView垂直展开,直到Button的边框。
希望这有帮助
答案 1 :(得分:1)
修复ListView的高度
<ListView
android:id="@+id/lstNotesByCategory"
android:layout_width="wrap_content"
android:layout_height="height you want to give to list"
android:drawSelectorOnTop="false" >
</ListView>
或
<ListView
android:id="@+id/lstNotesByCategory"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:drawSelectorOnTop="false"
android:layout_above="@id/btnaBack">
</ListView>
尝试使用此代码,这将有助于您
答案 2 :(得分:1)
1&gt;使用带有高度的回收视图&#34;包装内容&#34; 对于这个链接是 http://developer.android.com/reference/android/support/v4/app/FragmentManager.html
2 - ;把按钮放在RecycleView下面。
第二种解决方案 将相对布局作为父布局 在相对布局上添加按钮和列表视图 Button应该是父Bottom true
列表视图应该在按钮上方
答案 3 :(得分:0)
试试这可以帮助您了解如何使用Layou_weight
<TextView
android:id="@+id/emptyList"
android:layout_width="wrap_content"
android:layout_height="0dp"
android:layout_weight="2"
android:paddingLeft="2dp"
android:text="txtEmptyListsss"
android:textAppearance="?android:attr/textAppearanceMedium"
android:textColor="#ffffff" />
<ListView
android:id="@+id/lstNotesByCategory"
android:layout_width="wrap_content"
android:layout_height="0dp"
android:layout_weight="6"
android:drawSelectorOnTop="false" >
</ListView>
<Button
android:id="@+id/btnaBack"
android:layout_height="0dp"
android:layout_weight="2"
android:layout_width="fill_parent"
android:text="btnBack" />
</LinearLayout>