You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@taverna.apache.org by ia...@apache.org on 2016/10/03 14:49:38 UTC

[28/50] [abbrv] incubator-taverna-mobile git commit: add workflow run view

add workflow run view


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/67035fa6
Tree: http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/tree/67035fa6
Diff: http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/diff/67035fa6

Branch: refs/heads/master
Commit: 67035fa695404194166dd5d5abb714c44cb57fb8
Parents: 8c1c5bf
Author: Sagar <ku...@gmail.com>
Authored: Mon Sep 26 14:37:33 2016 +0530
Committer: Sagar <ku...@gmail.com>
Committed: Mon Sep 26 14:37:33 2016 +0530

----------------------------------------------------------------------
 .../main/res/layout/activity_workflow_run.xml   | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/67035fa6/app/src/main/res/layout/activity_workflow_run.xml
----------------------------------------------------------------------
diff --git a/app/src/main/res/layout/activity_workflow_run.xml b/app/src/main/res/layout/activity_workflow_run.xml
new file mode 100644
index 0000000..77460be
--- /dev/null
+++ b/app/src/main/res/layout/activity_workflow_run.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="utf-8"?>
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+              android:layout_width="match_parent"
+              android:layout_height="match_parent"
+              android:orientation="vertical">
+
+    <com.anton46.stepsview.StepsView
+        android:id="@+id/stepsView"
+        android:layout_width="match_parent"
+        android:layout_height="wrap_content"
+        />
+
+    <org.apache.taverna.mobile.utils.NonSwipeableViewPager
+        android:id="@+id/viewpager"
+        android:layout_width="match_parent"
+        android:layout_height="0dp"
+        android:layout_weight="1"/>
+
+
+</LinearLayout>
\ No newline at end of file