mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-13 19:29:06 +01:00
33 lines
946 B
XML
33 lines
946 B
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">
|
|
|
|
<FrameLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:descendantFocusability="beforeDescendants"
|
|
android:focusable="true"
|
|
android:focusableInTouchMode="true">
|
|
<!-- Above focusability attributes prevent automatic scroll-down,
|
|
because body text is selectable -->
|
|
|
|
<include
|
|
android:id="@+id/postLayout"
|
|
style="@style/BriarCard"
|
|
layout="@layout/list_item_blog_post"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"/>
|
|
|
|
<ProgressBar
|
|
android:id="@+id/progressBar"
|
|
style="?android:attr/progressBarStyleLarge"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"/>
|
|
|
|
</FrameLayout>
|
|
|
|
</ScrollView>
|