2010-05-18 11:23:25 -04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2012-03-11 20:58:24 -04:00
|
|
|
<!--
|
|
|
|
Copyright (C) 2010 Thialfihar <thi@thialfihar.org>
|
2010-05-18 11:23:25 -04:00
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
-->
|
|
|
|
|
2012-03-11 20:58:24 -04:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2010-05-18 11:23:25 -04:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
2012-03-11 20:58:24 -04:00
|
|
|
android:orientation="vertical" >
|
2010-06-05 17:47:16 -04:00
|
|
|
|
2012-03-11 20:58:24 -04:00
|
|
|
<include
|
|
|
|
android:id="@+id/layout_filter"
|
|
|
|
layout="@layout/filter_info" />
|
2010-05-18 11:23:25 -04:00
|
|
|
|
|
|
|
<ExpandableListView
|
|
|
|
android:id="@+id/list"
|
|
|
|
android:layout_width="fill_parent"
|
2010-06-05 17:47:16 -04:00
|
|
|
android:layout_height="fill_parent"
|
2012-03-11 20:58:24 -04:00
|
|
|
android:layout_weight="1"
|
|
|
|
android:isScrollContainer="true" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="90dp"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:background="@drawable/abs__ab_bottom_solid_light_holo"
|
|
|
|
android:paddingBottom="3dp"
|
|
|
|
android:paddingLeft="10dp"
|
|
|
|
android:paddingRight="10dp"
|
|
|
|
android:paddingTop="3dp"
|
|
|
|
android:text="@string/listInformation" />
|
2010-05-18 11:23:25 -04:00
|
|
|
|
2010-06-05 17:47:16 -04:00
|
|
|
</LinearLayout>
|