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

96 lines
3.4 KiB
XML
Raw Normal View History

2013-05-23 11:15:23 +00:00
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
2013-04-21 13:01:26 +00:00
android:id="@+id/article_fragment"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="?articleBackground"
android:orientation="vertical"
2013-04-21 13:01:26 +00:00
android:padding="5sp" >
<org.fox.ttrss.TitleWebView
android:id="@+id/content"
android:layout_width="match_parent"
android:layout_height="match_parent"
2013-05-23 11:15:23 +00:00
android:layout_weight="1">
<LinearLayout
android:id="@+id/article_header"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="0"
android:orientation="vertical"
android:paddingBottom="2dp" >
2013-04-21 13:01:26 +00:00
2013-05-23 11:15:23 +00:00
<TextView
android:id="@+id/title"
2013-04-21 13:01:26 +00:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
2013-05-23 11:15:23 +00:00
android:layout_weight="1"
android:paddingBottom="4dp"
android:text="My simple headline"
android:textColor="?linkColor"
android:textSize="18sp" />
2013-04-21 13:01:26 +00:00
2013-05-23 11:15:23 +00:00
<TextView
android:id="@+id/author"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:ellipsize="end"
android:gravity="right"
android:singleLine="true"
android:text="by Author"
android:textColor="?headlineSecondaryTextColor"
android:textSize="14sp" />
2013-04-21 13:01:26 +00:00
2013-05-23 11:15:23 +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"
android:textColor="?linkColor"
android:textSize="12sp" />
2013-04-21 13:01:26 +00:00
2013-05-23 11:15:23 +00:00
<ImageView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="4dp"
android:layout_marginTop="4dp"
android:layout_weight="0"
android:background="?ttrssHorizontalDivider"
android:paddingTop="2dip" />
2013-05-23 11:15:23 +00:00
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingBottom="4dp"
android:layout_weight="1" >
2013-05-23 11:15:23 +00:00
<TextView
android:id="@+id/tags"
android:layout_width="wrap_content"
2013-04-21 13:01:26 +00:00
android:layout_height="wrap_content"
2013-05-23 11:15:23 +00:00
android:layout_weight="0.5"
android:ellipsize="end"
android:singleLine="true"
android:text="Example Feed"
android:textColor="?headlineSecondaryTextColor"
android:textSize="12sp" />
2013-04-21 13:01:26 +00:00
2013-05-23 11:15:23 +00:00
<TextView
android:id="@+id/date"
android:layout_width="wrap_content"
2013-04-21 13:01:26 +00:00
android:layout_height="wrap_content"
2013-05-23 11:15:23 +00:00
android:layout_weight="0.5"
android:gravity="right"
android:text="Jan 01, 12:00"
android:textAppearance="?android:attr/textAppearanceSmall"
android:textColor="?headlineSecondaryTextColor"
android:textSize="12sp" />
2013-04-21 13:01:26 +00:00
</LinearLayout>
2013-05-23 11:15:23 +00:00
</LinearLayout>
</org.fox.ttrss.TitleWebView>
2013-04-21 13:01:26 +00:00
2013-05-23 11:15:23 +00:00
</LinearLayout>