我一直在创建一个列表视图活动,因为我想在此列表活动中添加一个工具栏,我已经创建了一个工具栏,但它显示了这样的列表视图,我希望这个工具栏在listView上面
我不知道如何解决这个案子,如果有任何人可以解决这个问题我会很高兴 这是我的XML文件
答案 0 :(得分:1)
将以下行添加到ListView(告诉它在工具栏下面的布局)
a
答案 1 :(得分:1)
在XML
中尝试下面的布局属性<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_show_order"
android:layout_width="368dp"
android:layout_height="624dp"
tools:layout_editor_absoluteX="0dp"
tools:layout_editor_absoluteY="0dp"
tools:context="abtech.waiteriano.com.waitrer.ShowOrderActivity">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?attr/colorPrimary"
android:minHeight="?attr/actionBarSize" />
<ListView
android:layout_width="fill_parent"
android:id="@+id/showOrderListID"
android:layout_height="608dp"
tools:layout_editor_absoluteY="8dp"
tools:layout_editor_absoluteX="8dp"
android:layout_alignParentStart="true"
android:layout_below="@id/toolbar"/>
</RelativeLayout>