article layout: do not use relative for header

This commit is contained in:
Andrew Dolgov 2012-05-02 09:42:41 +04:00
parent 835ec51811
commit 5ff5f84562

View File

@ -32,7 +32,7 @@
android:clickable="true" android:clickable="true"
android:paddingTop="4dip" /> android:paddingTop="4dip" />
<RelativeLayout <LinearLayout
android:id="@+id/article_header" android:id="@+id/article_header"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
@ -46,37 +46,35 @@
android:id="@+id/title" android:id="@+id/title"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_above="@+id/linearLayout3"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_weight="1" android:layout_weight="1"
android:text="There are many variations of passages of Lorem Ipsum available" android:text="There are many variations of passages of Lorem Ipsum available"
android:textSize="15sp" /> android:textSize="15sp" />
<TextView <LinearLayout
android:id="@+id/tags" android:layout_width="match_parent"
android:layout_width="wrap_content" android:layout_height="wrap_content" >
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/title"
android:layout_below="@+id/title"
android:layout_weight="1"
android:ellipsize="end"
android:singleLine="true"
android:text="{TAGS}"
android:textSize="10sp" />
<TextView <TextView
android:id="@+id/date" android:id="@+id/tags"
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_alignParentRight="true" android:layout_weight="1"
android:layout_below="@+id/title" android:ellipsize="end"
android:layout_weight="1" android:singleLine="true"
android:gravity="right" android:text="{TAGS}"
android:text="{DATE}" android:textSize="10sp" />
android:textAppearance="?android:attr/textAppearanceSmall"
android:textSize="10sp" /> <TextView
</RelativeLayout> android:id="@+id/date"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="right"
android:text="{DATE}"
android:textAppearance="?android:attr/textAppearanceSmall"
android:textSize="10sp" />
</LinearLayout>
</LinearLayout>
<ImageView <ImageView
android:layout_width="match_parent" android:layout_width="match_parent"