FastSearchListView [具有搜索功能的自定义ListView]正在全屏显示视图

时间:2016-04-19 12:36:36

标签: android listview

我已在此link中实施了FastSearchListView条指令。我必须实施ListViewButton。但是这个ListView占据了整个视图,我的Button没有显示。我甚至尝试将两个小部件放在Linear Layout内并应用权重。什么都行不通。 这是我的xml

<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" android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    android:paddingBottom="@dimen/activity_vertical_margin"
    tools:context="in.nuventure.com.wedding.InviteActivityFragment">

     <FastSearchListView android:id="@+id/invite_listView"
        android:layout_width="match_parent"
        android:layout_below="@id/contact_invitefriends_textView"
        android:layout_height="match_parent"
        android:divider="@null"/>

        <TextView
            android:id="@+id/invite_send_button"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentBottom="true"
            android:layout_centerHorizontal="true"
            android:paddingTop="@dimen/buttons_padding_vertical"
            android:paddingBottom="@dimen/buttons_padding_vertical"
            android:paddingRight="@dimen/buttons_padding_horizontal"
            android:paddingLeft="@dimen/buttons_padding_horizontal"
            android:background="@drawable/button_green"
            android:textColor="@android:color/white"
            android:textSize="@dimen/sub_textSize"
            android:text="@string/invite_friends"/>

</RelativeLayout>

0 个答案:

没有答案