kopia lustrzana https://github.com/ge0rg/aprsdroid
32 wiersze
918 B
XML
32 wiersze
918 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout
|
|
android:id="@+id/mainlayout"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:orientation="vertical"
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
>
|
|
<ListView
|
|
android:id="@android:id/list"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="100sp"
|
|
android:layout_weight="1"
|
|
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"
|
|
android:orientation="horizontal"
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
>
|
|
<include layout="@layout/buttons" />
|
|
</LinearLayout>
|
|
</LinearLayout>
|