mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-12 10:49:06 +01:00
The new activity shows who you are sharing a forum with and who shares a forum with you. It is accessible from the overflow menu when in a forum. Closes #398
48 lines
1.5 KiB
XML
48 lines
1.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<ScrollView
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="@color/default_separator_inverted"
|
|
android:padding="@dimen/margin_medium"
|
|
android:text="@string/forum_shared_by"
|
|
android:textSize="@dimen/text_size_large"/>
|
|
|
|
<View style="@style/Divider.ForumList"/>
|
|
|
|
<org.briarproject.android.util.BriarRecyclerView
|
|
android:id="@+id/sharedByView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:paddingBottom="@dimen/margin_medium"
|
|
android:paddingTop="@dimen/margin_medium"/>
|
|
|
|
<TextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="@color/default_separator_inverted"
|
|
android:padding="@dimen/margin_medium"
|
|
android:text="@string/forum_shared_with"
|
|
android:textSize="@dimen/text_size_large"/>
|
|
|
|
<View style="@style/Divider.ForumList"/>
|
|
|
|
<org.briarproject.android.util.BriarRecyclerView
|
|
android:id="@+id/sharedWithView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:paddingBottom="@dimen/margin_medium"
|
|
android:paddingTop="@dimen/margin_medium"/>
|
|
|
|
</LinearLayout>
|
|
|
|
</ScrollView> |