aprsdroid/res/layout/main.xml

34 wiersze
981 B
XML
Czysty Zwykły widok Historia

2009-12-31 16:50:01 +00:00
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
android:id="@+id/mainlayout"
2009-12-31 16:50:01 +00:00
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
xmlns:android="http://schemas.android.com/apk/res/android"
>
2011-04-16 21:39:42 +00:00
<ListView
android:id="@android:id/list"
android:layout_width="fill_parent"
android:layout_height="100sp"
android:layout_weight="1"
2011-05-28 22:03:32 +00:00
android:focusable="true"
android:focusableInTouchMode="true"
2011-04-16 21:39:42 +00:00
android:descendantFocusability="blocksDescendants"
/>
<TextView android:id="@+id/android:empty"
android:layout_width="fill_parent"
android:layout_height="100sp"
android:layout_weight="1"
android:textSize="18sp"
android:text="@string/empty_logview"/>
<LinearLayout
android:id="@+id/buttonlayout"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
2011-04-16 21:39:42 +00:00
android:orientation="horizontal"
xmlns:android="http://schemas.android.com/apk/res/android"
2010-01-06 23:06:29 +00:00
>
<include layout="@layout/buttons" />
</LinearLayout>
2009-12-31 16:50:01 +00:00
</LinearLayout>