2014-10-22 09:36:41 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2014-12-01 17:04:55 +01:00
|
|
|
<org.mariotaku.twidere.view.MainFrameLayout
|
2014-11-26 17:22:40 +01:00
|
|
|
android:id="@+id/home_content"
|
2014-10-22 09:36:41 +02:00
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2014-12-12 14:53:18 +01:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2014-10-22 09:36:41 +02:00
|
|
|
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
|
|
|
<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"
|
2014-12-12 14:53:18 +01:00
|
|
|
android:layout_weight="0"
|
|
|
|
app:tabExpandEnabled="true"
|
|
|
|
app:tabHorizontalPadding="@dimen/element_spacing_normal"/>
|
2014-10-24 11:32:02 +02:00
|
|
|
|
|
|
|
<View
|
|
|
|
android:id="@+id/actionbar_overlay"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_weight="1"/>
|
|
|
|
|
|
|
|
</LinearLayout>
|
2014-10-29 07:48:07 +01:00
|
|
|
|
|
|
|
<include layout="@layout/layout_home_actions_button"/>
|
2014-12-01 17:04:55 +01:00
|
|
|
</org.mariotaku.twidere.view.MainFrameLayout>
|