Yuito-app-android/app/src/main/res/layout/activity_main.xml

83 lines
3.4 KiB
XML
Raw Normal View History

2017-01-03 00:30:27 +01:00
<?xml version="1.0" encoding="utf-8"?>
2018-08-13 02:14:57 +02:00
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
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"
2018-08-13 02:14:57 +02:00
android:orientation="vertical"
tools:context="com.keylesspalace.tusky.MainActivity">
2017-01-03 00:30:27 +01:00
2018-08-13 02:14:57 +02:00
<androidx.coordinatorlayout.widget.CoordinatorLayout
2017-01-03 00:30:27 +01:00
android:layout_width="match_parent"
android:layout_height="match_parent"
2018-08-13 02:14:57 +02:00
android:layout_weight="1" >
2017-01-03 00:30:27 +01:00
2018-08-13 02:14:57 +02:00
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:clipChildren="false">
2018-08-13 02:14:57 +02:00
<ImageButton
android:id="@+id/drawer_toggle"
android:layout_width="?attr/actionBarSize"
android:layout_height="?attr/actionBarSize"
android:layout_alignParentStart="true"
android:layout_alignParentTop="true"
android:background="?android:colorBackground"
android:contentDescription="@string/action_open_drawer"
android:elevation="@dimen/actionbar_elevation"
app:srcCompat="@drawable/ic_menu_24dp" />
2018-08-13 02:14:57 +02:00
<com.google.android.material.tabs.TabLayout
android:id="@+id/tab_layout"
style="@style/TuskyTabAppearance"
android:layout_width="0dp"
android:layout_height="?attr/actionBarSize"
android:layout_alignParentTop="true"
android:layout_alignParentEnd="true"
android:layout_toEndOf="@id/drawer_toggle"
android:background="?android:colorBackground"
android:focusable="true"
android:focusableInTouchMode="true"
android:elevation="@dimen/actionbar_elevation"
app:tabGravity="fill"
app:tabIconTint="@color/tab_icon_color"
app:tabMaxWidth="0dp"
app:tabMode="fixed"
app:tabPaddingEnd="1dp"
app:tabPaddingStart="1dp"
app:tabPaddingTop="4dp"
app:tabUnboundedRipple="false" />
<androidx.viewpager.widget.ViewPager
android:id="@+id/pager"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/tab_layout"
android:layout_alignParentBottom="true" />
</RelativeLayout>
<com.google.android.material.floatingactionbutton.FloatingActionButton
android:id="@+id/floating_btn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
2018-08-13 02:14:57 +02:00
android:layout_margin="16dp"
android:contentDescription="@string/action_compose"
app:layout_anchor="@id/pager"
app:layout_anchorGravity="bottom|end"
app:srcCompat="@drawable/ic_create_24dp" />
2018-08-13 02:14:57 +02:00
<include layout="@layout/item_status_bottom_sheet" />
2017-03-10 04:35:08 +01:00
2018-08-13 02:14:57 +02:00
</androidx.coordinatorlayout.widget.CoordinatorLayout>
2018-08-13 02:14:57 +02:00
<include layout="@layout/view_quick_toot"
android:id="@+id/quick_toot_container"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="0" />
2018-08-13 02:14:57 +02:00
</LinearLayout>