mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2024-11-30 08:24:11 +01:00
f3dd96ed1d
rate. Right now seem to have a bug when going into the same widget twice it crashes teh second time.
31 lines
1.0 KiB
XML
31 lines
1.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/searchProgressWrapper"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="horizontal" >
|
|
|
|
<TextView
|
|
android:id="@+id/telemetry_stats_rx_rate_label"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/rxrate" />
|
|
|
|
<TextView
|
|
android:id="@+id/telemetry_stats_rx_rate"
|
|
android:layout_width="64dp"
|
|
android:layout_height="wrap_content"
|
|
android:text="" />
|
|
|
|
<TextView
|
|
android:id="@+id/telemetry_stats_tx_rate_label"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/txrate" />
|
|
|
|
<TextView
|
|
android:id="@+id/telemetry_stats_tx_rate"
|
|
android:layout_width="64dp"
|
|
android:layout_height="wrap_content"
|
|
android:text="" />
|
|
</LinearLayout> |