Skip to content
Snippets Groups Projects
Commit ed848caa authored by Taras's avatar Taras
Browse files

Create ui for invites screen

parent 5fac5461
No related branches found
No related tags found
No related merge requests found
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<com.google.android.material.appbar.MaterialToolbar
android:id="@+id/toolbar"
android:layout_width="0dp"
android:layout_height="?attr/actionBarSize"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:navigationIcon="?attr/homeAsUpIndicator"
app:titleCentered="true" />
<View
android:id="@+id/toolbarDivider"
android:layout_width="0dp"
android:layout_height="@dimen/divider_height"
android:background="@color/divider_color"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/toolbar" />
<org.futo.circles.core.view.LoadingRecyclerView
android:id="@+id/rvInvites"
android:layout_width="0dp"
android:layout_height="0dp"
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/toolbarDivider" />
</androidx.constraintlayout.widget.ConstraintLayout>
\ No newline at end of file
......@@ -145,4 +145,9 @@
<string name="create">Create</string>
<string name="show">Show</string>
<string name="gallery_invites_notification_format">Show %d Gallery invitations</string>
<string name="follow_requests">Follow requests</string>
<string name="group_invitations">Group invitations</string>
<string name="gallery_invitations">Gallery invitations</string>
<string name="circle_invitations">Circle invitations</string>
<string name="no_new_invitations_format">You don\'t have any %s</string>
</resources>
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment