summaryrefslogtreecommitdiff
path: root/org.fox.ttrss/src/main/res/layout/article_fragment.xml
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2015-06-10 19:24:24 +0300
committerAndrew Dolgov <[email protected]>2015-06-10 19:24:24 +0300
commitdffc737a93f90ec866cb9256e9768b08b13de93c (patch)
tree877be4a66846acd60bd6b04254624c4b0dddaf84 /org.fox.ttrss/src/main/res/layout/article_fragment.xml
parent415d79199dcb39cac7e8f7d1979dfcbfaaa40aa6 (diff)
refactor layouts naming scheme
Diffstat (limited to 'org.fox.ttrss/src/main/res/layout/article_fragment.xml')
-rwxr-xr-xorg.fox.ttrss/src/main/res/layout/article_fragment.xml157
1 files changed, 0 insertions, 157 deletions
diff --git a/org.fox.ttrss/src/main/res/layout/article_fragment.xml b/org.fox.ttrss/src/main/res/layout/article_fragment.xml
deleted file mode 100755
index 4a1709b4..00000000
--- a/org.fox.ttrss/src/main/res/layout/article_fragment.xml
+++ /dev/null
@@ -1,157 +0,0 @@
-<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:app="http://schemas.android.com/apk/res-auto"
- android:id="@+id/article_fragment"
- android:layout_width="fill_parent"
- android:layout_height="match_parent"
- android:background="?articleBackground">
-
-
- <FrameLayout
- android:id="@+id/article_fullscreen_video"
- android:visibility="invisible"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"></FrameLayout>
-
- <org.fox.ttrss.util.NoChildFocusScrollView
- android:id="@+id/article_scrollview"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:fillViewport="false" >
-
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical" >
-
- <!-- hack for hiding actionbar on small devices -->
- <FrameLayout
- android:id="@+id/article_heading_spacer"
- android:visibility="gone"
- android:layout_marginTop="@dimen/abc_action_bar_default_height_material"
- android:layout_width="match_parent"
- android:layout_height="match_parent"/>
-
- <LinearLayout
- android:padding="16dp"
- android:id="@+id/article_header"
- android:background="?articleHeader"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="vertical"
- android:paddingBottom="6dp">
-
- <LinearLayout
- android:orientation="horizontal"
- android:layout_width="match_parent"
- android:layout_height="match_parent">
-
- <TextView
- android:id="@+id/title"
- android:background="@drawable/ripple"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:text="My simple but hilariously and excessively long headline"
- android:textColor="?articleHeaderTextColor"
- android:textSize="18sp" />
-
- <ImageView
- android:id="@+id/share"
- android:background="@drawable/ripple"
- android:layout_width="wrap_content"
- android:layout_height="24dp"
- android:layout_weight="0"
- android:layout_marginLeft="8dp"
- android:clickable="true"
- android:src="?ic_share"
- android:layout_gravity="center_vertical|right" />
- </LinearLayout>
-
- <TextView
- android:id="@+id/comments"
- android:background="@drawable/ripple"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:fontFamily="sans-serif-light"
- android:paddingTop="8dp"
- android:text="24 comments"
- android:textColor="?headlineSecondaryTextColor"
- android:textSize="12sp" />
-
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:paddingTop="8dp">
-
- <TextView
- android:id="@+id/tags"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:ellipsize="middle"
- android:singleLine="true"
- android:fontFamily="sans-serif-light"
- android:text="Example Feed"
- android:textColor="?headlineSecondaryTextColor"
- android:textSize="12sp" />
-
- <TextView
- android:id="@+id/date"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_weight="0"
- android:gravity="right"
- android:layout_marginLeft="10dp"
- android:fontFamily="sans-serif-light"
- android:text="Jan 01, 12:00"
- android:textAppearance="?android:attr/textAppearanceSmall"
- android:textColor="?headlineSecondaryTextColor"
- android:textSize="12sp" />
-
- </LinearLayout>
-
- </LinearLayout>
-
- <View
- android:layout_gravity="top|center_horizontal"
- android:layout_width="match_parent"
- android:layout_height="1dp"
- android:background="?articleHeaderSeparator"/>
-
- <TextView
- android:id="@+id/note"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:background="?articleNoteBackground"
- android:textColor="?articleNoteTextColor"
- android:textSize="12sp"
- android:text="[Article note]"
- android:paddingLeft="16dp"
- android:paddingTop="8dp"
- android:paddingRight="16dp"
- android:paddingBottom="8dp" />
-
- <org.fox.ttrss.util.LessBrokenWebView
- android:layout_margin="16dp"
- android:id="@+id/article_content"
- android:layout_width="match_parent"
- android:layout_height="wrap_content" />
-
- </LinearLayout>
- </org.fox.ttrss.util.NoChildFocusScrollView>
-
- <com.shamanland.fab.FloatingActionButton
- android:id="@+id/article_fab"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="bottom|right"
- android:layout_marginRight="16dp"
- android:layout_marginBottom="20dp"
- app:floatingActionButtonColor="?colorAccent"
- android:src="@drawable/ic_action_web_site"
- />
-
-</FrameLayout> \ No newline at end of file