pulsebridge-app/src/main/res/layout/event_log.xml
2024-03-07 01:32:21 +05:30

29 lines
967 B
XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<fragment android:name="medic.gateway.alert.GatewayEventLogFragment"
android:id="@+id/lstGatewayEventLog"
android:layout_width="fill_parent"
android:layout_height="0dp"
android:layout_weight="1"
/>
<!-- TODO convert to toolbar -->
<LinearLayout
tools:ignore="ButtonStyle"
android:orientation="horizontal"
android:gravity="center"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<Button
android:id="@+id/btnRefreshLog"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#4CAF50"
android:text="@string/btnRefresh"
android:textColor="#FFFFFF" />
</LinearLayout>
</LinearLayout>