aprsdroid/res/layout/listitem.xml

34 wiersze
957 B
XML

<?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:orientation="horizontal">
<TextView
android:id="@+id/listts"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginRight="5dp"
android:textColor="#808080"
android:textSize="16dp"
/>
<TextView
android:id="@+id/liststatus"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:textColor="#b0b0b0"
android:textSize="16dp"
/>
</LinearLayout>
<TextView
android:id="@+id/listmessage"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textColor="#30b030"
android:textSize="17dp"
android:typeface="monospace"
/>
</LinearLayout>