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"
|
2014-11-12 03:34:24 +00:00
|
|
|
android:background="@color/bkg1"
|
2014-11-05 05:00:15 +00:00
|
|
|
android:orientation="vertical"
|
|
|
|
android:showDividers="middle" >
|
|
|
|
|
2015-07-02 22:36:06 +00:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/dateTextView"
|
2014-11-05 05:00:15 +00:00
|
|
|
android:layout_width="match_parent"
|
2014-11-12 03:34:24 +00:00
|
|
|
android:layout_height="wrap_content"
|
2015-07-02 22:36:06 +00:00
|
|
|
android:layout_marginLeft="@dimen/medium_margin"
|
|
|
|
android:textSize="@dimen/xlarge_text_size"
|
|
|
|
android:textStyle="bold" />
|
2014-11-05 05:00:15 +00:00
|
|
|
|
2015-07-02 22:36:06 +00:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/descriptionTextView"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_margin="@dimen/medium_margin"
|
|
|
|
android:textSize="@dimen/small_text_size" />
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="right"
|
|
|
|
android:gravity="right|center_vertical" >
|
2014-11-05 05:00:15 +00:00
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/button"
|
2015-07-02 08:36:51 +00:00
|
|
|
style="?android:attr/borderlessButtonStyle"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2015-07-03 00:17:32 +00:00
|
|
|
android:layout_gravity="right|center_vertical"
|
2015-07-02 22:36:06 +00:00
|
|
|
android:layout_marginBottom="@dimen/medium_margin"
|
|
|
|
android:layout_marginLeft="@dimen/medium_margin"
|
|
|
|
android:layout_marginTop="@dimen/medium_margin"
|
2015-07-02 08:36:51 +00:00
|
|
|
android:background="@drawable/transparent"
|
2014-11-12 03:34:24 +00:00
|
|
|
android:gravity="right|center_vertical"
|
2015-07-02 22:36:06 +00:00
|
|
|
android:textSize="@dimen/medium_text_size" />
|
2015-07-02 08:36:51 +00:00
|
|
|
|
|
|
|
<ImageButton
|
|
|
|
android:id="@+id/imageButton"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2015-07-03 00:17:32 +00:00
|
|
|
android:layout_gravity="right|center_vertical"
|
2015-07-02 22:36:06 +00:00
|
|
|
android:layout_margin="@dimen/medium_margin"
|
2015-07-02 08:36:51 +00:00
|
|
|
android:background="@drawable/transparent"
|
|
|
|
android:src="@drawable/see_more_small" />
|
2014-11-05 05:00:15 +00:00
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<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>
|