add favourite workflow list fragment layout xml
Project: http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/commit/021d7aac Tree: http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/tree/021d7aac Diff: http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/diff/021d7aac Branch: refs/heads/master Commit: 021d7aac56dbf6653323f30ad260c56e883a490a Parents: 77b4704 Author: Sagar <[email protected]> Authored: Sat Jul 9 22:51:23 2016 +0530 Committer: Sagar <[email protected]> Committed: Sat Jul 9 22:51:23 2016 +0530 ---------------------------------------------------------------------- .../layout/fragment_favourite_workflow_list.xml | 23 ++++++++++++++++++++ 1 file changed, 23 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/021d7aac/app/src/main/res/layout/fragment_favourite_workflow_list.xml ---------------------------------------------------------------------- diff --git a/app/src/main/res/layout/fragment_favourite_workflow_list.xml b/app/src/main/res/layout/fragment_favourite_workflow_list.xml new file mode 100644 index 0000000..e1a4c9a --- /dev/null +++ b/app/src/main/res/layout/fragment_favourite_workflow_list.xml @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="utf-8"?> +<RelativeLayout + xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="match_parent" + android:layout_height="match_parent" + android:background="@color/grey_background"> + + <android.support.v7.widget.RecyclerView + android:id="@+id/rv_workflows" + android:layout_width="match_parent" + android:layout_height="match_parent" + android:clipToPadding="false" + android:padding="@dimen/item_offset" + android:visibility="gone"/> + + <ProgressBar + android:id="@+id/progress_circular" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_centerHorizontal="true" + android:layout_centerVertical="true" + android:visibility="visible"/> +</RelativeLayout> \ No newline at end of file
