Separated data log manager into two screens (local and remote) to simplify interface

This commit is contained in:
Graham Jones
2022-02-09 07:36:20 +00:00
parent b53e646cb5
commit e7e8f79346
3 changed files with 74 additions and 16 deletions

View File

@@ -106,7 +106,7 @@
<ListView
android:id="@+id/eventLogListView"
android:layout_width="wrap_content"
android:layout_height="150dp"
android:layout_height="wrap_content"
android:layout_marginTop="10dp" />
</LinearLayout>
@@ -123,12 +123,6 @@
android:text="@string/remote_database"
android:textAppearance="?android:attr/textAppearanceLarge" />
<ListView
android:id="@+id/remoteEventsLv"
android:layout_width="wrap_content"
android:layout_height="150dp"
android:layout_marginTop="10dp" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
@@ -145,13 +139,21 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/authenticate" />
<Button
android:id="@+id/refresh_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/refreshBtn" />
</LinearLayout>
<Button
android:id="@+id/refresh_button"
<ListView
android:id="@+id/remoteEventsLv"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/refreshBtn" />
android:layout_marginTop="10dp" />
</LinearLayout>
</LinearLayout>