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 2015/06/10 16:06:46 UTC

[24/64] [abbrv] incubator-taverna-mobile git commit: Implemented the wireframes for mobile flash Screen, mobile login and mobile Dashboard

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/c8764a09/app/src/main/res/layout/fragment_login.xml
----------------------------------------------------------------------
diff --git a/app/src/main/res/layout/fragment_login.xml b/app/src/main/res/layout/fragment_login.xml
index 6198aed..b188789 100644
--- a/app/src/main/res/layout/fragment_login.xml
+++ b/app/src/main/res/layout/fragment_login.xml
@@ -25,7 +25,116 @@ limitations under the License.
     android:paddingBottom="@dimen/activity_vertical_margin"
     tools:context=".LoginActivity$PlaceholderFragment">
 
-    <TextView android:text="@string/hello_world" android:layout_width="wrap_content"
-        android:layout_height="wrap_content" />
+    <ImageView
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:id="@+id/logo"
+        android:layout_alignParentTop="true"
+        android:layout_centerHorizontal="true"
+        android:src="@mipmap/ic_launcher"
+        android:elevation="5dp"
+        android:contentDescription="@string/brand" />
 
+    <TextView
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:text="@string/app_name"
+        android:id="@+id/textView3"
+        android:layout_below="@+id/logo"
+        android:layout_centerHorizontal="true"
+        android:layout_marginTop="42dp"
+        android:typeface="normal"
+        android:textSize="25sp" />
+
+    <LinearLayout
+        android:orientation="vertical"
+        android:layout_width="fill_parent"
+        android:layout_height="fill_parent"
+        android:layout_below="@+id/textView3"
+        android:layout_alignParentLeft="true"
+        android:layout_alignParentStart="true"
+        android:padding="20dp"
+        android:background="#fff"
+        android:id="@+id/loginlayout">
+
+        <TextView
+            android:layout_width="match_parent"
+            android:layout_height="45dp"
+            android:text="@string/Logininfo"
+            android:id="@+id/textView4"
+            android:textStyle="normal|bold|italic"
+            android:textSize="20sp"
+            android:layout_gravity="center"
+            android:layout_marginTop="20dp"
+            android:background="#E1E1E1"
+            android:textAlignment="center"
+            android:typeface="normal"
+            android:elevation="10dp"
+            android:ellipsize="middle" />
+
+        <TextView
+            android:layout_width="wrap_content"
+            android:layout_height="wrap_content"
+            android:textAppearance="?android:attr/textAppearanceMedium"
+            android:text="@string/loginusername"
+            android:id="@+id/textView5"
+            android:layout_marginTop="10dp" />
+
+        <EditText
+            android:layout_width="match_parent"
+            android:layout_height="wrap_content"
+            android:id="@+id/editTextUsername"
+            android:drawableStart="@android:drawable/sym_action_email"
+            android:drawableLeft="@android:drawable/sym_action_email"/>
+
+        <TextView
+            android:layout_width="wrap_content"
+            android:layout_height="wrap_content"
+            android:textAppearance="?android:attr/textAppearanceMedium"
+            android:text="@string/loginpassword"
+            android:id="@+id/textView6"
+            android:layout_marginTop="10dp" />
+
+        <EditText
+            android:layout_width="match_parent"
+            android:layout_height="wrap_content"
+            android:inputType="textPassword"
+            android:ems="10"
+            android:id="@+id/edittextPassword"
+            android:drawableStart="@android:drawable/ic_secure"
+            android:drawableLeft="@android:drawable/ic_secure"/>
+
+        <Button
+            android:layout_width="wrap_content"
+            android:layout_height="wrap_content"
+            android:text="@string/loginbutton"
+            android:id="@+id/loginbutton"
+            android:layout_gravity="center_horizontal"
+            android:background="#1F9FEA"
+            android:layout_marginTop="10dp"
+            android:drawableLeft="@android:drawable/ic_menu_set_as"
+            android:elevation="5dp" />
+
+        <LinearLayout
+            android:orientation="horizontal"
+            android:layout_width="match_parent"
+            android:layout_height="match_parent">
+
+            <TextView
+                android:layout_width="wrap_content"
+                android:layout_height="match_parent"
+                android:textAppearance="?android:attr/textAppearanceMedium"
+                android:text="@string/brand"
+                android:id="@+id/textView7"
+                android:paddingTop="20dp"
+                android:textSize="20dp" />
+
+            <ImageView
+                android:layout_width="match_parent"
+                android:layout_height="match_parent"
+                android:id="@+id/imageView3"
+                android:src="@mipmap/ic_poweredby" />
+        </LinearLayout>
+
+    </LinearLayout>
 </RelativeLayout>

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/c8764a09/app/src/main/res/layout/fragment_navigation_drawer.xml
----------------------------------------------------------------------
diff --git a/app/src/main/res/layout/fragment_navigation_drawer.xml b/app/src/main/res/layout/fragment_navigation_drawer.xml
new file mode 100644
index 0000000..98ef07c
--- /dev/null
+++ b/app/src/main/res/layout/fragment_navigation_drawer.xml
@@ -0,0 +1,43 @@
+<LinearLayout
+    xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:tools="http://schemas.android.com/tools"
+    android:layout_width="match_parent"
+    android:layout_height="match_parent"
+    android:orientation="vertical"
+    android:background="#ccc">
+
+    <LinearLayout
+        android:orientation="vertical"
+        android:layout_width="match_parent"
+        android:layout_height="wrap_content"
+        android:background="@drawable/sliding_header">
+
+        <ImageView
+            android:layout_width="wrap_content"
+            android:layout_height="match_parent"
+            android:id="@+id/imageView4"
+            android:layout_gravity="center_horizontal"
+            android:src="@mipmap/ic_user" />
+    </LinearLayout>
+
+    <ListView
+    android:id="@+id/navigation_drawer_listview"
+    android:layout_width="match_parent"
+    android:layout_height="wrap_content"
+    android:choiceMode="singleChoice"
+    android:divider="@android:color/holo_blue_light"
+    android:dividerHeight="2dp"
+    android:background="#cccc"
+    tools:context="org.apache.taverna.mobile.fragments.NavigationDrawerFragment"
+     />
+
+    <TextView
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:textAppearance="?android:attr/textAppearanceMedium"
+        android:text="@string/completebrand"
+        android:id="@+id/textView8"
+        android:hint="@string/completebrand"
+        android:layout_gravity="center_horizontal"
+        android:layout_marginTop="80dp" />
+</LinearLayout>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/c8764a09/app/src/main/res/layout/menu_item_layout.xml
----------------------------------------------------------------------
diff --git a/app/src/main/res/layout/menu_item_layout.xml b/app/src/main/res/layout/menu_item_layout.xml
new file mode 100644
index 0000000..d83c9db
--- /dev/null
+++ b/app/src/main/res/layout/menu_item_layout.xml
@@ -0,0 +1,25 @@
+<?xml version="1.0" encoding="utf-8"?>
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+    android:orientation="horizontal"
+    android:layout_width="match_parent"
+    android:layout_height="wrap_content"
+    >
+
+    <ImageView
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:id="@+id/menuIcon"
+        android:src="@drawable/abc_btn_radio_to_on_mtrl_015"
+        android:layout_margin="5dp"
+        android:layout_gravity="top|left"
+        android:accessibilityLiveRegion="polite"
+        android:contentDescription="@string/app_name" />
+
+    <TextView
+        android:layout_width="match_parent"
+        android:layout_height="match_parent"
+        android:textAppearance="?android:attr/textAppearanceLarge"
+        android:id="@+id/menuItemText"
+        android:hint="@string/action_example"
+        android:layout_margin="5dp" />
+</LinearLayout>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/c8764a09/app/src/main/res/menu/dashboard_main.xml
----------------------------------------------------------------------
diff --git a/app/src/main/res/menu/dashboard_main.xml b/app/src/main/res/menu/dashboard_main.xml
new file mode 100644
index 0000000..526a5fc
--- /dev/null
+++ b/app/src/main/res/menu/dashboard_main.xml
@@ -0,0 +1,11 @@
+<menu xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:app="http://schemas.android.com/apk/res-auto"
+    xmlns:tools="http://schemas.android.com/tools"
+    tools:context="org.apache.taverna.mobile.activities.DashboardMainActivity">
+
+    <item android:id="@+id/action_search"
+        android:title="@string/menu_search"
+        android:icon="@android:drawable/ic_menu_search"
+        app:showAsAction="always|withText"
+        app:actionViewClass="android.support.v7.widget.SearchView"/>
+</menu>

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/c8764a09/app/src/main/res/menu/global.xml
----------------------------------------------------------------------
diff --git a/app/src/main/res/menu/global.xml b/app/src/main/res/menu/global.xml
new file mode 100644
index 0000000..326a6a7
--- /dev/null
+++ b/app/src/main/res/menu/global.xml
@@ -0,0 +1,5 @@
+<menu xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:app="http://schemas.android.com/apk/res-auto">
+    <item android:id="@+id/action_settings" android:title="@string/action_settings"
+        android:orderInCategory="100" app:showAsAction="never" />
+</menu>

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/c8764a09/app/src/main/res/menu/menu_login.xml
----------------------------------------------------------------------
diff --git a/app/src/main/res/menu/menu_login.xml b/app/src/main/res/menu/menu_login.xml
deleted file mode 100644
index b2f57d7..0000000
--- a/app/src/main/res/menu/menu_login.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<!--
-Licensed to the Apache Software Foundation (ASF) under one or more
-contributor license agreements. See the NOTICE file distributed with
-this work for additional information regarding copyright ownership.
-The ASF licenses this file to You under the Apache License, Version 2.0
-(the "License"); you may not use this file except in compliance with
-the License. You may obtain a copy of the License at
-http://www.apache.org/licenses/LICENSE-2.0
-Unless required by applicable law or agreed to in writing, software
-distributed under the License is distributed on an "AS IS" BASIS,
-WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-See the License for the specific language governing permissions and
-limitations under the License.
--->
-<menu xmlns:android="http://schemas.android.com/apk/res/android"
-    xmlns:app="http://schemas.android.com/apk/res-auto"
-    xmlns:tools="http://schemas.android.com/tools" tools:context=".LoginActivity">
-    <item android:id="@+id/action_settings" android:title="@string/action_settings"
-        android:orderInCategory="100" app:showAsAction="never" />
-</menu>

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/c8764a09/app/src/main/res/mipmap-hdpi/ic_launcher.png
----------------------------------------------------------------------
diff --git a/app/src/main/res/mipmap-hdpi/ic_launcher.png b/app/src/main/res/mipmap-hdpi/ic_launcher.png
index cde69bc..812298d 100644
Binary files a/app/src/main/res/mipmap-hdpi/ic_launcher.png and b/app/src/main/res/mipmap-hdpi/ic_launcher.png differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/c8764a09/app/src/main/res/mipmap-hdpi/ic_poweredby.png
----------------------------------------------------------------------
diff --git a/app/src/main/res/mipmap-hdpi/ic_poweredby.png b/app/src/main/res/mipmap-hdpi/ic_poweredby.png
new file mode 100644
index 0000000..e29d509
Binary files /dev/null and b/app/src/main/res/mipmap-hdpi/ic_poweredby.png differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/c8764a09/app/src/main/res/mipmap-hdpi/ic_quit.png
----------------------------------------------------------------------
diff --git a/app/src/main/res/mipmap-hdpi/ic_quit.png b/app/src/main/res/mipmap-hdpi/ic_quit.png
new file mode 100644
index 0000000..eddc150
Binary files /dev/null and b/app/src/main/res/mipmap-hdpi/ic_quit.png differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/c8764a09/app/src/main/res/mipmap-hdpi/ic_usage.png
----------------------------------------------------------------------
diff --git a/app/src/main/res/mipmap-hdpi/ic_usage.png b/app/src/main/res/mipmap-hdpi/ic_usage.png
new file mode 100644
index 0000000..9d2b8cb
Binary files /dev/null and b/app/src/main/res/mipmap-hdpi/ic_usage.png differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/c8764a09/app/src/main/res/mipmap-hdpi/ic_user.png
----------------------------------------------------------------------
diff --git a/app/src/main/res/mipmap-hdpi/ic_user.png b/app/src/main/res/mipmap-hdpi/ic_user.png
new file mode 100644
index 0000000..27c6fef
Binary files /dev/null and b/app/src/main/res/mipmap-hdpi/ic_user.png differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/c8764a09/app/src/main/res/mipmap-mdpi/ic_launcher.png
----------------------------------------------------------------------
diff --git a/app/src/main/res/mipmap-mdpi/ic_launcher.png b/app/src/main/res/mipmap-mdpi/ic_launcher.png
index c133a0c..7ece5b2 100644
Binary files a/app/src/main/res/mipmap-mdpi/ic_launcher.png and b/app/src/main/res/mipmap-mdpi/ic_launcher.png differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/c8764a09/app/src/main/res/mipmap-mdpi/ic_poweredby.png
----------------------------------------------------------------------
diff --git a/app/src/main/res/mipmap-mdpi/ic_poweredby.png b/app/src/main/res/mipmap-mdpi/ic_poweredby.png
new file mode 100644
index 0000000..4a8492f
Binary files /dev/null and b/app/src/main/res/mipmap-mdpi/ic_poweredby.png differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/c8764a09/app/src/main/res/mipmap-mdpi/ic_quit.png
----------------------------------------------------------------------
diff --git a/app/src/main/res/mipmap-mdpi/ic_quit.png b/app/src/main/res/mipmap-mdpi/ic_quit.png
new file mode 100644
index 0000000..9f303f8
Binary files /dev/null and b/app/src/main/res/mipmap-mdpi/ic_quit.png differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/c8764a09/app/src/main/res/mipmap-mdpi/ic_usage.png
----------------------------------------------------------------------
diff --git a/app/src/main/res/mipmap-mdpi/ic_usage.png b/app/src/main/res/mipmap-mdpi/ic_usage.png
new file mode 100644
index 0000000..6bd761c
Binary files /dev/null and b/app/src/main/res/mipmap-mdpi/ic_usage.png differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/c8764a09/app/src/main/res/mipmap-mdpi/ic_user.png
----------------------------------------------------------------------
diff --git a/app/src/main/res/mipmap-mdpi/ic_user.png b/app/src/main/res/mipmap-mdpi/ic_user.png
new file mode 100644
index 0000000..ee6f09c
Binary files /dev/null and b/app/src/main/res/mipmap-mdpi/ic_user.png differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/c8764a09/app/src/main/res/mipmap-xhdpi/ic_launcher.png
----------------------------------------------------------------------
diff --git a/app/src/main/res/mipmap-xhdpi/ic_launcher.png b/app/src/main/res/mipmap-xhdpi/ic_launcher.png
index bfa42f0..30f8082 100644
Binary files a/app/src/main/res/mipmap-xhdpi/ic_launcher.png and b/app/src/main/res/mipmap-xhdpi/ic_launcher.png differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/c8764a09/app/src/main/res/mipmap-xhdpi/ic_poweredby.png
----------------------------------------------------------------------
diff --git a/app/src/main/res/mipmap-xhdpi/ic_poweredby.png b/app/src/main/res/mipmap-xhdpi/ic_poweredby.png
new file mode 100644
index 0000000..b2865f0
Binary files /dev/null and b/app/src/main/res/mipmap-xhdpi/ic_poweredby.png differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/c8764a09/app/src/main/res/mipmap-xhdpi/ic_quit.png
----------------------------------------------------------------------
diff --git a/app/src/main/res/mipmap-xhdpi/ic_quit.png b/app/src/main/res/mipmap-xhdpi/ic_quit.png
new file mode 100644
index 0000000..ffc1d54
Binary files /dev/null and b/app/src/main/res/mipmap-xhdpi/ic_quit.png differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/c8764a09/app/src/main/res/mipmap-xhdpi/ic_usage.png
----------------------------------------------------------------------
diff --git a/app/src/main/res/mipmap-xhdpi/ic_usage.png b/app/src/main/res/mipmap-xhdpi/ic_usage.png
new file mode 100644
index 0000000..8e11e28
Binary files /dev/null and b/app/src/main/res/mipmap-xhdpi/ic_usage.png differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/c8764a09/app/src/main/res/mipmap-xhdpi/ic_user.png
----------------------------------------------------------------------
diff --git a/app/src/main/res/mipmap-xhdpi/ic_user.png b/app/src/main/res/mipmap-xhdpi/ic_user.png
new file mode 100644
index 0000000..c80dd26
Binary files /dev/null and b/app/src/main/res/mipmap-xhdpi/ic_user.png differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/c8764a09/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
----------------------------------------------------------------------
diff --git a/app/src/main/res/mipmap-xxhdpi/ic_launcher.png b/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
index 324e72c..756bfda 100644
Binary files a/app/src/main/res/mipmap-xxhdpi/ic_launcher.png and b/app/src/main/res/mipmap-xxhdpi/ic_launcher.png differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/c8764a09/app/src/main/res/mipmap-xxhdpi/ic_poweredby.png
----------------------------------------------------------------------
diff --git a/app/src/main/res/mipmap-xxhdpi/ic_poweredby.png b/app/src/main/res/mipmap-xxhdpi/ic_poweredby.png
new file mode 100644
index 0000000..bf15911
Binary files /dev/null and b/app/src/main/res/mipmap-xxhdpi/ic_poweredby.png differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/c8764a09/app/src/main/res/mipmap-xxhdpi/ic_quit.png
----------------------------------------------------------------------
diff --git a/app/src/main/res/mipmap-xxhdpi/ic_quit.png b/app/src/main/res/mipmap-xxhdpi/ic_quit.png
new file mode 100644
index 0000000..5f70404
Binary files /dev/null and b/app/src/main/res/mipmap-xxhdpi/ic_quit.png differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/c8764a09/app/src/main/res/mipmap-xxhdpi/ic_usage.png
----------------------------------------------------------------------
diff --git a/app/src/main/res/mipmap-xxhdpi/ic_usage.png b/app/src/main/res/mipmap-xxhdpi/ic_usage.png
new file mode 100644
index 0000000..bc7b5af
Binary files /dev/null and b/app/src/main/res/mipmap-xxhdpi/ic_usage.png differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/c8764a09/app/src/main/res/mipmap-xxhdpi/ic_user.png
----------------------------------------------------------------------
diff --git a/app/src/main/res/mipmap-xxhdpi/ic_user.png b/app/src/main/res/mipmap-xxhdpi/ic_user.png
new file mode 100644
index 0000000..10f1ad7
Binary files /dev/null and b/app/src/main/res/mipmap-xxhdpi/ic_user.png differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/c8764a09/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
----------------------------------------------------------------------
diff --git a/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
new file mode 100644
index 0000000..e7e028d
Binary files /dev/null and b/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/c8764a09/app/src/main/res/mipmap-xxxhdpi/ic_poweredby.png
----------------------------------------------------------------------
diff --git a/app/src/main/res/mipmap-xxxhdpi/ic_poweredby.png b/app/src/main/res/mipmap-xxxhdpi/ic_poweredby.png
new file mode 100644
index 0000000..4054479
Binary files /dev/null and b/app/src/main/res/mipmap-xxxhdpi/ic_poweredby.png differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/c8764a09/app/src/main/res/mipmap-xxxhdpi/ic_quit.png
----------------------------------------------------------------------
diff --git a/app/src/main/res/mipmap-xxxhdpi/ic_quit.png b/app/src/main/res/mipmap-xxxhdpi/ic_quit.png
new file mode 100644
index 0000000..9f24c75
Binary files /dev/null and b/app/src/main/res/mipmap-xxxhdpi/ic_quit.png differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/c8764a09/app/src/main/res/mipmap-xxxhdpi/ic_usage.png
----------------------------------------------------------------------
diff --git a/app/src/main/res/mipmap-xxxhdpi/ic_usage.png b/app/src/main/res/mipmap-xxxhdpi/ic_usage.png
new file mode 100644
index 0000000..8cbb65d
Binary files /dev/null and b/app/src/main/res/mipmap-xxxhdpi/ic_usage.png differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/c8764a09/app/src/main/res/mipmap-xxxhdpi/ic_user.png
----------------------------------------------------------------------
diff --git a/app/src/main/res/mipmap-xxxhdpi/ic_user.png b/app/src/main/res/mipmap-xxxhdpi/ic_user.png
new file mode 100644
index 0000000..555e3f3
Binary files /dev/null and b/app/src/main/res/mipmap-xxxhdpi/ic_user.png differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/c8764a09/app/src/main/res/values-large/refs.xml
----------------------------------------------------------------------
diff --git a/app/src/main/res/values-large/refs.xml b/app/src/main/res/values-large/refs.xml
new file mode 100644
index 0000000..d6935a5
--- /dev/null
+++ b/app/src/main/res/values-large/refs.xml
@@ -0,0 +1,12 @@
+<resources>
+
+    <!--
+    Layout alias to replace the single-pane version of the layout with a
+    two-pane version on Large screens.
+
+    For more on layout aliases, see:
+    http://developer.android.com/training/multiscreen/screensizes.html#TaskUseAliasFilters
+    -->
+    <item name="fragment_item" type="layout">@layout/fragment_item_grid</item>
+
+</resources>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/c8764a09/app/src/main/res/values-large/strings.xml
----------------------------------------------------------------------
diff --git a/app/src/main/res/values-large/strings.xml b/app/src/main/res/values-large/strings.xml
new file mode 100644
index 0000000..a7f4605
--- /dev/null
+++ b/app/src/main/res/values-large/strings.xml
@@ -0,0 +1,4 @@
+<?xml version="1.0" encoding="utf-8"?>
+<resources>
+    <string name="completebrand">Powered By Apache Taverna</string>
+</resources>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/c8764a09/app/src/main/res/values-sw600dp/refs.xml
----------------------------------------------------------------------
diff --git a/app/src/main/res/values-sw600dp/refs.xml b/app/src/main/res/values-sw600dp/refs.xml
new file mode 100644
index 0000000..d6935a5
--- /dev/null
+++ b/app/src/main/res/values-sw600dp/refs.xml
@@ -0,0 +1,12 @@
+<resources>
+
+    <!--
+    Layout alias to replace the single-pane version of the layout with a
+    two-pane version on Large screens.
+
+    For more on layout aliases, see:
+    http://developer.android.com/training/multiscreen/screensizes.html#TaskUseAliasFilters
+    -->
+    <item name="fragment_item" type="layout">@layout/fragment_item_grid</item>
+
+</resources>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/c8764a09/app/src/main/res/values-sw600dp/strings.xml
----------------------------------------------------------------------
diff --git a/app/src/main/res/values-sw600dp/strings.xml b/app/src/main/res/values-sw600dp/strings.xml
new file mode 100644
index 0000000..a7f4605
--- /dev/null
+++ b/app/src/main/res/values-sw600dp/strings.xml
@@ -0,0 +1,4 @@
+<?xml version="1.0" encoding="utf-8"?>
+<resources>
+    <string name="completebrand">Powered By Apache Taverna</string>
+</resources>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/c8764a09/app/src/main/res/values-w820dp/strings.xml
----------------------------------------------------------------------
diff --git a/app/src/main/res/values-w820dp/strings.xml b/app/src/main/res/values-w820dp/strings.xml
new file mode 100644
index 0000000..a7f4605
--- /dev/null
+++ b/app/src/main/res/values-w820dp/strings.xml
@@ -0,0 +1,4 @@
+<?xml version="1.0" encoding="utf-8"?>
+<resources>
+    <string name="completebrand">Powered By Apache Taverna</string>
+</resources>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/c8764a09/app/src/main/res/values/dimens.xml
----------------------------------------------------------------------
diff --git a/app/src/main/res/values/dimens.xml b/app/src/main/res/values/dimens.xml
index a4842bd..4cd4fcc 100644
--- a/app/src/main/res/values/dimens.xml
+++ b/app/src/main/res/values/dimens.xml
@@ -16,4 +16,8 @@ limitations under the License.
     <!-- Default screen margins, per the Android Design guidelines. -->
     <dimen name="activity_horizontal_margin">16dp</dimen>
     <dimen name="activity_vertical_margin">16dp</dimen>
