2020-04-02 10:43:40 +08:00
|
|
|
<?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:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
2020-04-24 15:14:59 +08:00
|
|
|
<com.google.android.material.appbar.AppBarLayout
|
2020-04-02 10:43:40 +08:00
|
|
|
android:id="@+id/app_bar_layout"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:theme="@style/AppTheme.AppBarOverlay"
|
|
|
|
app:elevation="0dp">
|
|
|
|
|
2020-04-24 15:14:59 +08:00
|
|
|
<androidx.appcompat.widget.Toolbar
|
2020-04-02 10:43:40 +08:00
|
|
|
android:id="@+id/toolbar"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="?attr/actionBarSize"
|
|
|
|
android:background="?attr/colorPrimary"
|
|
|
|
app:titleTextAppearance="@style/Toolbar.TitleText" />
|
2020-04-24 15:14:59 +08:00
|
|
|
</com.google.android.material.appbar.AppBarLayout>
|
2020-04-02 10:43:40 +08:00
|
|
|
|
|
|
|
<RelativeLayout
|
|
|
|
android:id="@+id/invalid_team_tip"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="40dip"
|
|
|
|
android:background="@drawable/nim_message_activity_top_tip"
|
|
|
|
android:visibility="gone">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/invalid_team_text"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_centerHorizontal="true"
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:text="@string/team_invalid_tip"
|
|
|
|
android:textColor="@color/color_yellow_796413"
|
|
|
|
android:textSize="14sp" />
|
|
|
|
|
|
|
|
</RelativeLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/message_fragment_container"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical" />
|
|
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|