mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-12 10:49:06 +01:00
This allows for swiping left/right to read other posts by using a ViewPager. This hasn't been done as a separate activity, but with fragments, so both can share the `BlogPersistentData` without needing to reload it. Closes #428
11 lines
424 B
XML
11 lines
424 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<org.briarproject.android.util.BriarRecyclerView
|
|
android:id="@+id/postList"
|
|
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"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
app:scrollToEnd="false"
|
|
tools:context=".android.blogs.BlogActivity"/>
|