+
+    <!-- Per the design guidelines, navigation drawers should be between 240dp and 320dp:
+         https://developer.android.com/design/patterns/navigation-drawer.html -->
+    <dimen name="navigation_drawer_width">240dp</dimen>
 </resources>

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/c8764a09/app/src/main/res/values/refs.xml
----------------------------------------------------------------------
diff --git a/app/src/main/res/values/refs.xml b/app/src/main/res/values/refs.xml
new file mode 100644
index 0000000..4b596c9
--- /dev/null
+++ b/app/src/main/res/values/refs.xml
@@ -0,0 +1,12 @@
+<resources>
+
+    <!--
+    Layout alias to replace the single-pane version of the layout with a
+    two-pane version on Large screens.
+
+    For more on layout aliases, see:
+    http://developer.android.com/training/multiscreen/screensizes.html#TaskUseAliasFilters
+    -->
+    <item name="fragment_item" type="layout">@layout/fragment_item_list</item>
+
+</resources>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/c8764a09/app/src/main/res/values/strings.xml
----------------------------------------------------------------------
diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml
index a7e3bbb..3b7d15b 100644
--- a/app/src/main/res/values/strings.xml
+++ b/app/src/main/res/values/strings.xml
@@ -16,4 +16,36 @@ limitations under the License.
     <string name="app_name">TavernaMobile</string>
     <string name="hello_world">Hello world!</string>
     <string name="action_settings">Settings</string>
