tt-rss-android/res/layout/article_fragment.xml

78 lines
3.1 KiB
XML
Raw Normal View History

2012-09-21 13:04:14 +00:00
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
2011-11-28 09:45:19 +00:00
android:id="@+id/article_fragment"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
2013-01-02 14:38:03 +00:00
android:orientation="vertical"
android:padding="5sp" >
<org.fox.ttrss.TitleWebView
android:id="@+id/content"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1" >
2011-11-28 09:45:19 +00:00
2012-09-21 13:04:14 +00:00
<LinearLayout
android:id="@+id/article_header"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="0"
2012-12-30 23:51:06 +00:00
android:orientation="vertical" >
2012-09-21 13:04:14 +00:00
<TextView
android:id="@+id/title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="There are many variations of passages of Lorem Ipsum available"
2013-01-02 14:38:03 +00:00
android:textColor="?linkColor"
2012-09-21 13:04:14 +00:00
android:textSize="16sp" />
2011-11-28 09:45:19 +00:00
<TextView
android:id="@+id/comments"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="24 comments"
2013-01-02 14:38:03 +00:00
android:textColor="?linkColor"
android:textSize="13sp" />
2013-01-02 14:38:03 +00:00
2012-09-21 13:04:14 +00:00
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1" >
2011-11-28 09:45:19 +00:00
2012-09-21 13:04:14 +00:00
<TextView
android:id="@+id/tags"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="0.7"
android:ellipsize="end"
android:singleLine="true"
android:text="{TAGS}"
2013-01-02 14:38:03 +00:00
android:textColor="?headlineExcerptTextColor"
2012-09-21 13:04:14 +00:00
android:textSize="13sp" />
2013-01-02 14:38:03 +00:00
2012-09-21 13:04:14 +00:00
<TextView
android:id="@+id/date"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="0.2"
android:gravity="right"
android:text="{DATE}"
android:textAppearance="?android:attr/textAppearanceSmall"
2013-01-02 14:38:03 +00:00
android:textColor="?headlineExcerptTextColor"
2012-12-31 10:01:59 +00:00
android:textSize="13sp"
android:textStyle="italic" />
2012-09-21 13:04:14 +00:00
</LinearLayout>
2011-11-28 09:45:19 +00:00
2012-12-30 23:51:06 +00:00
<ImageView
android:layout_width="match_parent"
android:layout_height="wrap_content"
2013-01-02 14:38:03 +00:00
android:layout_marginBottom="5sp"
2012-12-30 23:51:06 +00:00
android:layout_weight="0"
android:background="?horizontalDivider"
android:paddingTop="2dip" />
</LinearLayout>
2013-01-02 14:38:03 +00:00
</org.fox.ttrss.TitleWebView>
2012-09-21 13:04:14 +00:00
</LinearLayout>