[android] Apply updated Android XML layout formatting

This commit is contained in:
Torsten Grote
2019-10-21 10:30:29 -03:00
parent 044e1ebe73
commit dc1183b4cc
92 changed files with 719 additions and 815 deletions

View File

@@ -1,6 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
<LinearLayout 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"
@@ -8,7 +7,7 @@
android:orientation="vertical"
tools:context=".android.forum.ForumActivity">
<include layout="@layout/toolbar"/>
<include layout="@layout/toolbar" />
<FrameLayout
android:layout_width="match_parent"
@@ -21,21 +20,21 @@
android:layout_width="match_parent"
android:layout_height="match_parent"
app:emptyText="@string/no_forum_posts"
app:scrollToEnd="false"/>
app:scrollToEnd="false" />
<org.briarproject.briar.android.view.UnreadMessageButton
android:id="@+id/upButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="top|right|end"
app:direction="up"/>
app:direction="up" />
<org.briarproject.briar.android.view.UnreadMessageButton
android:id="@+id/downButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|right|end"
app:direction="down"/>
app:direction="down" />
</FrameLayout>
@@ -43,6 +42,6 @@
android:id="@+id/text_input_container"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:hint="@string/forum_new_message_hint"/>
app:hint="@string/forum_new_message_hint" />
</LinearLayout>