You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

55 lines
2.1 KiB

3 years ago
<?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"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical">
<com.google.android.material.appbar.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">
<androidx.appcompat.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"
tools:targetApi="lollipop">
</androidx.appcompat.widget.Toolbar>
</com.google.android.material.appbar.AppBarLayout>
<ScrollView
style="@style/scroll_view"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@color/color_background"
android:fillViewport="true"
android:scrollbarStyle="outsideOverlay">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">
<com.netease.nim.uikit.business.team.ui.TeamInfoGridView
android:id="@+id/team_member_grid"
style="@style/grid_view"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@color/color_background"
android:numColumns="4"
android:paddingBottom="25dip"
android:paddingLeft="12dip"
android:paddingRight="12dip"
android:paddingTop="16dip"
android:verticalSpacing="16dip" />
</LinearLayout>
</ScrollView>
</LinearLayout>