+    <string name="title_activity_flash_screen">Taverna Mobile</string>
+    <string name="brand">Powered By</string>
+    <string-array name="menus">
+        <item >Usage</item>
+        <item>Quit</item>
+    </string-array>
+    <array name="dr_menus">
+        <item >Usage</item>
+        <item>Quit</item>
+    </array>
+<!-- TODO: Remove or change this placeholder text -->
+    <string name="hello_blank_fragment">Hello blank fragment</string>
+    <string name="Logininfo">Login to your Account</string>
+    <string name="loginusername">Email or Username</string>
+    <string name="loginpassword">Password</string>
+    <string name="loginbutton">Login</string>
+    <string name="title_activity_dashboard_main">Dashboard</string>
+
+    <string name="title_explore">Workflows</string>
+    <string name="title_usage">Usage</string>
+    <string name="title_about">About </string>
+    <string name="title_exit">Quit</string>
+    <string name="title_openworkflow">Open Workflow</string>
+    <string name="menu_search">Search</string>
+
+    <string name="navigation_drawer_open">Open navigation drawer</string>
+    <string name="navigation_drawer_close">Close navigation drawer</string>
+
+    <string name="action_example">Example action</string>
+    <string name="completebrand">Powered By Apache Taverna</string>
+    <string name="search_hint"> Search titles and description</string>
+
 </resources>

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/c8764a09/app/src/main/res/xml/searchable.xml
----------------------------------------------------------------------
diff --git a/app/src/main/res/xml/searchable.xml b/app/src/main/res/xml/searchable.xml
new file mode 100644
index 0000000..a76cb69
--- /dev/null
+++ b/app/src/main/res/xml/searchable.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="utf-8"?>
+<searchable xmlns:android="http://schemas.android.com/apk/res/android"
+    android:hint="@string/search_hint"
+    android:autoUrlDetect="true"
+    android:label="@string/app_name"
+    >
+
+</searchable>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/c8764a09/build/intermediates/dex-cache/cache.xml
----------------------------------------------------------------------
diff --git a/build/intermediates/dex-cache/cache.xml b/build/intermediates/dex-cache/cache.xml
new file mode 100644
index 0000000..d343d81
--- /dev/null
+++ b/build/intermediates/dex-cache/cache.xml
@@ -0,0 +1,33 @@
+<?xml version="1.0" encoding="utf-8"?>
+<items version="2" >
+
+    <item
+        jar="/root/Desktop/AndroidLab/TavernaMobile2/app/build/intermediates/exploded-aar/com.android.support/support-v4/22.0.0/classes.jar"
+        jumboMode="false"
+        revision="21.1.2"
+        sha1="4e86306289ace4aa0cfec44a05ed2b410d36989d">
+        <dex dex="/root/Desktop/AndroidLab/TavernaMobile2/app/build/intermediates/pre-dexed/debug/classes-be9904e841d6b70d2ec429ffa7d3732bb544b8ab.jar" />
+    </item>
+    <item
+        jar="/root/Desktop/AndroidLab/TavernaMobile2/app/build/intermediates/exploded-aar/com.android.support/support-v4/22.0.0/libs/internal_impl-22.0.0.jar"
+        jumboMode="false"
+        revision="21.1.2"
+        sha1="b5b92f469d515a13d778900f6d50c03d12f35504">
+        <dex dex="/root/Desktop/AndroidLab/TavernaMobile2/app/build/intermediates/pre-dexed/debug/internal_impl-22.0.0-ab39a2263976cb0fd278360818acc6d173a8d8e0.jar" />
+    </item>
+    <item
+        jar="/root/Desktop/android-studio/sdk/extras/android/m2repository/com/android/support/support-annotations/22.0.0/support-annotations-22.0.0.jar"
+        jumboMode="false"
+        revision="21.1.2"
+        sha1="685d0b2c590447e85284ed84712cb363ba04eff8">
+        <dex dex="/root/Desktop/AndroidLab/TavernaMobile2/app/build/intermediates/pre-dexed/debug/support-annotations-22.0.0-2f3cb2807dead79ef0327bdd9269035b879fdd27.jar" />
+    </item>
+    <item
+        jar="/root/Desktop/AndroidLab/TavernaMobile2/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.0.0/classes.jar"
+        jumboMode="false"
+        revision="21.1.2"
+        sha1="d84409890828e07d344a3b9b1da545dba9897b51">
+        <dex dex="/root/Desktop/AndroidLab/TavernaMobile2/app/build/intermediates/pre-dexed/debug/classes-cb13d360204b697dbd760e7e80b4357b182d723b.jar" />
+    </item>
+
+</items>

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/c8764a09/build/intermediates/lint-cache/api-versions-6-20.bin
----------------------------------------------------------------------
diff --git a/build/intermediates/lint-cache/api-versions-6-20.bin b/build/intermediates/lint-cache/api-versions-6-20.bin
new file mode 100644
index 0000000..5d06d98
Binary files /dev/null and b/build/intermediates/lint-cache/api-versions-6-20.bin differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/c8764a09/build/intermediates/lint-cache/typos-de.txt-2.bin
----------------------------------------------------------------------
diff --git a/build/intermediates/lint-cache/typos-de.txt-2.bin b/build/intermediates/lint-cache/typos-de.txt-2.bin
new file mode 100644
index 0000000..547ecd8
Binary files /dev/null and b/build/intermediates/lint-cache/typos-de.txt-2.bin differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/c8764a09/build/intermediates/lint-cache/typos-en.txt-2.bin
----------------------------------------------------------------------
diff --git a/build/intermediates/lint-cache/typos-en.txt-2.bin b/build/intermediates/lint-cache/typos-en.txt-2.bin
new file mode 100644
index 0000000..9ae915a
Binary files /dev/null and b/build/intermediates/lint-cache/typos-en.txt-2.bin differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/c8764a09/build/intermediates/lint-cache/typos-es.txt-2.bin
----------------------------------------------------------------------
diff --git a/build/intermediates/lint-cache/typos-es.txt-2.bin b/build/intermediates/lint-cache/typos-es.txt-2.bin
new file mode 100644
index 0000000..270fd23
Binary files /dev/null and b/build/intermediates/lint-cache/typos-es.txt-2.bin differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/c8764a09/build/intermediates/lint-cache/typos-hu.txt-2.bin
----------------------------------------------------------------------
diff --git a/build/intermediates/lint-cache/typos-hu.txt-2.bin b/build/intermediates/lint-cache/typos-hu.txt-2.bin
new file mode 100644
index 0000000..cc38715
Binary files /dev/null and b/build/intermediates/lint-cache/typos-hu.txt-2.bin differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/c8764a09/build/intermediates/lint-cache/typos-it.txt-2.bin
----------------------------------------------------------------------
diff --git a/build/intermediates/lint-cache/typos-it.txt-2.bin b/build/intermediates/lint-cache/typos-it.txt-2.bin
new file mode 100644
index 0000000..b1ee15a
Binary files /dev/null and b/build/intermediates/lint-cache/typos-it.txt-2.bin differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/c8764a09/build/intermediates/lint-cache/typos-nb.txt-2.bin
----------------------------------------------------------------------
diff --git a/build/intermediates/lint-cache/typos-nb.txt-2.bin b/build/intermediates/lint-cache/typos-nb.txt-2.bin
new file mode 100644
index 0000000..8005561
Binary files /dev/null and b/build/intermediates/lint-cache/typos-nb.txt-2.bin differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/c8764a09/build/intermediates/lint-cache/typos-pt.txt-2.bin
----------------------------------------------------------------------
diff --git a/build/intermediates/lint-cache/typos-pt.txt-2.bin b/build/intermediates/lint-cache/typos-pt.txt-2.bin
new file mode 100644
index 0000000..c8a6b84
Binary files /dev/null and b/build/intermediates/lint-cache/typos-pt.txt-2.bin differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/c8764a09/build/intermediates/lint-cache/typos-tr.txt-2.bin
----------------------------------------------------------------------
diff --git a/build/intermediates/lint-cache/typos-tr.txt-2.bin b/build/intermediates/lint-cache/typos-tr.txt-2.bin
new file mode 100644
index 0000000..09e0871
Binary files /dev/null and b/build/intermediates/lint-cache/typos-tr.txt-2.bin differ

http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/c8764a09/build/intermediates/model_data.bin
----------------------------------------------------------------------
diff --git a/build/intermediates/model_data.bin b/build/intermediates/model_data.bin
index 7aef71d..d0ff39c 100644
Binary files a/build/intermediates/model_data.bin and b/build/intermediates/model_data.bin differ