Github user sagar15795 commented on a diff in the pull request:
https://github.com/apache/incubator-taverna-mobile/pull/74#discussion_r184942983
--- Diff: app/src/main/res/layout/fragment_dashboard.xml ---
@@ -21,14 +21,35 @@
android:layout_height="match_parent"
android:background="@color/grey_background">
- <TextView
- android:id="@+id/tvNoWorkflow"
+ <RelativeLayout
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:layout_centerVertical="true"
+ android:layout_centerHorizontal="true"
+ android:visibility="gone"
+ android:id="@+id/tvNoWorkflow"
+ android:layout_marginBottom="@dimen/relative_layout_margin_bottom">
+
+ <ImageView
+ android:id="@+id/workflow_icon"
--- End diff --
use proper prefix.
---