1
0
Fork 0
mirror of https://github.com/syncthing/syncthing-android.git synced 2025-01-09 19:53:33 +00:00

Fix empty log view (fixes #470)

This commit is contained in:
Lode Hoste 2015-11-08 13:08:38 +01:00
parent 43bca98ca5
commit e7f347376c

View file

@ -2,7 +2,8 @@
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="match_parent"> android:layout_height="match_parent"
android:orientation="vertical">
<include layout="@layout/widget_toolbar" /> <include layout="@layout/widget_toolbar" />
@ -11,7 +12,8 @@
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="match_parent" android:layout_height="match_parent"
android:scrollbars="vertical" android:scrollbars="vertical"
android:fillViewport="true"> android:fillViewport="true"
android:visibility="visible">
<TextView <TextView
android:id="@+id/log" android:id="@+id/log"
@ -19,8 +21,8 @@
android:textSize="12sp" android:textSize="12sp"
android:textIsSelectable="true" android:textIsSelectable="true"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" /> android:layout_height="wrap_content"
android:visibility="visible" />
</ScrollView> </ScrollView>
</LinearLayout> </LinearLayout>