bashgid/android/res/layout/main_page_list_element.xml

53 lines
1.7 KiB
XML
Raw Normal View History

2014-11-05 05:00:15 +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="wrap_content"
android:layout_margin="4dp"
2014-11-12 03:34:24 +00:00
android:background="@color/bkg1"
2014-11-05 05:00:15 +00:00
android:orientation="vertical"
android:paddingBottom="4dp"
android:paddingTop="4dp"
android:showDividers="middle" >
<LinearLayout
android:layout_width="match_parent"
2014-11-12 03:34:24 +00:00
android:layout_height="wrap_content"
android:gravity="top" >
2014-11-05 05:00:15 +00:00
<TextView
2015-06-11 06:17:27 +00:00
android:id="@+id/dateTextView"
2014-11-05 05:00:15 +00:00
android:layout_width="wrap_content"
android:layout_height="wrap_content"
2014-11-12 03:34:24 +00:00
android:layout_gravity="center_vertical"
2014-11-05 05:00:15 +00:00
android:layout_weight="1"
2014-11-12 03:34:24 +00:00
android:paddingLeft="16dp"
android:textSize="16sp"
android:textStyle="bold" />
2014-11-05 05:00:15 +00:00
<Button
android:id="@+id/button"
2014-11-12 03:34:24 +00:00
android:layout_width="152dp"
android:layout_height="24dp"
android:layout_margin="8dp"
android:background="@drawable/see_more_button"
android:gravity="right|center_vertical"
android:paddingRight="28dp"
android:textSize="16sp" />
2014-11-05 05:00:15 +00:00
</LinearLayout>
2015-06-25 19:00:11 +00:00
<TextView
android:id="@+id/descriptionTextView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="TextView" />
2014-11-05 05:00:15 +00:00
<it.sephiroth.android.library.widget.HListView
android:id="@+id/hListView"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
2014-11-12 03:34:24 +00:00
2014-11-05 05:00:15 +00:00
</it.sephiroth.android.library.widget.HListView>
</LinearLayout>