|
|
@@ -5,12 +5,15 @@
|
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="wrap_content"
|
|
|
android:background="@drawable/entry"
|
|
|
- android:padding="4dp">
|
|
|
+ android:padding="7dp"
|
|
|
+ android:layout_margin="8dp">
|
|
|
|
|
|
<TextView
|
|
|
android:layout_width="wrap_content"
|
|
|
android:layout_height="wrap_content"
|
|
|
- android:textAppearance="?android:attr/textAppearanceLarge"
|
|
|
+ android:textAppearance="?android:attr/textAppearanceMedium"
|
|
|
+ android:textColor="@color/entry_title"
|
|
|
+ android:textStyle="bold"
|
|
|
android:id="@+id/tv_row_blog_title" />
|
|
|
|
|
|
<TextView
|
|
|
@@ -26,31 +29,60 @@
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
<ImageView
|
|
|
- android:layout_width="fill_parent"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
android:layout_height="wrap_content"
|
|
|
android:id="@+id/iv_row_blog_image"
|
|
|
- android:maxWidth="130dp"
|
|
|
+ android:maxWidth="110dp"
|
|
|
android:contentDescription="@string/app_cdesc"
|
|
|
- android:layout_weight=".8"
|
|
|
+ android:minHeight="30dp"
|
|
|
+ android:minWidth="30dp"
|
|
|
+ android:layout_gravity="top|center_vertical"
|
|
|
+ android:background="@color/image_border"
|
|
|
+ android:padding="0.5dp"
|
|
|
android:layout_margin="3dp"
|
|
|
- android:layout_gravity="center_vertical"
|
|
|
- android:adjustViewBounds="true"/>
|
|
|
+ android:adjustViewBounds="true"
|
|
|
+ android:maxHeight="100dp"/>
|
|
|
|
|
|
- <TextView
|
|
|
- android:layout_width="fill_parent"
|
|
|
+ <LinearLayout
|
|
|
+ android:orientation="vertical"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
android:layout_height="wrap_content"
|
|
|
- android:id="@+id/tv_row_blog_text"
|
|
|
- android:layout_weight=".2"
|
|
|
- android:textAppearance="@android:style/TextAppearance.Medium"
|
|
|
- android:layout_margin="5dp" />
|
|
|
+ android:layout_gravity="top">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:id="@+id/tv_row_blog_text"
|
|
|
+ android:textAppearance="@android:style/TextAppearance.Medium"
|
|
|
+ android:layout_margin="5dp"
|
|
|
+ android:maxLines="4"
|
|
|
+ android:minHeight="30dp"/>
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:layout_height="40dp"
|
|
|
+ android:layout_marginTop="-40dp"
|
|
|
+ android:background="@drawable/gradient_v_white"
|
|
|
+ android:adjustViewBounds="true"/>
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
</LinearLayout>
|
|
|
|
|
|
- <LinearLayout
|
|
|
- android:orientation="vertical"
|
|
|
+ <ImageView
|
|
|
android:layout_width="match_parent"
|
|
|
- android:layout_height="2dp"
|
|
|
- android:background="@color/background_separator"
|
|
|
- android:layout_margin="10dp"/>
|
|
|
+ android:layout_height="0.5dp"
|
|
|
+ android:background="@color/image_border"
|
|
|
+ android:layout_margin="10dp"
|
|
|
+ android:layout_marginBottom="1dp"
|
|
|
+ android:layout_marginEnd="10dp"
|
|
|
+ android:layout_marginLeft="10dp"
|
|
|
+ android:layout_marginRight="10dp"
|
|
|
+ android:layout_marginStart="10dp"
|
|
|
+ android:layout_marginTop="3dp"
|
|
|
+ android:alpha="0.5"
|
|
|
+ android:adjustViewBounds="false"/>
|
|
|
|
|
|
<LinearLayout
|
|
|
android:orientation="horizontal"
|