72 lines
2.9 KiB
XML
72 lines
2.9 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<androidx.coordinatorlayout.widget.CoordinatorLayout 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:id="@+id/main_content"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:fitsSystemWindows="true"
|
||
|
android:background="@color/colorPrimary"
|
||
|
tools:context=".activities.OrgDetailActivity">
|
||
|
|
||
|
<com.google.android.material.appbar.AppBarLayout
|
||
|
android:id="@+id/appbar"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:paddingTop="@dimen/appbar_padding_top"
|
||
|
android:theme="@style/AppTheme.AppBarOverlay">
|
||
|
|
||
|
<androidx.appcompat.widget.Toolbar
|
||
|
android:id="@+id/toolbar"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="?attr/actionBarSize"
|
||
|
android:layout_weight="1"
|
||
|
android:background="?attr/colorPrimary"
|
||
|
app:layout_scrollFlags="enterAlways"
|
||
|
app:popupTheme="@style/AppTheme.PopupOverlay"
|
||
|
app:title="@string/app_name">
|
||
|
|
||
|
</androidx.appcompat.widget.Toolbar>
|
||
|
|
||
|
<com.google.android.material.tabs.TabLayout
|
||
|
android:id="@+id/tabs"
|
||
|
app:tabTextAppearance="@style/customTabLayout"
|
||
|
app:tabMode="scrollable"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content">
|
||
|
|
||
|
<com.google.android.material.tabs.TabItem
|
||
|
android:id="@+id/tabItemInfo"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:text="@string/tab_text_info" />
|
||
|
|
||
|
<com.google.android.material.tabs.TabItem
|
||
|
android:id="@+id/tabItem_repos"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:text="@string/orgTabRepos" />
|
||
|
|
||
|
<com.google.android.material.tabs.TabItem
|
||
|
android:id="@+id/tabItem_teams"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:text="@string/orgTabTeams" />
|
||
|
|
||
|
<com.google.android.material.tabs.TabItem
|
||
|
android:id="@+id/tabItem_members"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:text="@string/orgTabMembers" />
|
||
|
|
||
|
</com.google.android.material.tabs.TabLayout>
|
||
|
|
||
|
</com.google.android.material.appbar.AppBarLayout>
|
||
|
|
||
|
<androidx.viewpager.widget.ViewPager
|
||
|
android:id="@+id/container"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
|
||
|
|
||
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|