2017-01-03 00:30:27 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2017-12-09 21:34:04 +01:00
|
|
|
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2017-02-20 01:27:15 +01:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2017-04-27 14:47:56 +02:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2017-01-03 00:30:27 +01:00
|
|
|
android:id="@+id/activity_main"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2017-01-10 07:14:27 +01:00
|
|
|
tools:context="com.keylesspalace.tusky.MainActivity">
|
2017-01-03 00:30:27 +01:00
|
|
|
|
2017-06-20 02:50:40 +02:00
|
|
|
<RelativeLayout
|
2017-01-03 00:30:27 +01:00
|
|
|
android:layout_width="match_parent"
|
2018-09-16 18:54:12 +02:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:clipChildren="false">
|
2017-01-03 00:30:27 +01:00
|
|
|
|
2017-06-20 02:50:40 +02:00
|
|
|
<ImageButton
|
2017-12-09 21:34:04 +01:00
|
|
|
android:id="@+id/drawer_toggle"
|
|
|
|
style="?attr/image_button_style"
|
2017-06-20 02:50:40 +02:00
|
|
|
android:layout_width="?attr/actionBarSize"
|
|
|
|
android:layout_height="?attr/actionBarSize"
|
2017-12-09 21:34:04 +01:00
|
|
|
android:layout_alignParentStart="true"
|
|
|
|
android:layout_alignParentTop="true"
|
2017-06-20 02:50:40 +02:00
|
|
|
android:background="?android:colorBackground"
|
2017-12-09 21:34:04 +01:00
|
|
|
android:contentDescription="@string/action_open_drawer"
|
2018-09-16 18:54:12 +02:00
|
|
|
android:elevation="@dimen/actionbar_elevation"
|
2017-12-09 21:34:04 +01:00
|
|
|
app:layout_anchor="@id/pager"
|
|
|
|
app:layout_anchorGravity="top|left"
|
|
|
|
app:srcCompat="@drawable/ic_menu_24dp" />
|
2017-06-20 02:50:40 +02:00
|
|
|
|
|
|
|
<android.support.design.widget.TabLayout
|
|
|
|
android:id="@+id/tab_layout"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="?attr/actionBarSize"
|
2017-12-09 21:34:04 +01:00
|
|
|
android:layout_alignParentEnd="true"
|
|
|
|
android:layout_alignParentTop="true"
|
|
|
|
android:layout_toEndOf="@id/drawer_toggle"
|
2017-06-20 02:50:40 +02:00
|
|
|
android:background="?android:colorBackground"
|
2018-09-16 18:54:12 +02:00
|
|
|
android:elevation="@dimen/actionbar_elevation"
|
2017-06-20 02:50:40 +02:00
|
|
|
app:tabGravity="fill"
|
2017-12-09 21:34:04 +01:00
|
|
|
app:tabIndicatorHeight="3dp"
|
2017-06-20 02:50:40 +02:00
|
|
|
app:tabMaxWidth="0dp"
|
|
|
|
app:tabPaddingEnd="1dp"
|
|
|
|
app:tabPaddingStart="1dp"
|
|
|
|
app:tabPaddingTop="4dp"
|
2017-12-09 21:34:04 +01:00
|
|
|
app:tabTextAppearance="@style/TabLayoutTextStyle">
|
2017-01-10 07:14:27 +01:00
|
|
|
|
2017-06-20 02:50:40 +02:00
|
|
|
<android.support.design.widget.TabItem
|
2017-02-20 01:27:15 +01:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2017-06-20 02:50:40 +02:00
|
|
|
android:text="@string/title_home" />
|
2017-01-03 00:30:27 +01:00
|
|
|
|
2017-06-20 02:50:40 +02:00
|
|
|
<android.support.design.widget.TabItem
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/title_notifications" />
|
2017-04-03 03:45:04 +02:00
|
|
|
|
2017-06-20 02:50:40 +02:00
|
|
|
<android.support.design.widget.TabItem
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/title_public_local" />
|
2017-01-18 19:35:07 +01:00
|
|
|
|
2017-06-20 02:50:40 +02:00
|
|
|
<android.support.design.widget.TabItem
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/title_public_federated" />
|
2017-01-10 07:14:27 +01:00
|
|
|
|
2017-06-20 02:50:40 +02:00
|
|
|
</android.support.design.widget.TabLayout>
|
2017-04-09 10:13:18 +02:00
|
|
|
|
2017-06-20 02:50:40 +02:00
|
|
|
<android.support.v4.view.ViewPager
|
|
|
|
android:id="@+id/pager"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2017-12-09 21:34:04 +01:00
|
|
|
android:layout_alignParentBottom="true"
|
|
|
|
android:layout_below="@id/tab_layout" />
|
2017-01-10 07:14:27 +01:00
|
|
|
|
2017-06-20 02:50:40 +02:00
|
|
|
</RelativeLayout>
|
2017-03-10 04:35:08 +01:00
|
|
|
|
2017-03-07 01:38:22 +01:00
|
|
|
<android.support.design.widget.FloatingActionButton
|
|
|
|
android:id="@+id/floating_btn"
|
|
|
|
android:layout_width="wrap_content"
|
2017-04-27 14:47:56 +02:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_margin="16dp"
|
|
|
|
android:contentDescription="@string/action_compose"
|
2017-03-10 18:38:49 +01:00
|
|
|
app:layout_anchor="@id/pager"
|
|
|
|
app:layout_anchorGravity="bottom|end"
|
2017-04-27 14:47:56 +02:00
|
|
|
app:srcCompat="@drawable/ic_create_24dp" />
|
2017-04-09 10:13:18 +02:00
|
|
|
|
2018-09-16 18:54:12 +02:00
|
|
|
<include layout="@layout/item_status_bottom_sheet" />
|
2018-05-06 22:05:54 +02:00
|
|
|
|
2017-04-09 10:13:18 +02:00
|
|
|
</android.support.design.widget.CoordinatorLayout>
|