25 lines
749 B
XML
25 lines
749 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="@color/light_grey"
|
|
android:orientation="vertical" >
|
|
|
|
<ListView
|
|
android:id="@+id/listView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:visibility="gone" >
|
|
|
|
</ListView>
|
|
|
|
<it.sephiroth.android.library.widget.HListView
|
|
android:id="@+id/hListView1"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="200dip"
|
|
android:paddingTop="20dip"
|
|
android:paddingBottom="20dip"
|
|
android:background="#11000000" />
|
|
|
|
</LinearLayout>
|