aprsdroid/res/layout/stationview.xml

61 wiersze
1.7 KiB
XML
Czysty Zwykły widok Historia

2011-02-05 13:54:32 +00:00
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:orientation="horizontal">
2011-09-29 18:29:31 +00:00
<org.aprsdroid.app.SymbolView
android:id="@+id/station_symbol"
android:layout_width="24dp"
android:layout_height="24dp"
android:layout_marginLeft="1dp"
android:layout_marginRight="3dp"
android:layout_marginTop="1dp"
android:layout_marginBottom="1dp"
/>
2011-02-05 13:54:32 +00:00
<TextView
android:id="@+id/station_call"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
2011-09-29 18:29:31 +00:00
android:layout_marginRight="3dp"
2011-02-05 13:54:32 +00:00
android:textColor="#b0b080"
2011-09-29 18:29:31 +00:00
android:textSize="23dp"
2011-02-05 13:54:32 +00:00
android:typeface="monospace"
/>
<TextView
android:id="@+id/station_distage"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
2011-09-29 18:29:31 +00:00
android:layout_marginRight="3dp"
2011-02-05 13:54:32 +00:00
android:layout_weight="1"
android:gravity="center"
2011-03-22 20:59:09 +00:00
android:textStyle="bold"
android:textColor="#d0d0b0"
2011-02-05 13:54:32 +00:00
android:textSize="13dp"
/>
<TextView
android:id="@+id/station_qrg"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginRight="5dp"
android:textColor="#b0b080"
2011-09-29 18:29:31 +00:00
android:textSize="23dp"
2011-02-05 13:54:32 +00:00
android:typeface="monospace"
/>
</LinearLayout>
<TextView
android:id="@+id/listmessage"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textColor="#8080b0"
android:textSize="17dp"
android:typeface="monospace"
2011-03-22 20:59:09 +00:00
android:focusable="false"
2011-02-05 13:54:32 +00:00
/>
</LinearLayout>