bashgid/android/res/layout/fragment_semidetails_page.xml

25 lines
749 B
XML
Raw Normal View History

2014-10-24 04:31:52 +00:00
<?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"
2014-11-03 18:33:41 +00:00
android:layout_height="wrap_content"
android:visibility="gone" >
2014-10-24 04:31:52 +00:00
</ListView>
2014-11-03 18:33:41 +00:00
<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" />
2014-10-24 04:31:52 +00:00
</LinearLayout>