mirror of
https://github.com/ultrasonic/ultrasonic
synced 2025-02-03 10:37:29 +01:00
35 lines
968 B
XML
35 lines
968 B
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<LinearLayout xmlns:a="http://schemas.android.com/apk/res/android"
|
||
|
a:orientation="vertical"
|
||
|
a:layout_width="fill_parent"
|
||
|
a:layout_height="fill_parent">
|
||
|
|
||
|
<include
|
||
|
layout="@layout/action_bar"
|
||
|
a:layout_width="fill_parent"
|
||
|
a:layout_height="45dp"
|
||
|
/>
|
||
|
|
||
|
<View
|
||
|
a:layout_width="fill_parent"
|
||
|
a:layout_height="1px"
|
||
|
a:background="@color/dividerColor"/>
|
||
|
|
||
|
<ListView
|
||
|
a:id="@+id/main_list"
|
||
|
a:layout_width="fill_parent"
|
||
|
a:layout_height="0px"
|
||
|
a:layout_weight="1"/>
|
||
|
|
||
|
<View a:id="@+id/main_dummy"
|
||
|
a:layout_width="0px"
|
||
|
a:layout_height="0px"/>
|
||
|
|
||
|
<include
|
||
|
layout="@layout/button_bar"
|
||
|
a:layout_width="fill_parent"
|
||
|
a:layout_height="wrap_content"/>
|
||
|
|
||
|
</LinearLayout>
|
||
|
|