fedilab-Android-App/app/src/main/res/layout/activity_show_conversation.xml

55 lines
2.5 KiB
XML
Raw Normal View History

2017-05-05 16:36:04 +02:00
<?xml version="1.0" encoding="utf-8"?>
2019-06-11 19:38:26 +02:00
<androidx.drawerlayout.widget.DrawerLayout
xmlns:android="http://schemas.android.com/apk/res/android"
2017-05-05 16:36:04 +02:00
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/drawer_layout"
2017-05-05 16:36:04 +02:00
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
2017-05-05 16:36:04 +02:00
>
2019-06-11 19:38:26 +02:00
<androidx.coordinatorlayout.widget.CoordinatorLayout
2017-05-05 16:36:04 +02:00
android:layout_width="match_parent"
android:layout_height="match_parent"
2019-05-18 11:10:30 +02:00
tools:context="app.fedilab.android.activities.HashTagActivity">
2019-06-11 19:38:26 +02:00
<com.google.android.material.appbar.AppBarLayout
android:id="@+id/appBar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay"
>
2019-06-11 19:38:26 +02:00
<androidx.appcompat.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?attr/colorPrimary"
app:layout_scrollFlags="scroll|enterAlways"
app:popupTheme="?attr/popupOverlay"/>
2019-06-11 19:38:26 +02:00
</com.google.android.material.appbar.AppBarLayout>
2017-10-29 07:32:52 +01:00
<!-- Framelayout to display Fragments -->
2019-08-18 12:56:24 +02:00
<RelativeLayout
2017-10-29 07:32:52 +01:00
android:id="@+id/main_app_container"
android:paddingLeft="@dimen/fab_margin"
android:paddingRight="@dimen/fab_margin"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
2019-05-18 11:10:30 +02:00
tools:context="app.fedilab.android.activities.ShowConversationActivity"
2017-10-29 07:32:52 +01:00
>
2019-08-18 19:28:17 +02:00
<androidx.swiperefreshlayout.widget.SwipeRefreshLayout
2017-10-29 07:32:52 +01:00
android:layout_width="match_parent"
2019-08-18 19:28:17 +02:00
android:id="@+id/swipeContainer"
2017-10-29 07:32:52 +01:00
android:layout_height="match_parent">
2019-08-18 19:28:17 +02:00
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/lv_status"
2017-10-29 07:32:52 +01:00
android:layout_width="match_parent"
2019-08-18 19:28:17 +02:00
android:layout_height="wrap_content"
android:scrollbars="none"
android:divider="@null" />
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
2017-10-29 07:32:52 +01:00
</RelativeLayout>
2019-06-11 19:38:26 +02:00
</androidx.coordinatorlayout.widget.CoordinatorLayout>
2019-06-11 19:38:26 +02:00
</androidx.drawerlayout.widget.DrawerLayout>