1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <?xml version="1.0" encoding="utf-8"?>
- <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:app="http://schemas.android.com/apk/res-auto"
- android:id="@+id/global_search_root"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent">
- <android.support.design.widget.AppBarLayout
- android:id="@+id/app_bar_layout"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:theme="@style/AppTheme.AppBarOverlay"
- app:elevation="0dp">
- <android.support.v7.widget.Toolbar
- android:id="@+id/toolbar"
- android:layout_width="match_parent"
- android:layout_height="?attr/actionBarSize"
- android:background="?attr/colorPrimary"
- app:titleTextAppearance="@style/Toolbar.TitleText"></android.support.v7.widget.Toolbar>
- </android.support.design.widget.AppBarLayout>
- <com.netease.nim.uikit.common.ui.listview.AutoRefreshListView
- android:id="@+id/searchResultList"
- style="@style/list_view"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:layout_below="@id/app_bar_layout"
- android:background="@color/white"
- android:cacheColorHint="#00000000"
- android:clipToPadding="false"
- android:divider="@null"
- android:fadingEdge="none"
- android:fastScrollEnabled="false"
- android:footerDividersEnabled="false"
- android:headerDividersEnabled="false"
- android:listSelector="@android:color/transparent"
- android:smoothScrollbar="true" />
- </RelativeLayout>
|