Render preview for all episodes layout with sample data.
This commit is contained in:
parent
c9c2e68d7b
commit
8600a3acdd
|
@ -0,0 +1,34 @@
|
|||
{
|
||||
"data": [
|
||||
{
|
||||
"title": "FLOSS Weekly 482: PyPI",
|
||||
"status_label": "NEW",
|
||||
"duration": "00:52:40",
|
||||
"published_at": "2. May"
|
||||
},
|
||||
{
|
||||
"title": "FLOSS Weekly 479: Pidgin",
|
||||
"status_label": " ",
|
||||
"duration": "01:08:08",
|
||||
"published_at": "11. Apr"
|
||||
},
|
||||
{
|
||||
"title": "Linux Outlaws 370 - Stay Free, Stay Open Source",
|
||||
"status_label": "NEW",
|
||||
"duration": "02:52:51",
|
||||
"published_at": "29. Dec 2014"
|
||||
},
|
||||
{
|
||||
"title": "Linux Outlaws 368 - The Dark Ages of Free Software",
|
||||
"status_label": " ",
|
||||
"duration": "02:26:54",
|
||||
"published_at": "14. Dec 2014"
|
||||
},
|
||||
{
|
||||
"title": "Linux Outlaws 365 - Last Stand",
|
||||
"status_label": " ",
|
||||
"duration": "00:39:59",
|
||||
"published_at": "3. Nov 2014"
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,2 @@
|
|||
@null
|
||||
@drawable/ic_list_grey600_24dp
|
|
@ -0,0 +1,3 @@
|
|||
@drawable/ic_play_arrow_grey600_36dp
|
||||
@drawable/ic_file_download_grey600_24dp
|
||||
@drawable/ic_cancel_grey600_24dp
|
|
@ -13,7 +13,9 @@
|
|||
android:scrollbarStyle="outsideOverlay"
|
||||
android:paddingTop="@dimen/list_vertical_padding"
|
||||
android:paddingBottom="@dimen/list_vertical_padding"
|
||||
android:clipToPadding="false"/>
|
||||
android:clipToPadding="false"
|
||||
tools:listitem="@layout/new_episodes_listitem"
|
||||
tools:itemCount="13"/>
|
||||
|
||||
<ProgressBar
|
||||
android:id="@+id/progLoading"
|
||||
|
@ -22,7 +24,7 @@
|
|||
android:layout_gravity="center"
|
||||
android:indeterminateOnly="true"
|
||||
android:visibility="gone"
|
||||
tools:visibility="visible"
|
||||
tools:visibility="gone"
|
||||
tools:layout_width="match_parent"
|
||||
tools:layout_height="64dp"
|
||||
tools:background="@android:color/holo_red_light"/>
|
||||
|
|
|
@ -13,7 +13,6 @@
|
|||
android:layout_height="wrap_content"
|
||||
android:background="?attr/selectableItemBackground"
|
||||
android:orientation="horizontal"
|
||||
tools:background="@android:color/darker_gray"
|
||||
android:gravity="center_vertical">
|
||||
|
||||
<RelativeLayout
|
||||
|
@ -42,8 +41,7 @@
|
|||
android:layout_alignRight="@id/txtvPlaceholder"
|
||||
android:layout_alignBottom="@id/txtvPlaceholder"
|
||||
android:contentDescription="@string/cover_label"
|
||||
tools:src="@drawable/ic_stat_antenna_default"
|
||||
tools:background="@android:color/holo_green_dark" />
|
||||
tools:src="@tools:sample/avatars" />
|
||||
|
||||
</RelativeLayout>
|
||||
|
||||
|
@ -54,8 +52,7 @@
|
|||
android:layout_marginLeft="@dimen/listitem_threeline_textleftpadding"
|
||||
android:layout_marginRight="@dimen/listitem_threeline_textrightpadding"
|
||||
android:layout_marginTop="@dimen/listitem_threeline_verticalpadding"
|
||||
android:layout_weight="1"
|
||||
tools:background="@android:color/white" >
|
||||
android:layout_weight="1">
|
||||
|
||||
|
||||
<TextView
|
||||
|
@ -65,7 +62,8 @@
|
|||
android:layout_height="wrap_content"
|
||||
android:layout_alignParentRight="true"
|
||||
android:layout_alignParentTop="true"
|
||||
android:layout_marginLeft="8dp"/>
|
||||
android:layout_marginLeft="8dp"
|
||||
tools:text="@sample/episodes.json/data/status_label"/>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/txtvTitle"
|
||||
|
@ -75,8 +73,7 @@
|
|||
android:layout_alignParentLeft="true"
|
||||
android:layout_alignParentTop="true"
|
||||
android:layout_toLeftOf="@id/statusUnread"
|
||||
tools:text="Episode title"
|
||||
tools:background="@android:color/holo_green_dark" />
|
||||
tools:text="@sample/episodes.json/data/title" />
|
||||
|
||||
<RelativeLayout
|
||||
android:id="@+id/bottom_bar"
|
||||
|
@ -85,8 +82,7 @@
|
|||
android:layout_below="@id/txtvTitle"
|
||||
android:layout_alignParentBottom="true"
|
||||
android:layout_alignParentLeft="true"
|
||||
android:layout_alignParentRight="true"
|
||||
tools:background="@android:color/holo_red_light" >
|
||||
android:layout_alignParentRight="true">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/txtvDuration"
|
||||
|
@ -94,8 +90,7 @@
|
|||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_alignParentLeft="true"
|
||||
tools:text="00:42:23"
|
||||
tools:background="@android:color/holo_blue_dark" />
|
||||
tools:text="@sample/episodes.json/data/duration" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/imgvInPlaylist"
|
||||
|
@ -105,8 +100,7 @@
|
|||
android:layout_marginLeft="8dp"
|
||||
android:contentDescription="@string/in_queue_label"
|
||||
android:src="?attr/stat_playlist"
|
||||
tools:src="@drawable/ic_list_grey600_24dp"
|
||||
tools:background="@android:color/black" />
|
||||
tools:src="@sample/inplaylist" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/txtvPublished"
|
||||
|
@ -116,8 +110,7 @@
|
|||
android:layout_alignParentTop="true"
|
||||
android:layout_toLeftOf="@id/imgvInPlaylist"
|
||||
android:ellipsize="end"
|
||||
tools:text="Jan 23"
|
||||
tools:background="@android:color/holo_green_dark" />
|
||||
tools:text="@sample/episodes.json/data/published_at" />
|
||||
|
||||
<ProgressBar
|
||||
android:id="@+id/pbar_progress"
|
||||
|
|
|
@ -9,5 +9,4 @@
|
|||
android:focusable="false"
|
||||
android:focusableInTouchMode="false"
|
||||
tools:ignore="ContentDescription"
|
||||
tools:src="@drawable/ic_play_arrow_grey600_36dp"
|
||||
tools:background="@android:color/holo_green_dark" />
|
||||
tools:src="@sample/secondaryaction" />
|
||||
|
|
Loading…
Reference in New Issue