2014-10-22 09:36:41 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<FrameLayout
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
|
|
<org.mariotaku.twidere.view.ExtendedViewPager
|
|
|
|
android:id="@+id/main_pager"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"/>
|
|
|
|
|
|
|
|
<include layout="@layout/empty_tab_hint"/>
|
|
|
|
|
2014-10-24 11:32:02 +02:00
|
|
|
<include layout="@layout/layout_home_actions_button"/>
|
2014-10-22 09:36:41 +02:00
|
|
|
|
2014-10-24 11:32:02 +02:00
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/tabs_container"
|
2014-10-22 09:36:41 +02:00
|
|
|
android:layout_width="match_parent"
|
2014-10-24 11:32:02 +02:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical">
|
2014-10-22 09:36:41 +02:00
|
|
|
|
2014-10-24 11:32:02 +02:00
|
|
|
<org.mariotaku.twidere.view.TabPagerIndicator
|
|
|
|
android:id="@+id/main_tabs"
|
|
|
|
style="?android:actionBarStyle"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="?android:actionBarSize"
|
|
|
|
android:layout_weight="0"
|
|
|
|
android:theme="?android:actionBarWidgetTheme"/>
|
|
|
|
|
|
|
|
<View
|
|
|
|
android:id="@+id/actionbar_overlay"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_weight="1"/>
|
|
|
|
|
|
|
|
</LinearLayout>
|
2014-10-22 09:36:41 +02:00
|
|
|
</FrameLayout>
|