2017-01-03 10:30:27 +11:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2017-04-27 22:47:56 +10:00
|
|
|
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2017-02-20 11:27:15 +11:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2017-04-27 22:47:56 +10:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2017-01-03 10:30:27 +11:00
|
|
|
android:id="@+id/activity_main"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:paddingBottom="@dimen/activity_vertical_margin"
|
|
|
|
android:paddingLeft="@dimen/activity_horizontal_margin"
|
|
|
|
android:paddingRight="@dimen/activity_horizontal_margin"
|
|
|
|
android:paddingTop="@dimen/activity_vertical_margin"
|
2017-01-10 17:14:27 +11:00
|
|
|
tools:context="com.keylesspalace.tusky.MainActivity">
|
2017-01-03 10:30:27 +11:00
|
|
|
|
2017-01-10 17:14:27 +11:00
|
|
|
<LinearLayout
|
2017-01-03 10:30:27 +11:00
|
|
|
android:layout_width="match_parent"
|
2017-01-10 17:14:27 +11:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical">
|
2017-01-03 10:30:27 +11:00
|
|
|
|
2017-01-10 17:14:27 +11:00
|
|
|
<android.support.v4.view.ViewPager
|
|
|
|
android:id="@+id/pager"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
|
|
<android.support.design.widget.TabLayout
|
|
|
|
android:id="@+id/tab_layout"
|
2017-02-20 11:27:15 +11:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2017-03-10 14:35:08 +11:00
|
|
|
android:background="?android:colorBackground"
|
|
|
|
android:paddingTop="?attr/actionBarSize"
|
2017-04-27 22:47:56 +10:00
|
|
|
app:tabGravity="fill"
|
|
|
|
app:tabMaxWidth="0dp"
|
|
|
|
app:tabPaddingEnd="1dp"
|
2017-02-20 11:27:15 +11:00
|
|
|
app:tabPaddingStart="1dp"
|
2017-03-10 14:35:08 +11:00
|
|
|
app:tabPaddingTop="4dp"
|
2017-04-27 22:47:56 +10:00
|
|
|
app:tabTextAppearance="@style/TabLayoutTextStyle">
|
2017-01-03 10:30:27 +11:00
|
|
|
|
2017-01-10 17:14:27 +11:00
|
|
|
<android.support.design.widget.TabItem
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/title_home" />
|
2017-01-08 09:24:02 +11:00
|
|
|
|
2017-01-10 17:14:27 +11:00
|
|
|
<android.support.design.widget.TabItem
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/title_notifications" />
|
2017-01-08 09:24:02 +11:00
|
|
|
|
2017-01-10 17:14:27 +11:00
|
|
|
<android.support.design.widget.TabItem
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2017-04-03 11:45:04 +10:00
|
|
|
android:text="@string/title_public_local" />
|
|
|
|
|
|
|
|
<android.support.design.widget.TabItem
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/title_public_federated" />
|
2017-01-19 05:35:07 +11:00
|
|
|
|
2017-01-10 17:14:27 +11:00
|
|
|
</android.support.design.widget.TabLayout>
|
|
|
|
|
|
|
|
</android.support.v4.view.ViewPager>
|
2017-04-09 18:13:18 +10:00
|
|
|
|
2017-01-10 17:14:27 +11:00
|
|
|
</LinearLayout>
|
|
|
|
|
2017-03-10 14:35:08 +11:00
|
|
|
<com.arlib.floatingsearchview.FloatingSearchView
|
|
|
|
android:id="@+id/floating_search_view"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2017-04-27 22:47:56 +10:00
|
|
|
app:floatingSearch_close_search_on_keyboard_dismiss="true"
|
|
|
|
app:floatingSearch_leftActionMode="showHamburger"
|
2017-03-10 14:35:08 +11:00
|
|
|
app:floatingSearch_searchBarMarginLeft="6dp"
|
|
|
|
app:floatingSearch_searchBarMarginRight="6dp"
|
2017-04-27 22:47:56 +10:00
|
|
|
app:floatingSearch_searchBarMarginTop="4dp"
|
2017-03-10 14:35:08 +11:00
|
|
|
app:floatingSearch_searchHint="@string/search"
|
|
|
|
app:floatingSearch_showSearchKey="false"
|
2017-04-27 22:47:56 +10:00
|
|
|
app:floatingSearch_suggestionsListAnimDuration="250" />
|
2017-03-10 14:35:08 +11:00
|
|
|
|
2017-04-09 18:13:18 +10:00
|
|
|
<View
|
|
|
|
android:id="@+id/tab_bottom_shadow"
|
2017-01-10 17:14:27 +11:00
|
|
|
android:layout_width="match_parent"
|
2017-04-09 18:13:18 +10:00
|
|
|
android:layout_height="2dp"
|
|
|
|
android:background="@drawable/material_drawer_shadow_bottom"
|
2017-04-27 22:47:56 +10:00
|
|
|
android:visibility="visible"
|
|
|
|
app:layout_anchor="@id/tab_layout"
|
|
|
|
app:layout_anchorGravity="bottom" />
|
2017-04-09 18:13:18 +10:00
|
|
|
|
2017-03-07 11:38:22 +11:00
|
|
|
<android.support.design.widget.FloatingActionButton
|
|
|
|
android:id="@+id/floating_btn"
|
|
|
|
android:layout_width="wrap_content"
|
2017-04-27 22:47:56 +10:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_margin="16dp"
|
|
|
|
android:clickable="true"
|
|
|
|
android:contentDescription="@string/action_compose"
|
2017-03-11 04:38:49 +11:00
|
|
|
app:layout_anchor="@id/pager"
|
|
|
|
app:layout_anchorGravity="bottom|end"
|
2017-04-27 22:47:56 +10:00
|
|
|
app:srcCompat="@drawable/ic_create_24dp" />
|
2017-04-09 18:13:18 +10:00
|
|
|
|
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/overlay_fragment_container"
|
|
|
|
android:layout_width="match_parent"
|
2017-04-12 14:21:52 +10:00
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
|
|
</FrameLayout>
|
2017-04-09 18:13:18 +10:00
|
|
|
</android.support.design.widget.CoordinatorLayout>
|