123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:app="http://schemas.android.com/apk/res-auto"
- android:id="@+id/messageActivityLayout"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@color/color_message_default_bg"
- android:orientation="vertical">
- <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">
- <com.sheishuo.app.common.views.BaseToolbar
- android:id="@+id/toolbar"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- style="@style/fullToolbarStyle"/>
- </android.support.design.widget.AppBarLayout>
- <FrameLayout
- android:id="@+id/message_activity_list_view_container"
- android:layout_width="match_parent"
- android:layout_height="0dip"
- android:layout_weight="1">
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical">
- <com.netease.nim.uikit.common.ui.listview.MessageListView
- android:id="@+id/messageListView"
- style="@style/list_view"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:cacheColorHint="@android:color/transparent"
- android:divider="@null"
- android:fadingEdge="none"
- android:focusable="false"
- android:listSelector="@android:color/transparent"
- android:scrollbars="vertical"/>
- </LinearLayout>
- </FrameLayout>
- </LinearLayout>
|