43 lines
1.4 KiB
XML
43 lines
1.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<me.grishka.appkit.views.FragmentRootLinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:orientation="vertical"
|
|
android:id="@+id/appkit_loader_root"
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:background="?android:windowBackground">
|
|
|
|
<org.joinmastodon.android.ui.tabs.TabLayout
|
|
android:id="@+id/tabbar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="48dp"
|
|
app:tabGravity="start"
|
|
app:tabMinWidth="120dp"
|
|
app:tabIndicator="@drawable/mtrl_tabs_default_indicator"
|
|
app:tabIndicatorAnimationMode="elastic"
|
|
app:tabIndicatorColor="?android:textColorPrimary"
|
|
app:tabMode="scrollable"
|
|
android:background="@drawable/bg_discover_tabs"/>
|
|
|
|
<FrameLayout
|
|
android:id="@+id/appkit_loader_content"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<include layout="@layout/loading"
|
|
android:id="@+id/loading"/>
|
|
|
|
<ViewStub android:layout="?errorViewLayout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:id="@+id/error"
|
|
android:visibility="gone"/>
|
|
|
|
<View
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:id="@+id/content_stub"/>
|
|
|
|
</FrameLayout>
|
|
</me.grishka.appkit.views.FragmentRootLinearLayout> |