heartbeatapp/app/src/main/res/layout/layout_multidevice_searchre...

59 lines
2.0 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<!--
This software is subject to the license described in the License.txt file
included with this software distribution. You may not use this file except in compliance
with this license.
Copyright (c) Dynastream Innovations Inc. 2014
All rights reserved.
-->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
<TextView
android:id="@+id/textView_multiDeviceType"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginRight="10dp"
android:layout_marginTop="5dp"
android:gravity="right"
android:textAppearance="@android:style/TextAppearance.Medium" />
<TextView
android:id="@+id/textView_multiDeviceName"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textStyle="bold" />
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<TextView
android:id="@+id/label_RSSI"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:gravity="center_vertical"
android:text="@string/label_RSSI"
android:visibility="gone" />
<ProgressBar
android:id="@+id/progressBar_multiDeviceRSSI"
style="@android:style/Widget.ProgressBar.Horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_margin="5dp"
android:max="100"
android:visibility="gone" />
</LinearLayout>
<View
android:layout_width="fill_parent"
android:layout_height="1dp"
android:layout_marginTop="5dp"
android:background="@android:color/darker_gray" />
</LinearLayout>